pub struct ProcessorSummary {
pub core_count: Option<i64>,
pub count: Option<i64>,
pub logical_processor_count: Option<i64>,
pub metrics: Option<IdRef>,
pub model: Option<String>,
pub status: Option<Status>,
pub threading_enabled: Option<bool>,
}
Expand description
The central processors of the system in general detail.
Fields§
§core_count: Option<i64>
The number of processor cores in the system.
count: Option<i64>
The number of physical processors in the system.
logical_processor_count: Option<i64>
The number of logical processors in the system.
metrics: Option<IdRef>
§model: Option<String>
The processor model for the primary or majority of processors in this system.
status: Option<Status>
§threading_enabled: Option<bool>
An indication of whether threading is enabled on all processors in this system.
Trait Implementations§
Source§impl Clone for ProcessorSummary
impl Clone for ProcessorSummary
Source§fn clone(&self) -> ProcessorSummary
fn clone(&self) -> ProcessorSummary
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 ProcessorSummary
impl Debug for ProcessorSummary
Source§impl Default for ProcessorSummary
impl Default for ProcessorSummary
Source§impl<'de> Deserialize<'de> for ProcessorSummary
impl<'de> Deserialize<'de> for ProcessorSummary
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 ProcessorSummary
impl Metadata<'static> for ProcessorSummary
Source§const JSON_SCHEMA: &'static str = "ComputerSystem.v1_20_1.json"
const JSON_SCHEMA: &'static str = "ComputerSystem.v1_20_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 ProcessorSummary
impl RefUnwindSafe for ProcessorSummary
impl Send for ProcessorSummary
impl Sync for ProcessorSummary
impl Unpin for ProcessorSummary
impl UnwindSafe for ProcessorSummary
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