Struct thermocouple::prelude::Celsius[][src]

pub struct Celsius(pub FP);

Unit of thermodynamic temperature

Trait Implementations

impl Add<Celsius> for Celsius[src]

type Output = Celsius

The resulting type after applying the + operator.

impl Clone for Celsius[src]

impl Copy for Celsius[src]

impl Debug for Celsius[src]

impl Display for Celsius[src]

impl From<Celsius> for Kelvin[src]

impl From<Celsius> for Fahrenheit[src]

impl From<Celsius> for Rankine[src]

impl From<Celsius> for Reaumur[src]

impl From<Fahrenheit> for Celsius[src]

impl From<Kelvin> for Celsius[src]

impl From<Rankine> for Celsius[src]

impl From<Reaumur> for Celsius[src]

impl PartialEq<Celsius> for Celsius[src]

impl PartialOrd<Celsius> for Celsius[src]

impl StructuralPartialEq for Celsius[src]

impl Sub<Celsius> for Celsius[src]

type Output = Celsius

The resulting type after applying the - operator.

impl ThermocoupleCore<Celsius> for KType[src]

fn sense_temperature(&self, voltage: Millivolts) -> Celsius[src]

Return the thermocouple temperature for a given thermoelectric potential.

fn sense_voltage(&self, temperature: Celsius) -> Millivolts[src]

Return the thermoelectric potential for a given thermocouple temperature.

impl ThermocoupleCore<Celsius> for BType[src]

fn sense_temperature(&self, voltage: Millivolts) -> Celsius[src]

Return the thermocouple temperature for a given thermoelectric potential.

fn sense_voltage(&self, temperature: Celsius) -> Millivolts[src]

Return the thermoelectric potential for a given thermocouple temperature.

impl ThermocoupleCore<Celsius> for EType[src]

fn sense_temperature(&self, voltage: Millivolts) -> Celsius[src]

Return the thermocouple temperature for a given thermoelectric potential.

fn sense_voltage(&self, temperature: Celsius) -> Millivolts[src]

Return the thermoelectric potential for a given thermocouple temperature.

impl ThermocoupleCore<Celsius> for JType[src]

fn sense_temperature(&self, voltage: Millivolts) -> Celsius[src]

Return the thermocouple temperature for a given thermoelectric potential.

fn sense_voltage(&self, temperature: Celsius) -> Millivolts[src]

Return the thermoelectric potential for a given thermocouple temperature.

impl ThermocoupleCore<Celsius> for NType[src]

fn sense_temperature(&self, voltage: Millivolts) -> Celsius[src]

Return the thermocouple temperature for a given thermoelectric potential.

fn sense_voltage(&self, temperature: Celsius) -> Millivolts[src]

Return the thermoelectric potential for a given thermocouple temperature.

impl ThermocoupleCore<Celsius> for RType[src]

fn sense_temperature(&self, voltage: Millivolts) -> Celsius[src]

Return the thermocouple temperature for a given thermoelectric potential.

fn sense_voltage(&self, temperature: Celsius) -> Millivolts[src]

Return the thermoelectric potential for a given thermocouple temperature.

impl ThermocoupleCore<Celsius> for SType[src]

fn sense_temperature(&self, voltage: Millivolts) -> Celsius[src]

Return the thermocouple temperature for a given thermoelectric potential.

fn sense_voltage(&self, temperature: Celsius) -> Millivolts[src]

Return the thermoelectric potential for a given thermocouple temperature.

impl ThermocoupleCore<Celsius> for TType[src]

fn sense_temperature(&self, voltage: Millivolts) -> Celsius[src]

Return the thermocouple temperature for a given thermoelectric potential.

fn sense_voltage(&self, temperature: Celsius) -> Millivolts[src]

Return the thermoelectric potential for a given thermocouple temperature.

Auto Trait Implementations

impl Send for Celsius

impl Sync for Celsius

impl Unpin for Celsius

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, 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.