[][src]Struct sequoia_openpgp::packet::seip::SEIP1

pub struct SEIP1 { /* fields omitted */ }

Holds an encrypted data packet.

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

A note on equality

An unprocessed (encrypted) SEIP packet is never considered equal to a processed (decrypted) one. Likewise, a processed (decrypted) packet is never considered equal to a structured (parsed) one.

Implementations

impl SEIP1[src]

pub fn new() -> Self[src]

Creates a new SEIP1 packet.

Methods from Deref<Target = Container>

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

Returns a reference to this Packet's children.

Returns None if the body is not structured.

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

Returns a mutable reference to this Packet's children.

Returns None if the body is not structured.

pub fn descendants(&self) -> Option<Iter>[src]

Returns an iterator over the packet's descendants. The descendants are visited in depth-first order.

Returns None if the body is not structured.

pub fn children<'a>(&'a self) -> Option<Iter<'a, Packet>>[src]

Returns an iterator over the packet's immediate children.

Returns None if the body is not structured.

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

Gets the packet's body.

pub fn set_body(&mut self, body: Body) -> Body[src]

Sets the packet's body.

Trait Implementations

impl Clone for SEIP1[src]

impl Debug for SEIP1[src]

impl Deref for SEIP1[src]

type Target = Container

The resulting type after dereferencing.

impl DerefMut for SEIP1[src]

impl Eq for SEIP1[src]

impl From<SEIP1> for SEIP[src]

impl From<SEIP1> for Packet[src]

impl Hash for SEIP1[src]

impl PartialEq<SEIP1> for SEIP1[src]

impl StructuralEq for SEIP1[src]

impl StructuralPartialEq for SEIP1[src]

Auto Trait Implementations

impl RefUnwindSafe for SEIP1

impl Send for SEIP1

impl Sync for SEIP1

impl Unpin for SEIP1

impl UnwindSafe for SEIP1

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