Struct sysctl::Temperature
source · pub struct Temperature { /* private fields */ }Expand description
A custom type for temperature sysctls.
Example
extern crate sysctl;
#[cfg(not(target_os = "macos"))]
fn main() {
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
Trait Implementations
sourceimpl Clone for Temperature
impl Clone for Temperature
sourcefn clone(&self) -> Temperature
fn clone(&self) -> Temperature
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for Temperature
impl Debug for Temperature
sourceimpl PartialEq<Temperature> for Temperature
impl PartialEq<Temperature> for Temperature
sourcefn eq(&self, other: &Temperature) -> bool
fn eq(&self, other: &Temperature) -> bool
sourceimpl PartialOrd<Temperature> for Temperature
impl PartialOrd<Temperature> for Temperature
sourcefn partial_cmp(&self, other: &Temperature) -> Option<Ordering>
fn partial_cmp(&self, other: &Temperature) -> Option<Ordering>
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moreimpl Copy for Temperature
impl StructuralPartialEq for Temperature
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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more