[][src]Enum sequoia_openpgp::packet::header::PacketLengthType

pub enum PacketLengthType {
    OneOctet,
    TwoOctets,
    FourOctets,
    Indeterminate,
}

The PacketLengthType is used as part of the old CTB, and is partially used to determine the packet's size.

See Section 4.2.1 of RFC 4880 for more details.

Variants

OneOctet

A one-octet Body Length header encodes a length of 0 to 191 octets.

TwoOctets

A two-octet Body Length header encodes a length of 192 to 8383 octets.

FourOctets

A five-octet Body Length header consists of a single octet holding the value 255, followed by a four-octet scalar.

Indeterminate

A Partial Body Length header is one octet long and encodes the length of only part of the data packet.

Trait Implementations

impl Clone for PacketLengthType[src]

impl Copy for PacketLengthType[src]

impl Debug for PacketLengthType[src]

impl From<PacketLengthType> for u8[src]

impl PartialEq<PacketLengthType> for PacketLengthType[src]

impl StructuralPartialEq for PacketLengthType[src]

impl TryFrom<u8> for PacketLengthType[src]

type Error = Error

The type returned in the event of a conversion error.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,