pub struct RegionSet {
pub master_passphrase_enabled: Option<bool>,
pub memory_classification: Option<MemoryClassification>,
pub offset_mi_b: Option<i64>,
pub passphrase_enabled: Option<bool>,
pub passphrase_state: Option<bool>,
pub region_id: Option<String>,
pub size_mi_b: Option<i64>,
}
Expand description
Memory region information within a memory device.
Fields§
§master_passphrase_enabled: Option<bool>
An indication of whether the master passphrase is enabled for this region.
memory_classification: Option<MemoryClassification>
§offset_mi_b: Option<i64>
Offset within the memory that corresponds to the start of this memory region in mebibytes (MiB).
passphrase_enabled: Option<bool>
An indication of whether the passphrase is enabled for this region.
passphrase_state: Option<bool>
An indication of whether the state of the passphrase for this region is enabled.
region_id: Option<String>
Unique region ID representing a specific region within the memory device.
size_mi_b: Option<i64>
Size of this memory region in mebibytes (MiB).
Trait Implementations§
Source§impl<'de> Deserialize<'de> for RegionSet
impl<'de> Deserialize<'de> for RegionSet
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 RegionSet
impl Metadata<'static> for RegionSet
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 RegionSet
impl RefUnwindSafe for RegionSet
impl Send for RegionSet
impl Sync for RegionSet
impl Unpin for RegionSet
impl UnwindSafe for RegionSet
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