Enum xio_common::DataValue [] [src]

pub enum DataValue {
    Boolean(bool),
    Int8(i8),
    Int16(i16),
    Int32(i32),
    Int64(i64),
    UInt8(u8),
    UInt16(u16),
    UInt32(u32),
    UInt64(u64),
    ParameterMask(u64),
}

Variants

Trait Implementations

impl Clone for DataValue
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for DataValue
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for DataValue
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl From<bool> for DataValue
[src]

[src]

Performs the conversion.

impl From<i8> for DataValue
[src]

[src]

Performs the conversion.

impl From<i16> for DataValue
[src]

[src]

Performs the conversion.

impl From<i32> for DataValue
[src]

[src]

Performs the conversion.

impl From<i64> for DataValue
[src]

[src]

Performs the conversion.

impl From<u8> for DataValue
[src]

[src]

Performs the conversion.

impl From<u16> for DataValue
[src]

[src]

Performs the conversion.

impl From<u32> for DataValue
[src]

[src]

Performs the conversion.

impl From<u64> for DataValue
[src]

[src]

Performs the conversion.

impl PreliminaryTryFrom<(u8, u64)> for DataValue
[src]

[src]

impl From<DataValue> for ParameterValue
[src]

[src]

Performs the conversion.

Auto Trait Implementations

impl Send for DataValue

impl Sync for DataValue