[][src]Enum sequoia_openpgp::packet::user_attribute::Subpacket

pub enum Subpacket {
    Image(Image),
    Unknown(u8Box<[u8]>),
}

User Attribute subpackets.

See Section 5.12 of RFC 4880 for details.

Variants

Image(Image)

Image subpacket.

See Section 5.12.1 of RFC 4880 for details.

Unknown(u8Box<[u8]>)

Unknown subpacket.

Trait Implementations

impl Arbitrary for Subpacket[src]

impl Clone for Subpacket[src]

impl Debug for Subpacket[src]

impl Eq for Subpacket[src]

impl Hash for Subpacket[src]

impl PartialEq<Subpacket> for Subpacket[src]

impl Serialize for Subpacket[src]

impl SerializeInto for Subpacket[src]

impl StructuralEq for Subpacket[src]

impl StructuralPartialEq for Subpacket[src]

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>,