pub struct PinSecurityDetails {
pub failed_attempts: Option<i32>,
pub locked_date: Option<String>,
pub locked_expiry_date: Option<String>,
pub last_lock_override_date: Option<String>,
}Expand description
PIN security details for an end-user.
Fields§
§failed_attempts: Option<i32>Number of failed PIN attempts since last successful authentication.
locked_date: Option<String>Date the PIN was locked.
locked_expiry_date: Option<String>Date the PIN lock expires.
last_lock_override_date: Option<String>Date of the last lock override by an admin.
Trait Implementations§
Source§impl Clone for PinSecurityDetails
impl Clone for PinSecurityDetails
Source§fn clone(&self) -> PinSecurityDetails
fn clone(&self) -> PinSecurityDetails
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 PinSecurityDetails
impl Debug for PinSecurityDetails
Source§impl Default for PinSecurityDetails
impl Default for PinSecurityDetails
Source§fn default() -> PinSecurityDetails
fn default() -> PinSecurityDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PinSecurityDetails
impl<'de> Deserialize<'de> for PinSecurityDetails
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 PinSecurityDetails
impl RefUnwindSafe for PinSecurityDetails
impl Send for PinSecurityDetails
impl Sync for PinSecurityDetails
impl Unpin for PinSecurityDetails
impl UnsafeUnpin for PinSecurityDetails
impl UnwindSafe for PinSecurityDetails
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