[][src]Struct sequoia_openpgp::packet::Trust

pub struct Trust { /* fields omitted */ }

Holds a Trust packet.

Trust packets are used to hold implementation specific information in an implementation-defined format. Trust packets are normally not exported.

See Section 5.10 of RFC 4880 for details.

Implementations

impl Trust[src]

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

Gets the trust packet's value.

Trait Implementations

impl Clone for Trust[src]

impl Debug for Trust[src]

impl Display for Trust[src]

impl Eq for Trust[src]

impl From<Trust> for Packet[src]

impl From<Vec<u8>> for Trust[src]

impl Hash for Trust[src]

impl IntoIterator for Trust[src]

Implement IntoIterator so that cert::merge_packets(sig) just works.

type Item = Trust

The type of the elements being iterated over.

type IntoIter = Once<Trust>

Which kind of iterator are we turning this into?

impl Marshal for Trust[src]

impl MarshalInto for Trust[src]

impl<'a> Parse<'a, Trust> for Trust[src]

impl PartialEq<Trust> for Trust[src]

impl StructuralEq for Trust[src]

impl StructuralPartialEq for Trust[src]

Auto Trait Implementations

impl RefUnwindSafe for Trust

impl Send for Trust

impl Sync for Trust

impl Unpin for Trust

impl UnwindSafe for Trust

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> DynClone for T where
    T: Clone
[src]

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

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

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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.