[][src]Struct melib::backends::jmap::objects::email::HtmlBody

pub struct HtmlBody {
    pub blob_id: Id<BlobObject>,
    pub charset: String,
    pub cid: Option<String>,
    pub disposition: Option<String>,
    pub headers: Value,
    pub language: Option<Vec<String>>,
    pub location: Option<String>,
    pub name: Option<String>,
    pub part_id: Option<String>,
    pub size: u64,
    pub content_type: String,
    pub sub_parts: Vec<Value>,
}

Fields

blob_id: Id<BlobObject>charset: Stringcid: Option<String>disposition: Option<String>headers: Valuelanguage: Option<Vec<String>>location: Option<String>name: Option<String>part_id: Option<String>size: u64content_type: Stringsub_parts: Vec<Value>

Trait Implementations

impl Debug for HtmlBody[src]

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

impl Serialize for HtmlBody[src]

Auto Trait Implementations

impl RefUnwindSafe for HtmlBody

impl Send for HtmlBody

impl Sync for HtmlBody

impl Unpin for HtmlBody

impl UnwindSafe for HtmlBody

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

impl<T> Instrument 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]