[][src]Struct sequoia_openpgp::packet::Container

pub struct Container { /* fields omitted */ }

Holds packet bodies.

This is used by OpenPGP container packets, like the compressed data packet, to store the containing packets.

Implementations

impl Container[src]

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 into_children(self) -> Option<IntoIter<Packet>>[src]

Returns an IntoIter 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 Container[src]

impl Debug for Container[src]

impl Default for Container[src]

impl Deref for Container[src]

type Target = Body

The resulting type after dereferencing.

impl Eq for Container[src]

impl From<Vec<Packet>> for Container[src]

impl Hash for Container[src]

impl PartialEq<Container> for Container[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.