[][src]Struct mail_headers::header_components::FileMeta

pub struct FileMeta {
    pub file_name: Option<String>,
    pub creation_date: Option<DateTime<Utc>>,
    pub modification_date: Option<DateTime<Utc>>,
    pub read_date: Option<DateTime<Utc>>,
    pub size: Option<usize>,
}

A struct representing common file metadata.

This is used by e.g. attachments, when attaching a file (or embedding an image). Through it's usage is optional.

Stability Note

This is likely to move to an different place at some point, potentially in a different mail-* crate.

Fields

file_name: Option<String>

The file name.

Note that this utility is limited to utf-8 file names. This is normally used when downloading a attachment to choose the default file name.

creation_date: Option<DateTime<Utc>>

The creation date of the file (in utc).

modification_date: Option<DateTime<Utc>>

The last modification date of the file (in utc).

read_date: Option<DateTime<Utc>>

The date time the file was read, i.e. placed in the mail (in utc).

size: Option<usize>

The size the file should have.

Note that normally mail explicitly opts to NOT specify the size of a mime-multi part body (e.g. an attachments) and you can never rely on it to e.g. skip ahead. But it has some uses wrt. thinks like external headers.

Methods

impl FileMeta[src]

pub fn replace_empty_fields_with(&mut self, other_meta: &Self)[src]

Replaces all fields which are None with the value of the field in other_meta.

Trait Implementations

impl Clone for FileMeta[src]

impl Debug for FileMeta[src]

impl Default for FileMeta[src]

impl Eq for FileMeta[src]

impl Hash for FileMeta[src]

impl PartialEq<FileMeta> for FileMeta[src]

impl StructuralEq for FileMeta[src]

impl StructuralPartialEq for FileMeta[src]

Auto Trait Implementations

impl RefUnwindSafe for FileMeta

impl Send for FileMeta

impl Sync for FileMeta

impl Unpin for FileMeta

impl UnwindSafe for FileMeta

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> Erased for T[src]

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

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, 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.