pub struct SourceDescription {
pub chunks: Vec<SdesChunk>,
}Expand description
RTCP Source Description (RFC 3550 §6.5, PT 202).
Fields§
§chunks: Vec<SdesChunk>The chunks (SC of them), one per described source.
Trait Implementations§
Source§impl Clone for SourceDescription
impl Clone for SourceDescription
Source§fn clone(&self) -> SourceDescription
fn clone(&self) -> SourceDescription
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SourceDescription
impl Debug for SourceDescription
impl Eq for SourceDescription
Source§impl<'a> Parse<'a> for SourceDescription
impl<'a> Parse<'a> for SourceDescription
Source§impl PartialEq for SourceDescription
impl PartialEq for SourceDescription
Source§impl Serialize for SourceDescription
Available on crate feature serde only.
impl Serialize for SourceDescription
Available on crate feature
serde only.Source§impl Serialize for SourceDescription
impl Serialize for SourceDescription
Source§type Error = Error
type Error = Error
The error type this implementer returns (usually the same as the
corresponding
Parse impl, but need not be).Source§fn serialized_len(&self) -> usize
fn serialized_len(&self) -> usize
Number of bytes
serialize_into will write.impl StructuralPartialEq for SourceDescription
Auto Trait Implementations§
impl Freeze for SourceDescription
impl RefUnwindSafe for SourceDescription
impl Send for SourceDescription
impl Sync for SourceDescription
impl Unpin for SourceDescription
impl UnsafeUnpin for SourceDescription
impl UnwindSafe for SourceDescription
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