Struct etherparse::SingleVlanHeader
[−]
[src]
pub struct SingleVlanHeader {
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
priority_code_point: u8
A 3 bit number which refers to the IEEE 802.1p class of service and maps to the frame priority level.
drop_eligible_indicator: bool
Indicate that the frame may be dropped under the presence of congestion.
vlan_identifier: u16
12 bits vland identifier.
ether_type: u16
"Tag protocol identifier": Type id of content after this header. Refer to the "EtherType" for a list of possible supported values.
Methods
impl SingleVlanHeader[src]
pub fn read<T: Read + Seek + Sized>(
reader: &mut T
) -> Result<SingleVlanHeader, Error>[src]
reader: &mut T
) -> Result<SingleVlanHeader, Error>
Read a IEEE 802.1Q VLAN tagging header
pub fn write<T: Write + Sized>(&self, writer: &mut T) -> Result<(), WriteError>[src]
Write the IEEE 802.1Q VLAN tagging header
Trait Implementations
impl Clone for SingleVlanHeader[src]
fn clone(&self) -> SingleVlanHeader[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Debug for SingleVlanHeader[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl Eq for SingleVlanHeader[src]
impl PartialEq for SingleVlanHeader[src]
fn eq(&self, __arg_0: &SingleVlanHeader) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &SingleVlanHeader) -> bool[src]
This method tests for !=.
impl SerializedSize for SingleVlanHeader[src]
const SERIALIZED_SIZE: usize
SERIALIZED_SIZE: usize = 4
Serialized size of the header in bytes.