[][src]Struct mail::Source

pub struct Source {
    pub iri: IRI,
    pub use_media_type: UseMediaType,
    pub use_file_name: Option<String>,
}

POD containing the IRI which should be used to laod a resource well as an optional file name to use and a description about how the content type should be handled.

Fields

iri: IRI

A International Resource Identifier pointing to a source from which the Resource can be loaded. Note that the interpretation of the IRI is left to the ResourceLoader implementation of the context. The ResourceLoader can decide to reject valid IRI's e.g. a (non local) http url is likely to be rejected by any implementation.

use_media_type: UseMediaType

Allows specifying how the media type detection is done.

use_file_name: Option<String>

Allows providing a explicit name overriding any inferred name.

If a resource if loaded from a IRI it potentially can contain a inferred name e.g. for loading a file secret_thing.png it would be just that file name, but you potentially want to provide a name which differs from the name the file has in the file system in which case you can provide a name here.

Note that file names are optional and don't need to be provided at all. But it is strongly recommended to provide them for anything used as attachment but normally irrelevant for anything else.

Trait Implementations

impl Clone for Source[src]

impl Debug for Source[src]

impl<'de> Deserialize<'de> for Source[src]

impl Serialize for Source[src]

Auto Trait Implementations

impl RefUnwindSafe for Source

impl Send for Source

impl Sync for Source

impl Unpin for Source

impl UnwindSafe for Source

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> Erased for T

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

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

impl<F, T> HeaderTryInto<T> for F where
    T: HeaderTryFrom<F>, 
[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.