Struct chrome_remote_interface_model::fetch::ContinueWithAuthCommand[][src]

pub struct ContinueWithAuthCommand { /* fields omitted */ }
This is supported on crate features Fetch and Network and IO and Page only.

Continues a request supplying authChallengeResponse following authRequired event.

Implementations

impl ContinueWithAuthCommand[src]

pub fn new(
    request_id: RequestId,
    auth_challenge_response: AuthChallengeResponse
) -> Self
[src]

pub fn request_id(&self) -> &RequestId[src]

An id the client received in authRequired event.

pub fn auth_challenge_response(&self) -> &AuthChallengeResponse[src]

Response to with an authChallenge.

Trait Implementations

impl Clone for ContinueWithAuthCommand[src]

impl Command for ContinueWithAuthCommand[src]

type Return = ContinueWithAuthReturn

Return type.

impl Debug for ContinueWithAuthCommand[src]

impl<'de> Deserialize<'de> for ContinueWithAuthCommand[src]

impl Serialize for ContinueWithAuthCommand[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.