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: u32
SSRC of sender
media_ssrc: u32
SSRC of the media source
sli_entries: Vec<SliEntry>
Trait Implementations§
source§impl Clone for SliceLossIndication
impl Clone for SliceLossIndication
source§fn clone(&self) -> SliceLossIndication
fn clone(&self) -> SliceLossIndication
Returns a copy of the value. Read more
1.0.0 · 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
source§impl Marshal for SliceLossIndication
impl Marshal for SliceLossIndication
source§impl MarshalSize for SliceLossIndication
impl MarshalSize for SliceLossIndication
fn marshal_size(&self) -> usize
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.
fn raw_size(&self) -> usize
fn as_any(&self) -> &(dyn Any + Send + Sync)
fn equal(&self, other: &(dyn Packet + Send + Sync)) -> bool
fn cloned(&self) -> Box<dyn Packet + Send + Sync>
source§impl PartialEq for SliceLossIndication
impl PartialEq for SliceLossIndication
source§fn eq(&self, other: &SliceLossIndication) -> bool
fn eq(&self, other: &SliceLossIndication) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Unmarshal for SliceLossIndication
impl Unmarshal for SliceLossIndication
impl Eq 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 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