Struct mailparse::body::BinaryBody[][src]

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

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

Implementations

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

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

Get the body Content-Type

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

Notable traits for &'_ [u8]

impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]
[src]

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

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

Get the body of the message as a Rust string. This function attempts to convert the body into a Rust UTF-8 string using the charset in the Content-Type header (or "us-ascii" as default). However, this may not always work for "binary" data. The API is provided anyway for convenient handling of real-world emails that may provide textual data with a binary transfer encoding, but use this at your own risk!

Auto Trait Implementations

impl<'a> RefUnwindSafe for BinaryBody<'a>[src]

impl<'a> Send for BinaryBody<'a>[src]

impl<'a> Sync for BinaryBody<'a>[src]

impl<'a> Unpin for BinaryBody<'a>[src]

impl<'a> UnwindSafe for BinaryBody<'a>[src]

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.