[−][src]Struct sysctl::Temperature
A custom type for temperature sysctls.
Example
let ctl = sysctl::Ctl::new("dev.cpu.0.temperature").unwrap(); if let Ok(sysctl::CtlValue::Temperature(val)) = ctl.value() { println!("Temperature: {:.2}K, {:.2}F, {:.2}C", val.kelvin(), val.fahrenheit(), val.celsius()); } else { panic!("Error, not a temperature ctl!") }
Not available on MacOS
Implementations
impl Temperature
[src]
pub fn kelvin(&self) -> f32
[src]
pub fn celsius(&self) -> f32
[src]
pub fn fahrenheit(&self) -> f32
[src]
Trait Implementations
impl Clone for Temperature
[src]
fn clone(&self) -> Temperature
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Copy for Temperature
[src]
impl Debug for Temperature
[src]
impl PartialEq<Temperature> for Temperature
[src]
fn eq(&self, other: &Temperature) -> bool
[src]
fn ne(&self, other: &Temperature) -> bool
[src]
impl PartialOrd<Temperature> for Temperature
[src]
fn partial_cmp(&self, other: &Temperature) -> Option<Ordering>
[src]
fn lt(&self, other: &Temperature) -> bool
[src]
fn le(&self, other: &Temperature) -> bool
[src]
fn gt(&self, other: &Temperature) -> bool
[src]
fn ge(&self, other: &Temperature) -> bool
[src]
impl StructuralPartialEq for Temperature
[src]
Auto Trait Implementations
impl RefUnwindSafe for Temperature
impl Send for Temperature
impl Sync for Temperature
impl Unpin for Temperature
impl UnwindSafe for Temperature
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,