[][src]Struct google_admin1_directory::Notification

pub struct Notification {
    pub body: Option<String>,
    pub kind: Option<String>,
    pub etag: Option<String>,
    pub send_time: Option<String>,
    pub notification_id: Option<String>,
    pub from_address: Option<String>,
    pub is_unread: Option<bool>,
    pub subject: Option<String>,
}

Template for a notification resource.

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

body: Option<String>

Body of the notification (Read-only)

kind: Option<String>

The type of the resource.

etag: Option<String>

ETag of the resource.

send_time: Option<String>

Time at which notification was sent (Read-only)

notification_id: Option<String>

no description provided

from_address: Option<String>

Address from which the notification is received (Read-only)

is_unread: Option<bool>

Boolean indicating whether the notification is unread or not.

subject: Option<String>

Subject of the notification (Read-only)

Trait Implementations

impl Clone for Notification[src]

impl Debug for Notification[src]

impl Default for Notification[src]

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

impl RequestValue for Notification[src]

impl Resource for Notification[src]

impl ResponseResult for Notification[src]

impl Serialize for Notification[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, 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<T> Typeable for T where
    T: Any