[][src]Struct tnef::Attachment

pub struct Attachment<'a> {
    pub title: String,
    pub data: &'a [u8],
    pub create_date: NaiveDateTime,
    pub modify_date: NaiveDateTime,
    pub rend_data: RendData,
    pub props: &'a [u8],
    pub meta: Option<&'a [u8]>,
    pub transport_filename: Option<String>,
}

TNEF attachment.

Fields

title: Stringdata: &'a [u8]create_date: NaiveDateTimemodify_date: NaiveDateTimerend_data: RendDataprops: &'a [u8]meta: Option<&'a [u8]>transport_filename: Option<String>

Trait Implementations

impl<'a> Clone for Attachment<'a>[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<'a> Debug for Attachment<'a>[src]

Auto Trait Implementations

impl<'a> Sync for Attachment<'a>

impl<'a> Unpin for Attachment<'a>

impl<'a> Send for Attachment<'a>

impl<'a> UnwindSafe for Attachment<'a>

impl<'a> RefUnwindSafe for Attachment<'a>

Blanket Implementations

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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]