pub struct AuthenticateParams {
pub method: AuthMethod,
pub credentials: AuthCredentials,
}Expand description
Parameters for authenticate method
Fields§
§method: AuthMethodAuthentication method being used
credentials: AuthCredentialsAuthentication credentials
Trait Implementations§
Source§impl Clone for AuthenticateParams
impl Clone for AuthenticateParams
Source§fn clone(&self) -> AuthenticateParams
fn clone(&self) -> AuthenticateParams
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 AuthenticateParams
impl Debug for AuthenticateParams
Source§impl<'de> Deserialize<'de> for AuthenticateParams
impl<'de> Deserialize<'de> for AuthenticateParams
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 AuthenticateParams
impl RefUnwindSafe for AuthenticateParams
impl Send for AuthenticateParams
impl Sync for AuthenticateParams
impl Unpin for AuthenticateParams
impl UnwindSafe for AuthenticateParams
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