pub struct ContinueWithAuthBuilder { /* private fields */ }Implementations§
Source§impl ContinueWithAuthBuilder
impl ContinueWithAuthBuilder
pub fn request(self, request: impl Into<Request>) -> Self
pub fn continue_with_auth_credentials_continue_with_auth_no_credentials_union( self, continue_with_auth_credentials_continue_with_auth_no_credentials_union: impl Into<ContinueWithAuthCredentialsContinueWithAuthNoCredentialsUnion>, ) -> Self
pub fn build(self) -> Result<ContinueWithAuth, String>
Trait Implementations§
Source§impl Clone for ContinueWithAuthBuilder
impl Clone for ContinueWithAuthBuilder
Source§fn clone(&self) -> ContinueWithAuthBuilder
fn clone(&self) -> ContinueWithAuthBuilder
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 Default for ContinueWithAuthBuilder
impl Default for ContinueWithAuthBuilder
Source§fn default() -> ContinueWithAuthBuilder
fn default() -> ContinueWithAuthBuilder
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ContinueWithAuthBuilder
impl RefUnwindSafe for ContinueWithAuthBuilder
impl Send for ContinueWithAuthBuilder
impl Sync for ContinueWithAuthBuilder
impl Unpin for ContinueWithAuthBuilder
impl UnsafeUnpin for ContinueWithAuthBuilder
impl UnwindSafe for ContinueWithAuthBuilder
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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>
Converts
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>
Converts
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