pub struct InterleaveSet {
pub memory: Option<IdRef>,
pub memory_level: Option<i64>,
pub offset_mi_b: Option<i64>,
pub region_id: Option<String>,
pub size_mi_b: Option<i64>,
}
Expand description
This an interleave set for a memory chunk.
Fields§
§memory: Option<IdRef>
§memory_level: Option<i64>
Level of the interleave set for multi-level tiered memory.
offset_mi_b: Option<i64>
Offset within the DIMM that corresponds to the start of this memory region, measured in mebibytes (MiB).
region_id: Option<String>
DIMM region identifier.
size_mi_b: Option<i64>
Size of this memory region measured in mebibytes (MiB).
Trait Implementations§
Source§impl Clone for InterleaveSet
impl Clone for InterleaveSet
Source§fn clone(&self) -> InterleaveSet
fn clone(&self) -> InterleaveSet
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 InterleaveSet
impl Debug for InterleaveSet
Source§impl Default for InterleaveSet
impl Default for InterleaveSet
Source§impl<'de> Deserialize<'de> for InterleaveSet
impl<'de> Deserialize<'de> for InterleaveSet
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 InterleaveSet
impl Metadata<'static> for InterleaveSet
Source§const JSON_SCHEMA: &'static str = "MemoryChunks.v1_5_0.json"
const JSON_SCHEMA: &'static str = "MemoryChunks.v1_5_0.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 InterleaveSet
impl RefUnwindSafe for InterleaveSet
impl Send for InterleaveSet
impl Sync for InterleaveSet
impl Unpin for InterleaveSet
impl UnwindSafe for InterleaveSet
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