pub struct BaseSpeedPrioritySettings {
pub base_speed_m_hz: Option<i64>,
pub core_count: Option<i64>,
pub core_i_ds: Option<Vec<i64>>,
}Expand description
The clock speed for a set of cores.
Fields§
§base_speed_m_hz: Option<i64>The clock speed to configure the set of cores in MHz.
core_count: Option<i64>The number of cores to configure with a specified speed.
core_i_ds: Option<Vec<i64>>The identifier of the cores to configure with the specified speed.
Trait Implementations§
Source§impl Clone for BaseSpeedPrioritySettings
impl Clone for BaseSpeedPrioritySettings
Source§fn clone(&self) -> BaseSpeedPrioritySettings
fn clone(&self) -> BaseSpeedPrioritySettings
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BaseSpeedPrioritySettings
impl Debug for BaseSpeedPrioritySettings
Source§impl Default for BaseSpeedPrioritySettings
impl Default for BaseSpeedPrioritySettings
Source§impl<'de> Deserialize<'de> for BaseSpeedPrioritySettings
impl<'de> Deserialize<'de> for BaseSpeedPrioritySettings
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 BaseSpeedPrioritySettings
impl Metadata<'static> for BaseSpeedPrioritySettings
Source§const JSON_SCHEMA: &'static str = "OperatingConfig.v1_0_2.json"
const JSON_SCHEMA: &'static str = "OperatingConfig.v1_0_2.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 BaseSpeedPrioritySettings
impl RefUnwindSafe for BaseSpeedPrioritySettings
impl Send for BaseSpeedPrioritySettings
impl Sync for BaseSpeedPrioritySettings
impl Unpin for BaseSpeedPrioritySettings
impl UnsafeUnpin for BaseSpeedPrioritySettings
impl UnwindSafe for BaseSpeedPrioritySettings
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