[−][src]Struct mail_headers::header_components::FileMeta
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]
fn hash<__H: Hasher>(&self, state: &mut __H)[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
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]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[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]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,