Enum xio_base_datatypes::ParameterValue [] [src]

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

Variants

Trait Implementations

impl Clone for ParameterValue
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for ParameterValue
[src]

[src]

Formats the value using the given formatter. Read more

impl Eq for ParameterValue
[src]

impl PartialEq for ParameterValue
[src]

[src]

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

[src]

This method tests for !=.

Auto Trait Implementations