pub struct IdentityCheckResponse {
pub verified: bool,
pub subject: Option<String>,
pub loa: Option<u8>,
pub expires_at: Option<DateTime<Utc>>,
pub signature: Option<String>,
pub verify_url: Option<String>,
pub challenge_id: Option<String>,
pub provider: String,
}Fields§
§verified: bool§subject: Option<String>§loa: Option<u8>§expires_at: Option<DateTime<Utc>>§signature: Option<String>§verify_url: Option<String>§challenge_id: Option<String>§provider: StringTrait Implementations§
Source§impl Clone for IdentityCheckResponse
impl Clone for IdentityCheckResponse
Source§fn clone(&self) -> IdentityCheckResponse
fn clone(&self) -> IdentityCheckResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 IdentityCheckResponse
impl Debug for IdentityCheckResponse
Source§impl<'de> Deserialize<'de> for IdentityCheckResponse
impl<'de> Deserialize<'de> for IdentityCheckResponse
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 IdentityCheckResponse
impl RefUnwindSafe for IdentityCheckResponse
impl Send for IdentityCheckResponse
impl Sync for IdentityCheckResponse
impl Unpin for IdentityCheckResponse
impl UnsafeUnpin for IdentityCheckResponse
impl UnwindSafe for IdentityCheckResponse
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