Enum network_packet::HardwareOffloadLayer3PacketType[][src]

pub enum HardwareOffloadLayer3PacketType {
    UncategorisedOrAbsent,
    InternetProtocolVersion4(HardwareOffloadCategorisedInternetProtocolHeaderOptionsAndExtensionsLayer3PacketType),
    InternetProtocolVersion6(HardwareOffloadCategorisedInternetProtocolHeaderOptionsAndExtensionsLayer3PacketType),
    Other,
}

Hardware offload layer 3 packet type.

If the packet is a tunnelled packet, then this is known as the Outer Layer 3 packet type.

Variants

Either the driver did not categorise this packet or the layer 3 data structure is absent.

Internet Protocol (IP) version 4.

EtherType 0x0800.

Internet Protocol (IP) version 6.

EtherType 0x86DD.

Invalid or introduced after this code was written.

Trait Implementations

impl Debug for HardwareOffloadLayer3PacketType
[src]

Formats the value using the given formatter. Read more

impl Copy for HardwareOffloadLayer3PacketType
[src]

impl Clone for HardwareOffloadLayer3PacketType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Ord for HardwareOffloadLayer3PacketType
[src]

This method returns an Ordering between self and other. Read more

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

impl PartialOrd for HardwareOffloadLayer3PacketType
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Eq for HardwareOffloadLayer3PacketType
[src]

impl PartialEq for HardwareOffloadLayer3PacketType
[src]

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

This method tests for !=.

impl Hash for HardwareOffloadLayer3PacketType
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations