pub struct ContinueWithAuthBuilder { /* private fields */ }Expand description
Builder for ContinueWithAuth.
Implementations§
Source§impl ContinueWithAuthBuilder
impl ContinueWithAuthBuilder
Sourcepub fn request_id<VALUE: Into<RequestId>>(&mut self, value: VALUE) -> &mut Self
pub fn request_id<VALUE: Into<RequestId>>(&mut self, value: VALUE) -> &mut Self
An id the client received in authRequired event.
Sourcepub fn auth_challenge_response<VALUE: Into<AuthChallengeResponse>>(
&mut self,
value: VALUE,
) -> &mut Self
pub fn auth_challenge_response<VALUE: Into<AuthChallengeResponse>>( &mut self, value: VALUE, ) -> &mut Self
Response to with an authChallenge.
Sourcepub fn build(&self) -> Result<ContinueWithAuth, ContinueWithAuthBuilderError>
pub fn build(&self) -> Result<ContinueWithAuth, ContinueWithAuthBuilderError>
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 moreAuto 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