pub struct Ssrc(u32);Expand description
Synchronization source identifier for a media stream (RFC 3550).
Every distinct stream of packets (e.g. one audio track, one camera layer) is assigned a random 32-bit SSRC. This allows multiple streams to be multiplexed over a single transport (e.g. one UDP port).
Tuple Fields§
§0: u32Implementations§
Trait Implementations§
Source§impl Ord for Ssrc
impl Ord for Ssrc
Source§impl PartialOrd for Ssrc
impl PartialOrd for Ssrc
impl Copy for Ssrc
impl Eq for Ssrc
impl StructuralPartialEq for Ssrc
Auto Trait Implementations§
impl Freeze for Ssrc
impl RefUnwindSafe for Ssrc
impl Send for Ssrc
impl Sync for Ssrc
impl Unpin for Ssrc
impl UnsafeUnpin for Ssrc
impl UnwindSafe for Ssrc
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