pub struct UnknownReportBlock {
pub bytes: Bytes,
}Expand description
UnknownReportBlock is used to store bytes for any report block that has an unknown Report Block Type.
Fields§
§bytes: BytesThe block’s bytes, left unparsed.
Implementations§
Trait Implementations§
Source§impl Clone for UnknownReportBlock
impl Clone for UnknownReportBlock
Source§fn clone(&self) -> UnknownReportBlock
fn clone(&self) -> UnknownReportBlock
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 UnknownReportBlock
impl Debug for UnknownReportBlock
Source§impl Default for UnknownReportBlock
impl Default for UnknownReportBlock
Source§fn default() -> UnknownReportBlock
fn default() -> UnknownReportBlock
Returns the “default value” for a type. Read more
Source§impl Display for UnknownReportBlock
impl Display for UnknownReportBlock
impl Eq for UnknownReportBlock
Source§impl Marshal for UnknownReportBlock
impl Marshal for UnknownReportBlock
Source§impl MarshalSize for UnknownReportBlock
impl MarshalSize for UnknownReportBlock
Source§fn marshal_size(&self) -> usize
fn marshal_size(&self) -> usize
The number of bytes
Marshal::marshal_to will write for this value.Source§impl Packet for UnknownReportBlock
impl Packet for UnknownReportBlock
Source§fn destination_ssrc(&self) -> Vec<u32>
fn destination_ssrc(&self) -> Vec<u32>
destination_ssrc returns an array of ssrc values that this report block refers to.
Source§fn as_any(&self) -> &dyn Any
fn as_any(&self) -> &dyn Any
Downcasting hook, so a caller holding
Box<dyn Packet> can recover the concrete type.Source§impl PartialEq for UnknownReportBlock
impl PartialEq for UnknownReportBlock
impl StructuralPartialEq for UnknownReportBlock
Auto Trait Implementations§
impl !Freeze for UnknownReportBlock
impl RefUnwindSafe for UnknownReportBlock
impl Send for UnknownReportBlock
impl Sync for UnknownReportBlock
impl Unpin for UnknownReportBlock
impl UnsafeUnpin for UnknownReportBlock
impl UnwindSafe for UnknownReportBlock
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