pub enum ThrottleCause {
PowerLimit,
ThermalLimit,
ClockLimit,
ManagementDetectedFault,
Unknown,
Oem,
UnsupportedValue,
}Variants§
PowerLimit
The cause of the processor being throttled is a power limit.
ThermalLimit
The cause of the processor being throttled is a thermal limit.
ClockLimit
The cause of the processor being throttled is a clock limit.
ManagementDetectedFault
The cause of the processor being throttled is a fault detected by management hardware or firmware.
Unknown
The cause of the processor being throttled is not known.
Oem
The cause of the processor being throttled is OEM-specific.
UnsupportedValue
Fallback value for values that are not supported by current version of Redfish schema.
Trait Implementations§
Source§impl Clone for ThrottleCause
impl Clone for ThrottleCause
Source§fn clone(&self) -> ThrottleCause
fn clone(&self) -> ThrottleCause
Returns a duplicate of the value. Read more
1.0.0 · 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 ThrottleCause
impl Debug for ThrottleCause
Source§impl<'de> Deserialize<'de> for ThrottleCause
impl<'de> Deserialize<'de> for ThrottleCause
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 PartialEq for ThrottleCause
impl PartialEq for ThrottleCause
Source§impl Serialize for ThrottleCause
impl Serialize for ThrottleCause
Source§impl ToSnakeCase for ThrottleCause
impl ToSnakeCase for ThrottleCause
Source§fn to_snake_case(&self) -> &'static str
fn to_snake_case(&self) -> &'static str
Convert this enum variant to a
snake_case stringimpl Copy for ThrottleCause
impl Eq for ThrottleCause
impl StructuralPartialEq for ThrottleCause
Auto Trait Implementations§
impl Freeze for ThrottleCause
impl RefUnwindSafe for ThrottleCause
impl Send for ThrottleCause
impl Sync for ThrottleCause
impl Unpin for ThrottleCause
impl UnsafeUnpin for ThrottleCause
impl UnwindSafe for ThrottleCause
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