Struct google_gmail1::api::VacationSettings[][src]

pub struct VacationSettings {
    pub enable_auto_reply: Option<bool>,
    pub end_time: Option<String>,
    pub response_body_html: Option<String>,
    pub response_body_plain_text: Option<String>,
    pub response_subject: Option<String>,
    pub restrict_to_contacts: Option<bool>,
    pub restrict_to_domain: Option<bool>,
    pub start_time: Option<String>,
}

Vacation auto-reply settings for an account. These settings correspond to the “Vacation responder” feature in the web interface.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

enable_auto_reply: Option<bool>

Flag that controls whether Gmail automatically replies to messages.

end_time: Option<String>

An optional end time for sending auto-replies (epoch ms). When this is specified, Gmail will automatically reply only to messages that it receives before the end time. If both startTime and endTime are specified, startTime must precede endTime.

response_body_html: Option<String>

Response body in HTML format. Gmail will sanitize the HTML before storing it. If both response_body_plain_text and response_body_html are specified, response_body_html will be used.

response_body_plain_text: Option<String>

Response body in plain text format. If both response_body_plain_text and response_body_html are specified, response_body_html will be used.

response_subject: Option<String>

Optional text to prepend to the subject line in vacation responses. In order to enable auto-replies, either the response subject or the response body must be nonempty.

restrict_to_contacts: Option<bool>

Flag that determines whether responses are sent to recipients who are not in the user’s list of contacts.

restrict_to_domain: Option<bool>

Flag that determines whether responses are sent to recipients who are outside of the user’s domain. This feature is only available for G Suite users.

start_time: Option<String>

An optional start time for sending auto-replies (epoch ms). When this is specified, Gmail will automatically reply only to messages that it receives after the start time. If both startTime and endTime are specified, startTime must precede endTime.

Trait Implementations

impl Clone for VacationSettings[src]

impl Debug for VacationSettings[src]

impl Default for VacationSettings[src]

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

impl RequestValue for VacationSettings[src]

impl ResponseResult for VacationSettings[src]

impl Serialize for VacationSettings[src]

Auto Trait Implementations

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.