pub struct AckInfo {
pub destination: Address,
pub cumulative_ack: SequenceCount,
pub selective_bitmap: u16,
}Expand description
ACK information emitted by the receiver state machine.
Fields§
§destination: AddressAddress to send the ACK to.
cumulative_ack: SequenceCountHighest contiguously received sequence number.
selective_bitmap: u16Bitmap of selectively acknowledged packets.
Trait Implementations§
impl Copy for AckInfo
impl Eq for AckInfo
impl StructuralPartialEq for AckInfo
Auto Trait Implementations§
impl Freeze for AckInfo
impl RefUnwindSafe for AckInfo
impl Send for AckInfo
impl Sync for AckInfo
impl Unpin for AckInfo
impl UnsafeUnpin for AckInfo
impl UnwindSafe for AckInfo
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