[][src]Struct google_admin1_directory::Directory

pub struct Directory<C, A> { /* fields omitted */ }

Central instance to access all Directory related resource activities

Examples

Instantiate a new hub

extern crate hyper;
extern crate hyper_rustls;
extern crate yup_oauth2 as oauth2;
extern crate google_admin1_directory as admin1_directory;
use admin1_directory::Channel;
use admin1_directory::{Result, Error};
use std::default::Default;
use oauth2::{Authenticator, DefaultAuthenticatorDelegate, ApplicationSecret, MemoryStorage};
use admin1_directory::Directory;
 
// Get an ApplicationSecret instance by some means. It contains the `client_id` and 
// `client_secret`, among other things.
let secret: ApplicationSecret = Default::default();
// Instantiate the authenticator. It will choose a suitable authentication flow for you, 
// unless you replace  `None` with the desired Flow.
// Provide your own `AuthenticatorDelegate` to adjust the way it operates and get feedback about 
// what's going on. You probably want to bring in your own `TokenStorage` to persist tokens and
// retrieve them from storage.
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 = Directory::new(hyper::Client::with_connector(hyper::net::HttpsConnector::new(hyper_rustls::TlsClient::new())), auth);
// As the method needs a request, you would usually fill it with the desired information
// into the respective structure. Some of the parts shown here might not be applicable !
// Values shown here are possibly random and not representative !
let mut req = Channel::default();
 
// You can configure optional parameters by calling the respective setters at will, and
// execute the final call using `doit()`.
// Values shown here are possibly random and not representative !
let result = hub.users().watch(req)
             .view_type("et")
             .sort_order("diam")
             .show_deleted("ipsum")
             .query("Lorem")
             .projection("et")
             .page_token("duo")
             .order_by("aliquyam")
             .max_results(-9)
             .event("Lorem")
             .domain("eos")
             .customer("erat")
             .custom_field_mask("sadipscing")
             .doit();
 
match result {
    Err(e) => match e {
        // The Error enum provides details about what exactly happened.
        // You can also just use its `Debug`, `Display` or `Error` traits
         Error::HttpError(_)
        |Error::MissingAPIKey
        |Error::MissingToken(_)
        |Error::Cancelled
        |Error::UploadSizeLimitExceeded(_, _)
        |Error::Failure(_)
        |Error::BadRequest(_)
        |Error::FieldClash(_)
        |Error::JsonDecodeError(_, _) => println!("{}", e),
    },
    Ok(res) => println!("Success: {:?}", res),
}

Methods

impl<'a, C, A> Directory<C, A> where
    C: BorrowMut<Client>,
    A: GetToken
[src]

pub fn new(client: C, authenticator: A) -> Directory<C, A>[src]

pub fn asps(&'a self) -> AspMethods<'a, C, A>[src]

pub fn channels(&'a self) -> ChannelMethods<'a, C, A>[src]

pub fn chromeosdevices(&'a self) -> ChromeosdeviceMethods<'a, C, A>[src]

pub fn customers(&'a self) -> CustomerMethods<'a, C, A>[src]

pub fn domain_aliases(&'a self) -> DomainAliaseMethods<'a, C, A>[src]

pub fn domains(&'a self) -> DomainMethods<'a, C, A>[src]

pub fn groups(&'a self) -> GroupMethods<'a, C, A>[src]

pub fn members(&'a self) -> MemberMethods<'a, C, A>[src]

pub fn mobiledevices(&'a self) -> MobiledeviceMethods<'a, C, A>[src]

pub fn notifications(&'a self) -> NotificationMethods<'a, C, A>[src]

pub fn orgunits(&'a self) -> OrgunitMethods<'a, C, A>[src]

pub fn privileges(&'a self) -> PrivilegeMethods<'a, C, A>[src]

pub fn resources(&'a self) -> ResourceMethods<'a, C, A>[src]

pub fn role_assignments(&'a self) -> RoleAssignmentMethods<'a, C, A>[src]

pub fn roles(&'a self) -> RoleMethods<'a, C, A>[src]

pub fn schemas(&'a self) -> SchemaMethods<'a, C, A>[src]

pub fn tokens(&'a self) -> TokenMethods<'a, C, A>[src]

pub fn users(&'a self) -> UserMethods<'a, C, A>[src]

pub fn verification_codes(&'a self) -> VerificationCodeMethods<'a, C, A>[src]

pub fn user_agent(&mut self, agent_name: String) -> String[src]

Set the user-agent header field to use in all requests to the server. It defaults to google-api-rust-client/1.0.13.

Returns the previously set user-agent.

pub fn base_url(&mut self, new_base_url: String) -> String[src]

Set the base url to use in all requests to the server. It defaults to https://www.googleapis.com/admin/directory/v1/.

Returns the previously set base url.

pub fn root_url(&mut self, new_root_url: String) -> String[src]

Set the root url to use in all requests to the server. It defaults to https://www.googleapis.com/.

Returns the previously set root url.

Trait Implementations

impl<'a, C, A> Hub for Directory<C, A>[src]

Auto Trait Implementations

impl<C, A> !RefUnwindSafe for Directory<C, A>

impl<C, A> Send for Directory<C, A> where
    A: Send,
    C: Send

impl<C, A> !Sync for Directory<C, A>

impl<C, A> Unpin for Directory<C, A> where
    A: Unpin,
    C: Unpin

impl<C, A> UnwindSafe for Directory<C, A> where
    A: UnwindSafe,
    C: UnwindSafe

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

impl<T> Typeable for T where
    T: Any