pub struct NakPacket<'a> {
pub timestamp: u32,
pub dest_socket_id: u32,
pub raw_loss_list: &'a [u8],
}Expand description
NAK control packet (§3.2.5, Figure 14).
Fields§
§timestamp: u32Timestamp (§3).
dest_socket_id: u32Destination Socket ID (§3).
raw_loss_list: &'a [u8]The raw loss-list CIF bytes. Walk with Self::entries.
Implementations§
Trait Implementations§
impl<'a> Copy for NakPacket<'a>
impl<'a> Eq for NakPacket<'a>
impl<'a> StructuralPartialEq for NakPacket<'a>
Auto Trait Implementations§
impl<'a> Freeze for NakPacket<'a>
impl<'a> RefUnwindSafe for NakPacket<'a>
impl<'a> Send for NakPacket<'a>
impl<'a> Sync for NakPacket<'a>
impl<'a> Unpin for NakPacket<'a>
impl<'a> UnsafeUnpin for NakPacket<'a>
impl<'a> UnwindSafe for NakPacket<'a>
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