pub struct RapidResynchronizationRequest {
pub sender_ssrc: u32,
pub media_ssrc: u32,
}Expand description
The RapidResynchronizationRequest packet informs the encoder about the loss of an undefined amount of coded video data belonging to one or more pictures
Fields§
§sender_ssrc: u32SSRC of sender
media_ssrc: u32SSRC of the media source
Trait Implementations§
Source§impl Clone for RapidResynchronizationRequest
impl Clone for RapidResynchronizationRequest
Source§fn clone(&self) -> RapidResynchronizationRequest
fn clone(&self) -> RapidResynchronizationRequest
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 Default for RapidResynchronizationRequest
impl Default for RapidResynchronizationRequest
Source§fn default() -> RapidResynchronizationRequest
fn default() -> RapidResynchronizationRequest
Returns the “default value” for a type. Read more
impl Eq for RapidResynchronizationRequest
Source§impl MarshalSize for RapidResynchronizationRequest
impl MarshalSize for RapidResynchronizationRequest
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 RapidResynchronizationRequest
impl Packet for RapidResynchronizationRequest
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.impl StructuralPartialEq for RapidResynchronizationRequest
Auto Trait Implementations§
impl Freeze for RapidResynchronizationRequest
impl RefUnwindSafe for RapidResynchronizationRequest
impl Send for RapidResynchronizationRequest
impl Sync for RapidResynchronizationRequest
impl Unpin for RapidResynchronizationRequest
impl UnsafeUnpin for RapidResynchronizationRequest
impl UnwindSafe for RapidResynchronizationRequest
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