pub struct SectionHeaderBlock<'a> {
    pub block_type: u32,
    pub block_len1: u32,
    pub bom: u32,
    pub major_version: u16,
    pub minor_version: u16,
    pub section_len: i64,
    pub options: Vec<PcapNGOption<'a>>,
    pub block_len2: u32,
}
Expand description

The Section Header Block (SHB) identifies the beginning of a section of the capture capture file.

The Section Header Block does not contain data but it rather identifies a list of blocks (interfaces, packets) that are logically correlated.

Fields

block_type: u32block_len1: u32bom: u32

Byte-order magic

major_version: u16minor_version: u16section_len: i64options: Vec<PcapNGOption<'a>>block_len2: u32

Implementations

Trait Implementations

Formats the value using the given formatter. Read more

Check and correct all fields: use magic, version and fix lengths fields

Serialize to bytes representation (little-endian). Do not check values

Serialize to bytes representation (little-endian). Check values and fix all fields before serializing. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.