pub struct ContinueWithAuthCommand { /* private fields */ }Available on crate features
Fetch and Network and IO and Page only.Expand description
Continues a request supplying authChallengeResponse following authRequired event.
Implementations§
Source§impl ContinueWithAuthCommand
impl ContinueWithAuthCommand
pub fn new( request_id: RequestId, auth_challenge_response: AuthChallengeResponse, ) -> Self
Sourcepub fn request_id(&self) -> &RequestId
pub fn request_id(&self) -> &RequestId
An id the client received in authRequired event.
Sourcepub fn auth_challenge_response(&self) -> &AuthChallengeResponse
pub fn auth_challenge_response(&self) -> &AuthChallengeResponse
Response to with an authChallenge.
Trait Implementations§
Source§impl Clone for ContinueWithAuthCommand
impl Clone for ContinueWithAuthCommand
Source§fn clone(&self) -> ContinueWithAuthCommand
fn clone(&self) -> ContinueWithAuthCommand
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 Command for ContinueWithAuthCommand
impl Command for ContinueWithAuthCommand
Source§impl Debug for ContinueWithAuthCommand
impl Debug for ContinueWithAuthCommand
Source§impl<'de> Deserialize<'de> for ContinueWithAuthCommand
impl<'de> Deserialize<'de> for ContinueWithAuthCommand
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ContinueWithAuthCommand
impl RefUnwindSafe for ContinueWithAuthCommand
impl Send for ContinueWithAuthCommand
impl Sync for ContinueWithAuthCommand
impl Unpin for ContinueWithAuthCommand
impl UnwindSafe for ContinueWithAuthCommand
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