pub struct SecurityStateInfo {
pub user_passphrase_attempt_count_reached: Option<Option<Boolean>>,
pub master_passphrase_attempt_count_reached: Option<Option<Boolean>>,
}Expand description
The security states of a memory device.
This type shall contain the security states of a memory device.
Fields§
§user_passphrase_attempt_count_reached: Option<Option<Boolean>>An indication of whether an incorrect user passphrase attempt count has been reached.
This property shall indicate whether an incorrect user passphrase attempt count has been reached.
master_passphrase_attempt_count_reached: Option<Option<Boolean>>An indication of whether an incorrect master passphrase attempt count has been reached.
This property shall indicate whether an incorrect master passphrase attempt count has been reached.
Trait Implementations§
Source§impl Debug for SecurityStateInfo
impl Debug for SecurityStateInfo
Source§impl<'de> Deserialize<'de> for SecurityStateInfo
impl<'de> Deserialize<'de> for SecurityStateInfo
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
impl Send for SecurityStateInfo
SAFETY: All generated data types are Send
impl Sync for SecurityStateInfo
SAFETY: All generated data types are Sync
Auto Trait Implementations§
impl Freeze for SecurityStateInfo
impl RefUnwindSafe for SecurityStateInfo
impl Unpin for SecurityStateInfo
impl UnsafeUnpin for SecurityStateInfo
impl UnwindSafe for SecurityStateInfo
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