pub struct Identity {
pub available_services: Option<Vec<String>>,
pub last_rejected: Option<LastRejected>,
pub service: Option<Service>,
pub status: Option<Status>,
pub supported_documents: Option<Vec<SupportedDocumentItem>>,
}
Expand description
POI authentication status details.
Fields§
§available_services: Option<Vec<String>>
Available services for the next POI attempt.\n
last_rejected: Option<LastRejected>
Details on the rejected POI attempt.\n
service: Option<Service>
Service used for the current POI status.\n
status: Option<Status>
Current POI status.\n
supported_documents: Option<Vec<SupportedDocumentItem>>
Supported documents.\n
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Identity
impl<'de> Deserialize<'de> for Identity
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 Identity
impl RefUnwindSafe for Identity
impl Send for Identity
impl Sync for Identity
impl Unpin for Identity
impl UnwindSafe for Identity
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