pub struct AuthChallengeResponse { /* private fields */ }Available on crate features
Fetch and Network and IO and Page only.Expand description
Response to an AuthChallenge.
Implementations§
Source§impl AuthChallengeResponse
impl AuthChallengeResponse
pub fn new( response: AuthChallengeResponseResponse, username: Option<String>, password: Option<String>, ) -> Self
Sourcepub fn response(&self) -> &AuthChallengeResponseResponse
pub fn response(&self) -> &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.
Trait Implementations§
Source§impl Clone for AuthChallengeResponse
impl Clone for AuthChallengeResponse
Source§fn clone(&self) -> AuthChallengeResponse
fn clone(&self) -> AuthChallengeResponse
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 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<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 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