pub enum ElemInfo {
    Iec60958(ElemInfoIec60958),
    Boolean(ElemInfoBoolean),
    Bytes(ElemInfoBytes),
    Integer(ElemInfoInteger),
    Integer64(ElemInfoInteger64),
    Enumerated(ElemInfoEnumerated),
}
Expand description

A set of enumerations for information of element.

Variants

Iec60958(ElemInfoIec60958)

For element with IEC 60958 data.

Boolean(ElemInfoBoolean)

For element with boolean values.

Bytes(ElemInfoBytes)

For element with unsigned 8 bit integer values.

Integer(ElemInfoInteger)

For element with signed 32 bit integer values.

Integer64(ElemInfoInteger64)

For element with signed 64 bit integer values.

Enumerated(ElemInfoEnumerated)

For element with enumerated index values.

Trait Implementations

Converts this type into a shared reference of the (usually inferred) input type.

Converts to this type from the input type.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.