pub struct ContinueWithAuthParams {
pub request_id: RequestId,
pub auth_challenge_response: AuthChallengeResponse,
}Expand description
Continues a request supplying authChallengeResponse following authRequired event. continueWithAuth
Fields§
§request_id: RequestIdAn id the client received in authRequired event.
auth_challenge_response: AuthChallengeResponseResponse to with an authChallenge.
Implementations§
Source§impl ContinueWithAuthParams
impl ContinueWithAuthParams
pub fn builder() -> ContinueWithAuthParamsBuilder
Source§impl ContinueWithAuthParams
impl ContinueWithAuthParams
pub const IDENTIFIER: &'static str = "Fetch.continueWithAuth"
Trait Implementations§
Source§impl Clone for ContinueWithAuthParams
impl Clone for ContinueWithAuthParams
Source§fn clone(&self) -> ContinueWithAuthParams
fn clone(&self) -> ContinueWithAuthParams
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 ContinueWithAuthParams
impl Command for ContinueWithAuthParams
Source§impl Debug for ContinueWithAuthParams
impl Debug for ContinueWithAuthParams
Source§impl<'de> Deserialize<'de> for ContinueWithAuthParams
impl<'de> Deserialize<'de> for ContinueWithAuthParams
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
Source§impl Method for ContinueWithAuthParams
impl Method for ContinueWithAuthParams
Source§fn identifier(&self) -> MethodId
fn identifier(&self) -> MethodId
The whole string identifier for this method like:
DOM.removeNodeSource§fn domain_name(&self) -> Cow<'static, str>
fn domain_name(&self) -> Cow<'static, str>
The name of the domain this method belongs to:
DOMSource§fn method_name(&self) -> Cow<'static, str>
fn method_name(&self) -> Cow<'static, str>
The standalone identifier of the method inside the domain:
removeNodeSource§impl MethodType for ContinueWithAuthParams
impl MethodType for ContinueWithAuthParams
Source§impl PartialEq for ContinueWithAuthParams
impl PartialEq for ContinueWithAuthParams
Source§impl Serialize for ContinueWithAuthParams
impl Serialize for ContinueWithAuthParams
impl StructuralPartialEq for ContinueWithAuthParams
Auto Trait Implementations§
impl Freeze for ContinueWithAuthParams
impl RefUnwindSafe for ContinueWithAuthParams
impl Send for ContinueWithAuthParams
impl Sync for ContinueWithAuthParams
impl Unpin for ContinueWithAuthParams
impl UnwindSafe for ContinueWithAuthParams
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