pub struct AuthReport {
pub identity_token: Option<String>,
pub status: Option<String>,
}
Expand description
AuthReport describes the response for authentication check
Fields§
§identity_token: Option<String>
§status: Option<String>
Trait Implementations§
Source§impl Clone for AuthReport
impl Clone for AuthReport
Source§fn clone(&self) -> AuthReport
fn clone(&self) -> AuthReport
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AuthReport
impl Debug for AuthReport
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
Source§impl PartialEq for AuthReport
impl PartialEq for AuthReport
Source§impl Serialize for AuthReport
impl Serialize for AuthReport
impl StructuralPartialEq for AuthReport
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