pub struct SecurityStateInfo {
pub master_passphrase_attempt_count_reached: Option<bool>,
pub user_passphrase_attempt_count_reached: Option<bool>,
}
Expand description
The security states of a memory device.
Fields§
§master_passphrase_attempt_count_reached: Option<bool>
An indication of whether an incorrect master passphrase attempt count has been reached.
user_passphrase_attempt_count_reached: Option<bool>
An indication of whether an incorrect user passphrase attempt count has been reached.
Trait Implementations§
Source§impl Clone for SecurityStateInfo
impl Clone for SecurityStateInfo
Source§fn clone(&self) -> SecurityStateInfo
fn clone(&self) -> SecurityStateInfo
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for SecurityStateInfo
impl Debug for SecurityStateInfo
Source§impl Default for SecurityStateInfo
impl Default 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
Source§impl Metadata<'static> for SecurityStateInfo
impl Metadata<'static> for SecurityStateInfo
Source§const JSON_SCHEMA: &'static str = "Memory.v1_17_1.json"
const JSON_SCHEMA: &'static str = "Memory.v1_17_1.json"
Name of the json-schema file that describes the entity that implements this trait. Should
be only the file name, so that it can be resolved relative to the URL of the redfish
service, or the public Redfish schema index.
Auto Trait Implementations§
impl Freeze for SecurityStateInfo
impl RefUnwindSafe for SecurityStateInfo
impl Send for SecurityStateInfo
impl Sync for SecurityStateInfo
impl Unpin 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