#[non_exhaustive]pub struct FetchAccessTokenRequest {
pub account_connector: String,
/* private fields */
}Expand description
Message for fetching an OAuth access token.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.account_connector: StringRequired. The resource name of the AccountConnector in the format
projects/*/locations/*/accountConnectors/*.
Implementations§
Source§impl FetchAccessTokenRequest
impl FetchAccessTokenRequest
pub fn new() -> Self
Sourcepub fn set_account_connector<T: Into<String>>(self, v: T) -> Self
pub fn set_account_connector<T: Into<String>>(self, v: T) -> Self
Sets the value of account_connector.
Trait Implementations§
Source§impl Clone for FetchAccessTokenRequest
impl Clone for FetchAccessTokenRequest
Source§fn clone(&self) -> FetchAccessTokenRequest
fn clone(&self) -> FetchAccessTokenRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for FetchAccessTokenRequest
impl Debug for FetchAccessTokenRequest
Source§impl Default for FetchAccessTokenRequest
impl Default for FetchAccessTokenRequest
Source§fn default() -> FetchAccessTokenRequest
fn default() -> FetchAccessTokenRequest
Returns the “default value” for a type. Read more
Source§impl Message for FetchAccessTokenRequest
impl Message for FetchAccessTokenRequest
Source§impl PartialEq for FetchAccessTokenRequest
impl PartialEq for FetchAccessTokenRequest
impl StructuralPartialEq for FetchAccessTokenRequest
Auto Trait Implementations§
impl Freeze for FetchAccessTokenRequest
impl RefUnwindSafe for FetchAccessTokenRequest
impl Send for FetchAccessTokenRequest
impl Sync for FetchAccessTokenRequest
impl Unpin for FetchAccessTokenRequest
impl UnwindSafe for FetchAccessTokenRequest
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
Mutably borrows from an owned value. Read more