pub struct AuthReport {
    pub identity_token: Option<String>,
    pub status: Option<String>,
}Available on crate feature 
v5 only.Expand description
AuthReport describes the response for authentication check
Fields§
§identity_token: Option<String>§status: Option<String>Trait Implementations§
Source§impl Debug for AuthReport
 
impl Debug for AuthReport
Source§impl Default for AuthReport
 
impl Default for AuthReport
Source§fn default() -> AuthReport
 
fn default() -> AuthReport
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AuthReport
 
impl<'de> Deserialize<'de> for AuthReport
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 AuthReport
impl RefUnwindSafe for AuthReport
impl Send for AuthReport
impl Sync for AuthReport
impl Unpin for AuthReport
impl UnwindSafe for AuthReport
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