[][src]Struct crumble::Message

pub struct Message {
    pub headers: Vec<Header>,
    pub sections: Vec<Section>,
}

Representation of a MIME document.

MIME documents have a large initial key-value header, followed by one or more text/data sections. A section can be some plain text; a header with text or data; or some nested combination.

Fields

headers: Vec<Header>sections: Vec<Section>

Methods

impl Message[src]

pub fn new(raw_message: &str) -> Result<Message, Box<dyn Error + 'static>>[src]

Parse a MIME document and return structured representation. Performance should be reasonable: provided tests take between 5 and 200μs per document.

Trait Implementations

impl ToString for Message[src]

impl Debug for Message[src]

Auto Trait Implementations

impl Send for Message

impl Unpin for Message

impl Sync for Message

impl UnwindSafe for Message

impl RefUnwindSafe for Message

Blanket Implementations

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

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

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.

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

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

impl<T> Any for T where
    T: 'static + ?Sized
[src]