[][src]Enum ur20::RtdRange

pub enum RtdRange {
    PT100,
    PT200,
    PT500,
    PT1000,
    NI100,
    NI120,
    NI200,
    NI500,
    NI1000,
    Cu10,
    R40,
    R80,
    R150,
    R300,
    R500,
    R1000,
    R2000,
    R4000,
    Disabled,
}

Resistor value range.

Variants

PT100

-200 ... 850 Degree Celsius

PT200

-200 ... 850 Degree Celsius

PT500

-200 ... 850 Degree Celsius

PT1000

-200 ... 850 Degree Celsius

NI100

-60 ... 250 Degree Celsius

NI120

-80 ... 260 Degree Celsius

NI200

-60 ... 250 Degree Celsius

NI500

-60 ... 250 Degree Celsius

NI1000

-60 ... 250 Degree Celsius

Cu10

-100 ... 260 Degree Celsius

R40

Resistance 40 Ω

R80

Resistance 80 Ω

R150

Resistance 150 Ω

R300

Resistance 300 Ω

R500

Resistance 500 Ω

R1000

Resistance 1000 Ω

R2000

Resistance 2000 Ω

R4000

Resistance 4000 Ω

Disabled

Disabled

Trait Implementations

impl Clone for RtdRange[src]

impl Debug for RtdRange[src]

impl Eq for RtdRange[src]

impl FromPrimitive for RtdRange[src]

impl PartialEq<RtdRange> for RtdRange[src]

impl StructuralEq for RtdRange[src]

impl StructuralPartialEq for RtdRange[src]

impl ToPrimitive for RtdRange[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.