[][src]Struct ytnef::tnef::TNEFFile

pub struct TNEFFile { /* fields omitted */ }

Implementations

impl TNEFFile[src]

pub fn new<R: 'static + Read>(reader: R) -> TNEFResult<Self>[src]

pub fn from_file(path: String) -> TNEFResult<Self>[src]

pub fn from_buffer(buffer: &mut [u8]) -> TNEFResult<Self>[src]

pub fn version(&self) -> String[src]

pub fn from(&self) -> Option<String>[src]

pub fn subject(&self) -> Option<String>[src]

pub fn date_sent(&self) -> NaiveDateTime[src]

pub fn date_received(&self) -> NaiveDateTime[src]

pub fn date_modified(&self) -> NaiveDateTime[src]

pub fn date_start(&self) -> NaiveDateTime[src]

pub fn date_end(&self) -> NaiveDateTime[src]

pub fn message_status(&self) -> String[src]

pub fn message_class(&self) -> String[src]

pub fn message_id(&self) -> String[src]

pub fn parent_id(&self) -> String[src]

pub fn conversation_id(&self) -> String[src]

pub fn body(&self) -> Option<String>[src]

pub fn priority(&self) -> String[src]

pub fn attachments(&self) -> Vec<TNEFAttachment>[src]

pub fn mapi_properties(&self) -> Vec<MAPIProperty>[src]

pub fn code_page(&self) -> Option<Vec<u8>>[src]

pub fn original_message_class(&self) -> Option<String>[src]

pub fn owner(&self) -> Option<String>[src]

pub fn sent_for(&self) -> Option<String>[src]

pub fn delegate(&self) -> Option<String>[src]

pub fn aid_owner(&self) -> Option<String>[src]

Trait Implementations

impl Drop for TNEFFile[src]

Auto Trait Implementations

impl RefUnwindSafe for TNEFFile

impl !Send for TNEFFile

impl !Sync for TNEFFile

impl Unpin for TNEFFile

impl UnwindSafe for TNEFFile

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.