pub struct ThermalInfo {
pub controller: ThermalController,
pub unknown: u32,
pub temperature_range: Range<CelsiusShifted>,
pub default_temperature: CelsiusShifted,
pub default_flags: u32,
}Fields§
§controller: ThermalController§unknown: u32§temperature_range: Range<CelsiusShifted>§default_temperature: CelsiusShifted§default_flags: u32Trait Implementations§
Source§impl Clone for ThermalInfo
impl Clone for ThermalInfo
Source§fn clone(&self) -> ThermalInfo
fn clone(&self) -> ThermalInfo
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 ThermalInfo
impl Debug for ThermalInfo
impl Copy for ThermalInfo
Auto Trait Implementations§
impl Freeze for ThermalInfo
impl RefUnwindSafe for ThermalInfo
impl Send for ThermalInfo
impl Sync for ThermalInfo
impl Unpin for ThermalInfo
impl UnwindSafe for ThermalInfo
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