[][src]Struct melib::backends::jmap::objects::EmailGet

pub struct EmailGet {
    pub get_call: Get<EmailObject>,
    pub body_properties: Vec<String>,
    pub fetch_text_body_values: bool,
    pub fetch_html_body_values: bool,
    pub fetch_all_body_values: bool,
    pub max_body_value_bytes: u64,
}

Fields

get_call: Get<EmailObject>body_properties: Vec<String>fetch_text_body_values: boolfetch_html_body_values: boolfetch_all_body_values: boolmax_body_value_bytes: u64

Implementations

impl EmailGet[src]

pub fn new(get_call: Get<EmailObject>) -> Self[src]

pub fn body_properties(self, new_val: Vec<String>) -> Self[src]

pub fn fetch_text_body_values(self, new_val: bool) -> Self[src]

pub fn fetch_html_body_values(self, new_val: bool) -> Self[src]

pub fn fetch_all_body_values(self, new_val: bool) -> Self[src]

pub fn max_body_value_bytes(self, new_val: u64) -> Self[src]

Trait Implementations

impl Debug for EmailGet[src]

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

impl Method<EmailObject> for EmailGet[src]

impl Serialize for EmailGet[src]

Auto Trait Implementations

impl RefUnwindSafe for EmailGet

impl Send for EmailGet

impl Sync for EmailGet

impl Unpin for EmailGet

impl UnwindSafe for EmailGet

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]