Struct netsim::wire::SelectiveAck[][src]

pub struct SelectiveAck {
    pub start_seq_num: u32,
    pub end_seq_num: u32,
}

A selective ACK block of a TCP packet

Fields

The initial sequence number that this SACK block is acknowledging

The final sequence number that this SACK block is acknowledging

Trait Implementations

impl Clone for SelectiveAck
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for SelectiveAck
[src]

Formats the value using the given formatter. Read more

impl PartialEq for SelectiveAck
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations