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

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]

fn clone(&self) -> SEIP1[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for SEIP1[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl Deref for SEIP1[src]

type Target = Container

The resulting type after dereferencing.

fn deref(&self) -> &Self::Target[src]

Dereferences the value.

impl DerefMut for SEIP1[src]

fn deref_mut(&mut self) -> &mut Self::Target[src]

Mutably dereferences the value.

impl From<SEIP1> for SEIP[src]

fn from(p: SEIP1) -> Self[src]

Performs the conversion.

impl From<SEIP1> for Packet[src]

fn from(s: SEIP1) -> Self[src]

Performs the conversion.

impl Hash for SEIP1[src]

fn hash<__H: Hasher>(&self, state: &mut __H)[src]

Feeds this value into the given Hasher. Read more

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given Hasher. Read more

impl PartialEq<SEIP1> for SEIP1[src]

fn eq(&self, other: &SEIP1) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, other: &SEIP1) -> bool[src]

This method tests for !=.

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

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> DynClone for T where
    T: Clone
[src]

pub fn __clone_box(&self, Private) -> *mut ()[src]

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

pub fn from(t: T) -> T[src]

Performs the conversion.

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

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

Creates owned data from borrowed data, usually by cloning. Read more

pub fn clone_into(&self, target: &mut T)[src]

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

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.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

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.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.