Struct rtcp::transport_feedbacks::transport_layer_cc::RecvDelta
source · pub struct RecvDelta {
pub type_tcc_packet: SymbolTypeTcc,
pub delta: i64,
}
Expand description
RecvDelta are represented as multiples of 250us small delta is 1 byte: [0,63.75]ms = [0, 63750]us = [0, 255]*250us big delta is 2 bytes: [-8192.0, 8191.75]ms = [-8192000, 8191750]us = [-32768, 32767]*250us https://tools.ietf.org/html/draft-holmer-rmcat-transport-wide-cc-extensions-01#section-3.1.5
Fields§
§type_tcc_packet: SymbolTypeTcc
§delta: i64
us
Trait Implementations§
source§impl MarshalSize for RecvDelta
impl MarshalSize for RecvDelta
fn marshal_size(&self) -> usize
source§impl PartialEq for RecvDelta
impl PartialEq for RecvDelta
impl Eq for RecvDelta
impl StructuralPartialEq for RecvDelta
Auto Trait Implementations§
impl Freeze for RecvDelta
impl RefUnwindSafe for RecvDelta
impl Send for RecvDelta
impl Sync for RecvDelta
impl Unpin for RecvDelta
impl UnwindSafe for RecvDelta
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