Struct chrome_remote_interface_model::fetch::AuthChallengeResponse[][src]

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

Response to an AuthChallenge.

Implementations

impl AuthChallengeResponse[src]

pub fn new(
    response: AuthChallengeResponseResponse,
    username: Option<String>,
    password: Option<String>
) -> Self
[src]

pub fn response(&self) -> &AuthChallengeResponseResponse[src]

The decision on what to do in response to the authorization challenge. Default means deferring to the default behavior of the net stack, which will likely either the Cancel authentication or display a popup dialog box.

pub fn username(&self) -> Option<&String>[src]

The username to provide, possibly empty. Should only be set if response is ProvideCredentials.

pub fn password(&self) -> Option<&String>[src]

The password to provide, possibly empty. Should only be set if response is ProvideCredentials.

Trait Implementations

impl Clone for AuthChallengeResponse[src]

impl Debug for AuthChallengeResponse[src]

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

impl Serialize for AuthChallengeResponse[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.