pub struct RegistrationMethods<'a, C>where
C: 'a,{ /* private fields */ }
Expand description
A builder providing access to all methods supported on registration resources.
It is not used directly, but through the Classroom
hub.
§Example
Instantiate a resource builder
extern crate hyper;
extern crate hyper_rustls;
extern crate google_classroom1 as classroom1;
use classroom1::{Classroom, FieldMask, hyper_rustls, hyper_util, yup_oauth2};
let secret: yup_oauth2::ApplicationSecret = Default::default();
let auth = yup_oauth2::InstalledFlowAuthenticator::builder(
secret,
yup_oauth2::InstalledFlowReturnMethod::HTTPRedirect,
).build().await.unwrap();
let client = hyper_util::client::legacy::Client::builder(
hyper_util::rt::TokioExecutor::new()
)
.build(
hyper_rustls::HttpsConnectorBuilder::new()
.with_native_roots()
.unwrap()
.https_or_http()
.enable_http1()
.build()
);
let mut hub = Classroom::new(client, auth);
// Usually you wouldn't bind this to a variable, but keep calling *CallBuilders*
// like `create(...)` and `delete(...)`
// to build up your call.
let rb = hub.registrations();
Implementations§
Source§impl<'a, C> RegistrationMethods<'a, C>
impl<'a, C> RegistrationMethods<'a, C>
Sourcepub fn create(&self, request: Registration) -> RegistrationCreateCall<'a, C>
pub fn create(&self, request: Registration) -> RegistrationCreateCall<'a, C>
Create a builder to help you perform the following task:
Creates a Registration
, causing Classroom to start sending notifications from the provided feed
to the destination provided in cloudPubSubTopic
. Returns the created Registration
. Currently, this will be the same as the argument, but with server-assigned fields such as expiry_time
and id
filled in. Note that any value specified for the expiry_time
or id
fields will be ignored. While Classroom may validate the cloudPubSubTopic
and return errors on a best effort basis, it is the caller’s responsibility to ensure that it exists and that Classroom has permission to publish to it. This method may return the following error codes: * PERMISSION_DENIED
if: * the authenticated user does not have permission to receive notifications from the requested field; or * the current user has not granted access to the current Cloud project with the appropriate scope for the requested feed. Note that domain-wide delegation of authority is not currently supported for this purpose. If the request has the appropriate scope, but no grant exists, a Request Errors is returned. * another access error is encountered. * INVALID_ARGUMENT
if: * no cloudPubsubTopic
is specified, or the specified cloudPubsubTopic
is not valid; or * no feed
is specified, or the specified feed
is not valid. * NOT_FOUND
if: * the specified feed
cannot be located, or the requesting user does not have permission to determine whether or not it exists; or * the specified cloudPubsubTopic
cannot be located, or Classroom has not been granted permission to publish to it.
§Arguments
request
- No description provided.
Sourcepub fn delete(&self, registration_id: &str) -> RegistrationDeleteCall<'a, C>
pub fn delete(&self, registration_id: &str) -> RegistrationDeleteCall<'a, C>
Create a builder to help you perform the following task:
Deletes a Registration
, causing Classroom to stop sending notifications for that Registration
.
§Arguments
registrationId
- Theregistration_id
of theRegistration
to be deleted.
Trait Implementations§
impl<'a, C> MethodsBuilder for RegistrationMethods<'a, C>
Auto Trait Implementations§
impl<'a, C> Freeze for RegistrationMethods<'a, C>
impl<'a, C> !RefUnwindSafe for RegistrationMethods<'a, C>
impl<'a, C> Send for RegistrationMethods<'a, C>where
C: Sync,
impl<'a, C> Sync for RegistrationMethods<'a, C>where
C: Sync,
impl<'a, C> Unpin for RegistrationMethods<'a, C>
impl<'a, C> !UnwindSafe for RegistrationMethods<'a, C>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more