#[non_exhaustive]pub struct StartOAuthRequest {
pub account_connector: String,
/* private fields */
}Expand description
Message for starting an OAuth flow.
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 StartOAuthRequest
impl StartOAuthRequest
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.
§Example
ⓘ
let x = StartOAuthRequest::new().set_account_connector("example");Trait Implementations§
Source§impl Clone for StartOAuthRequest
impl Clone for StartOAuthRequest
Source§fn clone(&self) -> StartOAuthRequest
fn clone(&self) -> StartOAuthRequest
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 StartOAuthRequest
impl Debug for StartOAuthRequest
Source§impl Default for StartOAuthRequest
impl Default for StartOAuthRequest
Source§fn default() -> StartOAuthRequest
fn default() -> StartOAuthRequest
Returns the “default value” for a type. Read more
Source§impl Message for StartOAuthRequest
impl Message for StartOAuthRequest
Source§impl PartialEq for StartOAuthRequest
impl PartialEq for StartOAuthRequest
impl StructuralPartialEq for StartOAuthRequest
Auto Trait Implementations§
impl Freeze for StartOAuthRequest
impl RefUnwindSafe for StartOAuthRequest
impl Send for StartOAuthRequest
impl Sync for StartOAuthRequest
impl Unpin for StartOAuthRequest
impl UnsafeUnpin for StartOAuthRequest
impl UnwindSafe for StartOAuthRequest
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