pub struct NflogTlv<'a> {
    pub l: u16,
    pub t: u16,
    pub v: &'a [u8],
}
Available on crate feature data only.

Fields

l: u16

Length of data (including 4 bytes for length and types)

t: u16

Type of data (see NfAttrType)

v: &'a [u8]

Data

Trait Implementations

Formats the value using the given formatter. 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.