[][src]Struct sequoia_openpgp::packet::header::CTBOld

pub struct CTBOld { /* fields omitted */ }

A CTB using the old format encoding.

See Section 4.2 of RFC 4880 for more details.

Implementations

impl CTBOld[src]

pub fn new(tag: Tag, length: BodyLength) -> Result<Self>[src]

Constructs an old-style CTB.

Errors

Returns Error::InvalidArgument if the tag or the body length cannot be expressed using an old-style CTB.

pub fn tag(&self) -> Tag[src]

Returns the packet's tag.

pub fn length_type(&self) -> PacketLengthType[src]

Returns the packet's length type.

Trait Implementations

impl Clone for CTBOld[src]

impl Debug for CTBOld[src]

impl Marshal for CTBOld[src]

impl MarshalInto for CTBOld[src]

Auto Trait Implementations

impl RefUnwindSafe for CTBOld

impl Send for CTBOld

impl Sync for CTBOld

impl Unpin for CTBOld

impl UnwindSafe for CTBOld

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.