[][src]Struct meli::conf::ComposingSettingsOverride

pub struct ComposingSettingsOverride {
    pub send_mail: Option<SendMail>,
    pub editor_command: Option<Option<String>>,
    pub embed: Option<bool>,
    pub format_flowed: Option<bool>,
    pub insert_user_agent: Option<bool>,
    pub default_header_values: Option<HashMap<String, String>>,
    pub store_sent_mail: Option<bool>,
}

Fields

send_mail: Option<SendMail>

A command to pipe new emails to Required

editor_command: Option<Option<String>>

Command to launch editor. Can have arguments. Draft filename is given as the last argument. If it's missing, the environment variable $EDITOR is looked up.

embed: Option<bool>

Embed editor (for terminal interfaces) instead of forking and waiting.

format_flowed: Option<bool>

Set "format=flowed" in plain text attachments. Default: true

insert_user_agent: Option<bool>

Set User-Agent Default: empty

default_header_values: Option<HashMap<String, String>>

Set default header values for new drafts Default: empty

store_sent_mail: Option<bool>

Store sent mail after successful submission. This setting is meant to be disabled for non-standard behaviour in gmail, which auto-saves sent mail on its own. Default: true

Trait Implementations

impl Clone for ComposingSettingsOverride[src]

impl Debug for ComposingSettingsOverride[src]

impl Default for ComposingSettingsOverride[src]

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

impl Serialize for ComposingSettingsOverride[src]

Auto Trait Implementations

impl RefUnwindSafe for ComposingSettingsOverride

impl Send for ComposingSettingsOverride

impl Sync for ComposingSettingsOverride

impl Unpin for ComposingSettingsOverride

impl UnwindSafe for ComposingSettingsOverride

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> 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.

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

impl<T> WithSubscriber for T[src]