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

pub enum SEIP {
    V1(SEIP1),
}

Holds an encrypted data packet.

An encrypted data packet is a container. See Section 5.13 of RFC 4880 for details.

Variants

V1(SEIP1)

SEIP packet version 1.

Methods

impl SEIP[src]

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

Gets the version.

Methods from Deref<Target = SEIP1>

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

Gets a reference to the this packet's body.

pub fn body_mut(&mut self) -> &mut Vec<u8>[src]

Gets a mutable reference to the this packet's body.

pub fn set_body(&mut self, data: Vec<u8>) -> Vec<u8>[src]

Sets the this packet's body.

pub fn children_ref(&self) -> &[Packet][src]

Returns a reference to this Packet's children.

pub fn children_mut(&mut self) -> &mut Vec<Packet>[src]

Returns a mutable reference to this Packet's children.

pub fn children<'a>(&'a self) -> impl Iterator<Item = &'a Packet>[src]

Returns an iterator over the packet's immediate children.

Important traits for Iter<'a>
pub fn descendants(&self) -> Iter[src]

Returns an iterator over all of the packet's descendants, in depth-first order.

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<'a> Parse<'a, SEIP> for SEIP[src]

impl PartialEq<SEIP> for SEIP[src]

impl Serialize 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 SerializeInto 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> 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>,