pub struct SliceLossIndication {
pub sender_ssrc: u32,
pub media_ssrc: u32,
pub sli_entries: Vec<SliEntry>,
}Expand description
The SliceLossIndication packet informs the encoder about the loss of a picture slice
Fields§
§sender_ssrc: u32SSRC of sender
media_ssrc: u32SSRC of the media source
sli_entries: Vec<SliEntry>The lost slices being reported.
Trait Implementations§
Source§impl Clone for SliceLossIndication
impl Clone for SliceLossIndication
Source§fn clone(&self) -> SliceLossIndication
fn clone(&self) -> SliceLossIndication
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 SliceLossIndication
impl Debug for SliceLossIndication
Source§impl Default for SliceLossIndication
impl Default for SliceLossIndication
Source§fn default() -> SliceLossIndication
fn default() -> SliceLossIndication
Returns the “default value” for a type. Read more
Source§impl Display for SliceLossIndication
impl Display for SliceLossIndication
impl Eq for SliceLossIndication
Source§impl Marshal for SliceLossIndication
impl Marshal for SliceLossIndication
Source§impl MarshalSize for SliceLossIndication
impl MarshalSize for SliceLossIndication
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 SliceLossIndication
impl Packet for SliceLossIndication
Source§fn destination_ssrc(&self) -> Vec<u32>
fn destination_ssrc(&self) -> Vec<u32>
destination_ssrc returns an array of SSRC values that this packet 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 SliceLossIndication
impl PartialEq for SliceLossIndication
impl StructuralPartialEq for SliceLossIndication
Auto Trait Implementations§
impl Freeze for SliceLossIndication
impl RefUnwindSafe for SliceLossIndication
impl Send for SliceLossIndication
impl Sync for SliceLossIndication
impl Unpin for SliceLossIndication
impl UnsafeUnpin for SliceLossIndication
impl UnwindSafe for SliceLossIndication
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