pub struct AuthChallengeResponse {
pub response: AuthChallengeResponseResponse,
pub username: Option<String>,
pub password: Option<String>,
}
Expand description
Response to an AuthChallenge. AuthChallengeResponse
Fields§
§response: AuthChallengeResponseResponse
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.
username: Option<String>
The username to provide, possibly empty. Should only be set if response is ProvideCredentials.
password: Option<String>
The password to provide, possibly empty. Should only be set if response is ProvideCredentials.
Implementations§
Source§impl AuthChallengeResponse
impl AuthChallengeResponse
pub fn new( response: impl Into<AuthChallengeResponseResponse>, ) -> AuthChallengeResponse
Source§impl AuthChallengeResponse
impl AuthChallengeResponse
pub fn builder() -> AuthChallengeResponseBuilder
Source§impl AuthChallengeResponse
impl AuthChallengeResponse
pub const IDENTIFIER: &'static str = "Fetch.AuthChallengeResponse"
Trait Implementations§
Source§impl Clone for AuthChallengeResponse
impl Clone for AuthChallengeResponse
Source§fn clone(&self) -> AuthChallengeResponse
fn clone(&self) -> AuthChallengeResponse
Returns a copy 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 Debug for AuthChallengeResponse
impl Debug for AuthChallengeResponse
Source§impl<'de> Deserialize<'de> for AuthChallengeResponse
impl<'de> Deserialize<'de> for AuthChallengeResponse
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<AuthChallengeResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<AuthChallengeResponse, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AuthChallengeResponse
impl PartialEq for AuthChallengeResponse
Source§impl Serialize for AuthChallengeResponse
impl Serialize for AuthChallengeResponse
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for AuthChallengeResponse
Auto Trait Implementations§
impl Freeze for AuthChallengeResponse
impl RefUnwindSafe for AuthChallengeResponse
impl Send for AuthChallengeResponse
impl Sync for AuthChallengeResponse
impl Unpin for AuthChallengeResponse
impl UnwindSafe for AuthChallengeResponse
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more