pub enum Block<'a> {
    SectionHeader(SectionHeaderBlock<'a>),
    InterfaceDescription(InterfaceDescriptionBlock<'a>),
    EnhancedPacket(EnhancedPacketBlock<'a>),
    SimplePacket(SimplePacketBlock<'a>),
    NameResolution(NameResolutionBlock<'a>),
    InterfaceStatistics(InterfaceStatisticsBlock<'a>),
    SystemdJournalExport(SystemdJournalExportBlock<'a>),
    DecryptionSecrets(DecryptionSecretsBlock<'a>),
    Custom(CustomBlock<'a>),
    Unknown(UnknownBlock<'a>),
}
Expand description

A block from a PcapNG file

Variants

SectionHeader(SectionHeaderBlock<'a>)

InterfaceDescription(InterfaceDescriptionBlock<'a>)

EnhancedPacket(EnhancedPacketBlock<'a>)

SimplePacket(SimplePacketBlock<'a>)

NameResolution(NameResolutionBlock<'a>)

InterfaceStatistics(InterfaceStatisticsBlock<'a>)

SystemdJournalExport(SystemdJournalExportBlock<'a>)

DecryptionSecrets(DecryptionSecretsBlock<'a>)

Custom(CustomBlock<'a>)

Unknown(UnknownBlock<'a>)

Implementations

Returns true if blocks contains a network packet

Return the normalized magic number of the block

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.

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

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.