Struct sequoia_autocrypt::AutocryptHeaders[][src]

pub struct AutocryptHeaders {
    pub from: Option<String>,
    pub headers: Vec<AutocryptHeader>,
}

A set of parsed Autocrypt headers.

Fields

from: Option<String>

The value in the from header.

headers: Vec<AutocryptHeader>

Any autocrypt headers.

Implementations

impl AutocryptHeaders[src]

pub fn from_bytes(data: &[u8]) -> Result<Self>[src]

Parses an autocrypt header.

data should be all of a mail’s headers.

pub fn from_file<P: AsRef<Path>>(path: P) -> Result<Self>[src]

Parses an autocrypt header.

path should name a file containing a single mail. If the file is in mbox format, then only the first mail is considered.

pub fn from_reader<R: Read>(reader: R) -> Result<Self>[src]

Parses an autocrypt header.

reader contain a single mail. If it contains multiple emails, then only the first mail is considered.

Trait Implementations

impl Debug for AutocryptHeaders[src]

impl PartialEq<AutocryptHeaders> for AutocryptHeaders[src]

impl StructuralPartialEq for AutocryptHeaders[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> Same<T> for T

type Output = T

Should always be Self

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.