pub enum SSRCMode {
Ignore,
Any,
Specific,
}Expand description
SSRC handling mode.
Variants§
Ignore
Ignore incoming SSRCs and treat all packets as belonging to a single SSRC.
This mode is useful when dealing with buggy peers that change SSRCs unexpectedly. The receiver reports will use the last seen SSRC.
Any
Accept packets with any SSRC.
Specific
Accept packets only from specific SSRCs.
Trait Implementations§
impl Copy for SSRCMode
impl Eq for SSRCMode
impl StructuralPartialEq for SSRCMode
Auto Trait Implementations§
impl Freeze for SSRCMode
impl RefUnwindSafe for SSRCMode
impl Send for SSRCMode
impl Sync for SSRCMode
impl Unpin for SSRCMode
impl UnwindSafe for SSRCMode
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.