Skip to main content

MediaDatagramSource

Trait MediaDatagramSource 

Source
pub trait MediaDatagramSource:
    Stream<Item = SecBuffer>
    + Send
    + Sync
    + 'static { }
Expand description

Stream of inbound datagrams (one SecBuffer per wire message).

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<S: Stream<Item = SecBuffer> + Send + Sync + 'static> MediaDatagramSource for S