pub struct AuthenticateResult {
pub authenticated: bool,
pub session_token: Option<String>,
pub expires_at: Option<String>,
}Expand description
Result of authenticate method
Fields§
§authenticated: boolWhether authentication succeeded
session_token: Option<String>Session token (if applicable)
expires_at: Option<String>Token expiration (ISO 8601)
Trait Implementations§
Source§impl Clone for AuthenticateResult
impl Clone for AuthenticateResult
Source§fn clone(&self) -> AuthenticateResult
fn clone(&self) -> AuthenticateResult
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 AuthenticateResult
impl Debug for AuthenticateResult
Source§impl<'de> Deserialize<'de> for AuthenticateResult
impl<'de> Deserialize<'de> for AuthenticateResult
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 AuthenticateResult
impl RefUnwindSafe for AuthenticateResult
impl Send for AuthenticateResult
impl Sync for AuthenticateResult
impl Unpin for AuthenticateResult
impl UnwindSafe for AuthenticateResult
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