Struct google_chat1::api::SpaceMethods[][src]

pub struct SpaceMethods<'a> { /* fields omitted */ }

A builder providing access to all methods supported on space resources. It is not used directly, but through the HangoutsChat hub.

Example

Instantiate a resource builder

extern crate hyper;
extern crate hyper_rustls;
extern crate yup_oauth2 as oauth2;
extern crate google_chat1 as chat1;
 
use std::default::Default;
use oauth2;
use chat1::HangoutsChat;
 
let secret: oauth2::ApplicationSecret = Default::default();
let auth = yup_oauth2::InstalledFlowAuthenticator::builder(
        secret,
        yup_oauth2::InstalledFlowReturnMethod::HTTPRedirect,
    ).build().await.unwrap();
let mut hub = HangoutsChat::new(hyper::Client::builder().build(hyper_rustls::HttpsConnector::with_native_roots()), auth);
// Usually you wouldn't bind this to a variable, but keep calling *CallBuilders*
// like `get(...)`, `list(...)`, `members_get(...)`, `members_list(...)`, `messages_attachments_get(...)`, `messages_create(...)`, `messages_delete(...)`, `messages_get(...)`, `messages_update(...)` and `webhooks(...)`
// to build up your call.
let rb = hub.spaces();

Implementations

impl<'a> SpaceMethods<'a>[src]

pub fn members_get(&self, name: &str) -> SpaceMemberGetCall<'a>[src]

Create a builder to help you perform the following task:

Returns a membership.

Arguments

  • name - Required. Resource name of the membership to be retrieved, in the form “spaces//members/”. Example: spaces/AAAAMpdlehY/members/105115627578887013105

pub fn members_list(&self, parent: &str) -> SpaceMemberListCall<'a>[src]

Create a builder to help you perform the following task:

Lists human memberships in a space.

Arguments

  • parent - Required. The resource name of the space for which membership list is to be fetched, in the form “spaces/*”. Example: spaces/AAAAMpdlehY

pub fn messages_attachments_get(
    &self,
    name: &str
) -> SpaceMessageAttachmentGetCall<'a>
[src]

Create a builder to help you perform the following task:

Gets the metadata of a message attachment. The attachment data is fetched using the media API.

Arguments

  • name - Resource name of the attachment, in the form “spaces//messages//attachments/*”.

pub fn messages_create(
    &self,
    request: Message,
    parent: &str
) -> SpaceMessageCreateCall<'a>
[src]

Create a builder to help you perform the following task:

Creates a message.

Arguments

  • request - No description provided.
  • parent - Required. Space resource name, in the form “spaces/*”. Example: spaces/AAAAMpdlehY

pub fn messages_delete(&self, name: &str) -> SpaceMessageDeleteCall<'a>[src]

Create a builder to help you perform the following task:

Deletes a message.

Arguments

  • name - Required. Resource name of the message to be deleted, in the form “spaces//messages/” Example: spaces/AAAAMpdlehY/messages/UMxbHmzDlr4.UMxbHmzDlr4

pub fn messages_get(&self, name: &str) -> SpaceMessageGetCall<'a>[src]

Create a builder to help you perform the following task:

Returns a message.

Arguments

  • name - Required. Resource name of the message to be retrieved, in the form “spaces//messages/”. Example: spaces/AAAAMpdlehY/messages/UMxbHmzDlr4.UMxbHmzDlr4

pub fn messages_update(
    &self,
    request: Message,
    name: &str
) -> SpaceMessageUpdateCall<'a>
[src]

Create a builder to help you perform the following task:

Updates a message.

Arguments

  • request - No description provided.
  • name - No description provided.

pub fn get(&self, name: &str) -> SpaceGetCall<'a>[src]

Create a builder to help you perform the following task:

Returns a space.

Arguments

  • name - Required. Resource name of the space, in the form “spaces/*”. Example: spaces/AAAAMpdlehY

pub fn list(&self) -> SpaceListCall<'a>[src]

Create a builder to help you perform the following task:

Lists spaces the caller is a member of.

pub fn webhooks(&self, request: Message, parent: &str) -> SpaceWebhookCall<'a>[src]

Create a builder to help you perform the following task:

Legacy path for creating message. Calling these will result in a BadRequest response.

Arguments

  • request - No description provided.
  • parent - Required. Space resource name, in the form “spaces/*”. Example: spaces/AAAAMpdlehY

Trait Implementations

Auto Trait Implementations

impl<'a> !RefUnwindSafe for SpaceMethods<'a>

impl<'a> Send for SpaceMethods<'a>

impl<'a> Sync for SpaceMethods<'a>

impl<'a> Unpin for SpaceMethods<'a>

impl<'a> !UnwindSafe for SpaceMethods<'a>

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