pub enum ProcessorVoltage {
CurrentVolts(f32),
SupportedVolts(ProcessorSupportedVoltages),
}
Expand description
§Processor Voltage
Variants§
CurrentVolts(f32)
Current Processor Voltage
SupportedVolts(ProcessorSupportedVoltages)
Processor Supported Voltages
Trait Implementations§
Source§impl Debug for ProcessorVoltage
impl Debug for ProcessorVoltage
Source§impl From<u8> for ProcessorVoltage
impl From<u8> for ProcessorVoltage
Auto Trait Implementations§
impl Freeze for ProcessorVoltage
impl RefUnwindSafe for ProcessorVoltage
impl Send for ProcessorVoltage
impl Sync for ProcessorVoltage
impl Unpin for ProcessorVoltage
impl UnwindSafe for ProcessorVoltage
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