pub struct AuthChallengeResponse {
pub response: AuthChallengeResponseResponse,
pub username: Option<String>,
pub password: Option<String>,
}Expand description
Response to an AuthChallenge. AuthChallengeResponse
Fields§
§response: AuthChallengeResponseResponseThe 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>) -> Self
Source§impl AuthChallengeResponse
impl AuthChallengeResponse
pub fn builder() -> AuthChallengeResponseBuilder
Source§impl AuthChallengeResponse
impl AuthChallengeResponse
pub const IDENTIFIER: &'static str = "Network.AuthChallengeResponse"
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
Source§impl PartialEq for AuthChallengeResponse
impl PartialEq for AuthChallengeResponse
Source§impl Serialize for AuthChallengeResponse
impl Serialize for AuthChallengeResponse
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