Enum mail_core::Resource

source ·
pub enum Resource {
    Source(Source),
    Data(Data),
    EncData(EncData),
}
Expand description

A enum specifying a “resource” for a mail.

A resource represents any kind of actual data. It can be anything from a html body of a mail over a embedded image to a attached spread sheet.

A resource can be specified in 3 ways:

  1. As a source specifying what to get and how to handle it.
  2. Data (and Metadata) representing a resource.
  3. Data (and Metadata) representing a transfer encoded resource.

Normally auto generated content will be provided as Data, embeddings and attachments will be provided as Source (potentially referring to a file on in a file system) and transfer encoded data can not be provided by the user.

When a mail is converted to a encodable mail any resource will be swapped with a version of it which is transfer encoded, so the only way a consumer of this library normally comes in contact with the third variant is by turning a encodable mail back into normal mail.

Variants

Source(Source)

Provide a source which specify what data to use.

This also allows specifying a media type (if not stored with the data and sniffing is not wanted or to unreliable).

Additionally it allows to specify a “file name” which will force the given name to be used instead of inferring it from the IRI or meta data associated with the IRI in “some way” (like file name fild in a database from which the data will loaded).

Data(Data)

Provide the data used for the mail bodies content.

This for example could be a png image.

EncData(EncData)

Provides a already transfer encoded version of the Data variant.

This can not be created by a consumer of the library and will be created when turning a mail into a transfer encoded mail.

Implementations

Creates a new text Resource with text/plain; charset=utf-8 media type.

The Context is used to generate a ContentId.

Return the content id, if there is any.

Create a Mail instance representing this Resource.

This is not a complete mail, i.e. it will not contain headers like From or To and in many cases the returned Mail instance will be wrapped into other mail instances adding alternative bodies, embedded resources and attachments.

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.