pub struct AuthChallengeResponse {
pub response: AuthChallengeResponseType,
pub username: Option<String>,
pub password: Option<String>,
}Expand description
Response to an AuthChallenge.
Fields§
§response: AuthChallengeResponseTypeThe decision on what to do in response to the authorization challenge.
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
Sourcepub fn default_response() -> Self
pub fn default_response() -> Self
Create a default response (defer to browser).
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
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