[][src]Struct macsmc::OtherTemperatures

pub struct OtherTemperatures {
    pub memory_bank_proximity: Celsius,
    pub mainboard_proximity: Celsius,
    pub platform_controller_hub_die: Celsius,
    pub airport: Celsius,
    pub airflow_left: Celsius,
    pub airflow_right: Celsius,
    pub thunderbolt_left: Celsius,
    pub thunderbolt_right: Celsius,
    pub heatpipe_1: Celsius,
    pub heatpipe_2: Celsius,
    pub palm_rest_1: Celsius,
    pub palm_rest_2: Celsius,
}

Various other CPU temperatures. This list is not exhaustive nor are the sensors commonly available. If a sensor is missing, the value is 0.0

Fields

memory_bank_proximity: Celsius

Memory Bank

mainboard_proximity: Celsius

Mainboard

platform_controller_hub_die: Celsius

Platform Controller Hub

airport: Celsius

Airport Proximity

airflow_left: Celsius

Left Airflow

airflow_right: Celsius

Right Airflow

thunderbolt_left: Celsius

Left Thunderbolt ports

thunderbolt_right: Celsius

Right Thunderbolt ports

heatpipe_1: Celsius

Heatpipe or Heatsink Sensor 1

heatpipe_2: Celsius

Heatpipe or Heatsink Sensor 2

palm_rest_1: Celsius

Palm rest Sensor 1

palm_rest_2: Celsius

Palm rest Sensor 2

Trait Implementations

impl Clone for OtherTemperatures[src]

impl Copy for OtherTemperatures[src]

impl Debug for OtherTemperatures[src]

impl Default for OtherTemperatures[src]

impl PartialEq<OtherTemperatures> for OtherTemperatures[src]

impl StructuralPartialEq for OtherTemperatures[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.