pub struct SdesChunk {
pub source: u32,
pub items: Vec<SdesItem>,
}Expand description
An SDES chunk: an SSRC/CSRC plus its list of items (RFC 3550 §6.5).
Fields§
§source: u32The SSRC or CSRC this chunk describes.
items: Vec<SdesItem>The chunk’s items (in wire order), before the type-0 terminator.
Trait Implementations§
impl Eq for SdesChunk
impl StructuralPartialEq for SdesChunk
Auto Trait Implementations§
impl Freeze for SdesChunk
impl RefUnwindSafe for SdesChunk
impl Send for SdesChunk
impl Sync for SdesChunk
impl Unpin for SdesChunk
impl UnsafeUnpin for SdesChunk
impl UnwindSafe for SdesChunk
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