pub struct LegacyPcapBlock<'a> {
    pub ts_sec: u32,
    pub ts_usec: u32,
    pub caplen: u32,
    pub origlen: u32,
    pub data: &'a [u8],
}
Expand description

Container for network data in legacy Pcap files

Fields

ts_sec: u32ts_usec: u32caplen: u32origlen: u32data: &'a [u8]

Trait Implementations

Formats the value using the given formatter. Read more

Converts to this type from the input type.

Converts to this type from the input type.

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

Check and correct all fields: use magic, fix lengths fields and other values if possible.

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.