[][src]Enum sequoia_openpgp::packet::SEIP

pub enum SEIP {
    V1(SEIP1),
}

Holds a SEIP packet.

A SEIP packet holds encrypted data. The data contains additional OpenPGP packets. See Section 5.13 of RFC 4880 for details.

A SEIP packet is not normally instantiated directly. In most cases, you'll create one as a side-effect of encrypting a message using the streaming serializer, or parsing an encrypted message using the PacketParser.

Variants

V1(SEIP1)

SEIP packet version 1.

Implementations

impl SEIP[src]

pub fn version(&self) -> u8[src]

Gets the version.

Methods from Deref<Target = SEIP1>

Trait Implementations

impl Clone for SEIP[src]

impl Debug for SEIP[src]

impl Deref for SEIP[src]

type Target = SEIP1

The resulting type after dereferencing.

impl DerefMut for SEIP[src]

impl Eq for SEIP[src]

impl From<SEIP> for Packet[src]

impl From<SEIP1> for SEIP[src]

impl Hash for SEIP[src]

impl IntoIterator for SEIP[src]

Implement IntoIterator so that cert::merge_packets(sig) just works.

type Item = SEIP

The type of the elements being iterated over.

type IntoIter = Once<SEIP>

Which kind of iterator are we turning this into?

impl Marshal for SEIP[src]

fn serialize(&self, o: &mut dyn Write) -> Result<()>[src]

Writes a serialized version of the specified SEIP packet to o.

Errors

Returns Error::InvalidOperation if this packet has children. To construct an encrypted message, use serialize::stream::Encryptor.

impl MarshalInto for SEIP[src]

impl<'a> Parse<'a, SEIP> for SEIP[src]

impl PartialEq<SEIP> for SEIP[src]

impl StructuralEq for SEIP[src]

impl StructuralPartialEq for SEIP[src]

Auto Trait Implementations

impl RefUnwindSafe for SEIP

impl Send for SEIP

impl Sync for SEIP

impl Unpin for SEIP

impl UnwindSafe for SEIP

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> DynClone for T where
    T: Clone
[src]

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

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

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

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.