pub struct AuthReport {
pub identity_token: Option<String>,
pub status: Option<String>,
}
Expand description
AuthReport : AuthReport describes the response for authentication check
Fields§
§identity_token: Option<String>
§status: Option<String>
Implementations§
Source§impl AuthReport
impl AuthReport
Sourcepub fn new() -> AuthReport
pub fn new() -> AuthReport
AuthReport describes the response for authentication check
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§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§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
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