[][src]Enum ur20::ModuleCategory

pub enum ModuleCategory {
    DI,
    DO,
    AI,
    AO,
    CNT,
    PWM,
    RTD,
    TC,
    COM,
    RO,
    PF,
}

Describes the general class of a module.

Variants

DI

Digital input modules

DO

Digital output modules

AI

Analog input modules

AO

Analog output modules

CNT

Counter modules

PWM

Pulse-width modulation modules

RTD

Resistance temperature detector modules

TC

Thermo couple modules

COM

Communication modules

RO

Relay output modules

PF

Power feed modules

Trait Implementations

impl Clone for ModuleCategory[src]

impl Debug for ModuleCategory[src]

impl Eq for ModuleCategory[src]

impl FromStr for ModuleCategory[src]

type Err = Error

The associated error which can be returned from parsing.

impl Hash for ModuleCategory[src]

impl Into<ModuleCategory> for ModuleType[src]

impl PartialEq<ModuleCategory> for ModuleCategory[src]

impl StructuralEq for ModuleCategory[src]

impl StructuralPartialEq for ModuleCategory[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.