[][src]Struct mailparse::body::EncodedBody

pub struct EncodedBody<'a> { /* fields omitted */ }

Struct that holds the encoded body representation of the message (or message subpart).

Methods

impl<'a> EncodedBody<'a>[src]

pub fn get_content_type(&self) -> &'a ParsedContentType[src]

Get the body Content-Type

pub fn get_raw(&self) -> &'a [u8][src]

Get the raw body of the message exactly as it is written in the message (or message subpart).

pub fn get_decoded(&self) -> Result<Vec<u8>, MailParseError>[src]

Get the decoded body of the message (or message subpart).

pub fn get_decoded_as_string(&self) -> Result<String, MailParseError>[src]

Get the body of the message as a Rust string. This function tries to decode the body and then converts the result into a Rust UTF-8 string using the charset in the Content-Type (or "us-ascii" if the charset was missing or not recognized). This operation returns a valid result only if the decoded body has a text format.

Auto Trait Implementations

impl<'a> Send for EncodedBody<'a>

impl<'a> Sync for EncodedBody<'a>

impl<'a> Unpin for EncodedBody<'a>

impl<'a> UnwindSafe for EncodedBody<'a>

impl<'a> RefUnwindSafe for EncodedBody<'a>

Blanket Implementations

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

impl<T> From<T> for 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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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