[][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.

Methods

impl SEIP1[src]

pub fn new() -> Self[src]

Creates a new SEIP1 packet.

impl SEIP1[src]

This packet implements the container interface.

Container packets can contain other packets, unprocessed data, or both.

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 SEIP1[src]

impl Debug 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]

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