[][src]Struct google_mirror1::Subscription

pub struct Subscription {
    pub kind: Option<String>,
    pub notification: Option<Notification>,
    pub updated: Option<String>,
    pub collection: Option<String>,
    pub verify_token: Option<String>,
    pub user_token: Option<String>,
    pub operation: Option<Vec<String>>,
    pub id: Option<String>,
    pub callback_url: Option<String>,
}

A subscription to events on a collection.

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

kind: Option<String>

The type of resource. This is always mirror#subscription.

notification: Option<Notification>

Container object for notifications. This is not populated in the Subscription resource.

updated: Option<String>

The time at which this subscription was last modified, formatted according to RFC 3339.

collection: Option<String>

The collection to subscribe to. Allowed values are:

  • timeline - Changes in the timeline including insertion, deletion, and updates.
  • locations - Location updates.
  • settings - Settings updates.
verify_token: Option<String>

A secret token sent to the subscriber in notifications so that it can verify that the notification was generated by Google.

user_token: Option<String>

An opaque token sent to the subscriber in notifications so that it can determine the ID of the user.

operation: Option<Vec<String>>

A list of operations that should be subscribed to. An empty list indicates that all operations on the collection should be subscribed to. Allowed values are:

  • UPDATE - The item has been updated.
  • INSERT - A new item has been inserted.
  • DELETE - The item has been deleted.
  • MENU_ACTION - A custom menu item has been triggered by the user.
id: Option<String>

The ID of the subscription.

callback_url: Option<String>

The URL where notifications should be delivered (must start with https://).

Trait Implementations

impl Clone for Subscription[src]

impl Debug for Subscription[src]

impl Default for Subscription[src]

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

impl RequestValue for Subscription[src]

impl Resource for Subscription[src]

impl ResponseResult for Subscription[src]

impl Serialize for Subscription[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