Struct etherparse::VlanTaggingHeader [] [src]

pub struct VlanTaggingHeader {
    pub priority_code_point: u8,
    pub drop_eligible_indicator: bool,
    pub vlan_identifier: u16,
    pub ether_type: u16,
}

IEEE 802.1Q VLAN Tagging Header

Fields

A 3 bit number which refers to the IEEE 802.1p class of service and maps to the frame priority level.

Indicate that the frame may be dropped under the presence of congestion.

12 bits vland identifier.

"Tag protocol identifier": Type id of content after this header. Refer to the "EtherType" for a list of possible supported values.

Trait Implementations

impl Debug for VlanTaggingHeader
[src]

[src]

Formats the value using the given formatter.

impl PartialEq for VlanTaggingHeader
[src]

[src]

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

[src]

This method tests for !=.