[][src]Struct sequoia_openpgp::autocrypt::AutocryptHeader

pub struct AutocryptHeader {
    pub header_type: AutocryptHeaderType,
    pub key: Option<Cert>,
    pub attributes: Vec<Attribute>,
}

A parsed Autocrypt header.

Fields

header_type: AutocryptHeaderType

Whether this is an "Autocrypt" or "Autocrypt-Gossip" header.

key: Option<Cert>

The parsed key data.

attributes: Vec<Attribute>

All attributes.

Methods

impl AutocryptHeader[src]

pub fn new_sender<'a, P>(
    cert: &Cert,
    addr: &str,
    prefer_encrypt: P
) -> Result<Self> where
    P: Into<Option<&'a str>>, 
[src]

Creates a new "Autocrypt" header.

pub fn get(&self, key: &str) -> Option<&Attribute>[src]

Looks up an attribute.

Trait Implementations

impl Debug for AutocryptHeader[src]

impl PartialEq<AutocryptHeader> for AutocryptHeader[src]

impl Serialize for AutocryptHeader[src]

impl StructuralPartialEq for AutocryptHeader[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, 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>,