pub struct SpaceMethods<'a, C, A>where
    C: 'a,
    A: 'a,
{ /* private fields */ }
Expand description

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::{Authenticator, DefaultAuthenticatorDelegate, ApplicationSecret, MemoryStorage};
use chat1::HangoutsChat;
 
let secret: ApplicationSecret = Default::default();
let auth = Authenticator::new(&secret, DefaultAuthenticatorDelegate,
                              hyper::Client::with_connector(hyper::net::HttpsConnector::new(hyper_rustls::TlsClient::new())),
                              <MemoryStorage as Default>::default(), None);
let mut hub = HangoutsChat::new(hyper::Client::with_connector(hyper::net::HttpsConnector::new(hyper_rustls::TlsClient::new())), auth);
// Usually you wouldn't bind this to a variable, but keep calling *CallBuilders*
// like `get(...)`, `list(...)`, `members_get(...)`, `members_list(...)`, `messages_create(...)`, `messages_delete(...)`, `messages_get(...)` and `messages_update(...)`
// to build up your call.
let rb = hub.spaces();

Implementations

Create a builder to help you perform the following task:

Lists spaces the caller is a member of.

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

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

Create a builder to help you perform the following task:

Updates a message.

Arguments
  • request - No description provided.
  • name - Resource name, in the form “spaces//messages/”. Example: spaces/AAAAMpdlehY/messages/UMxbHmzDlr4.UMxbHmzDlr4

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

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

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

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

Trait Implementations

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.
Get the TypeId of this object.