Enum etherparse::TcpOptionWriteError[][src]

pub enum TcpOptionWriteError {
    NotEnoughSpace(usize),
}

Errors that can occour when setting the options of a tcp header.

Variants

There is not enough memory to store all options in the options section of the header (maximum 40 bytes).

The options size is limited by the 4 bit data_offset field in the header which describes the total tcp header size in multiple of 4 bytes. This leads to a maximum size for the options part of the header of 4*(15 - 5) (minus 5 for the size of the tcp header itself).

Trait Implementations

impl Clone for TcpOptionWriteError
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for TcpOptionWriteError
[src]

Formats the value using the given formatter. Read more

impl Eq for TcpOptionWriteError
[src]

impl PartialEq for TcpOptionWriteError
[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