Struct thermocouple::Kelvin[][src]

pub struct Kelvin(pub FP);

Unit of thermodynamic temperature, defined as the fraction of 1/273.16 of the thermodynamic temperature of the triple point of water

Trait Implementations

impl Add<Kelvin> for Kelvin[src]

type Output = Kelvin

The resulting type after applying the + operator.

impl Clone for Kelvin[src]

impl Copy for Kelvin[src]

impl Debug for Kelvin[src]

impl Display for Kelvin[src]

impl From<Celsius> for Kelvin[src]

impl From<Kelvin> for Celsius[src]

impl PartialEq<Kelvin> for Kelvin[src]

impl PartialOrd<Kelvin> for Kelvin[src]

impl StructuralPartialEq for Kelvin[src]

impl Sub<Kelvin> for Kelvin[src]

type Output = Kelvin

The resulting type after applying the - operator.

impl ThermocoupleCore<Kelvin> for KType[src]

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

Return the thermocouple temperature for a given thermoelectric potential.

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

Return the thermoelectric potential for a given thermocouple temperature.

impl ThermocoupleCore<Kelvin> for BType[src]

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

Return the thermocouple temperature for a given thermoelectric potential.

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

Return the thermoelectric potential for a given thermocouple temperature.

impl ThermocoupleCore<Kelvin> for EType[src]

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

Return the thermocouple temperature for a given thermoelectric potential.

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

Return the thermoelectric potential for a given thermocouple temperature.

impl ThermocoupleCore<Kelvin> for JType[src]

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

Return the thermocouple temperature for a given thermoelectric potential.

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

Return the thermoelectric potential for a given thermocouple temperature.

impl ThermocoupleCore<Kelvin> for NType[src]

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

Return the thermocouple temperature for a given thermoelectric potential.

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

Return the thermoelectric potential for a given thermocouple temperature.

impl ThermocoupleCore<Kelvin> for RType[src]

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

Return the thermocouple temperature for a given thermoelectric potential.

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

Return the thermoelectric potential for a given thermocouple temperature.

impl ThermocoupleCore<Kelvin> for SType[src]

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

Return the thermocouple temperature for a given thermoelectric potential.

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

Return the thermoelectric potential for a given thermocouple temperature.

impl ThermocoupleCore<Kelvin> for TType[src]

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

Return the thermocouple temperature for a given thermoelectric potential.

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

Return the thermoelectric potential for a given thermocouple temperature.

Auto Trait Implementations

impl Send for Kelvin

impl Sync for Kelvin

impl Unpin for Kelvin

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.