[][src]Enum xio_base_datatypes::DataValue

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

Variants

Boolean(bool)
UInt8(u8)
UInt16(u16)
UInt32(u32)
UInt64(u64)
Int8(i8)
Int16(i16)
Int32(i32)
Int64(i64)
ParameterMask(M)

Trait Implementations

impl<M: IsParameterMask> TryConvertTo<DataType> for DataValue<M>[src]

impl<M: IsParameterMask> HasDataType for DataValue<M>[src]

impl<M: Eq + IsParameterMask> Eq for DataValue<M>[src]

impl<M: Clone + IsParameterMask> Clone for DataValue<M>[src]

impl<M: PartialOrd + IsParameterMask> PartialOrd<DataValue<M>> for DataValue<M>[src]

impl<M: PartialEq + IsParameterMask> PartialEq<DataValue<M>> for DataValue<M>[src]

impl<M: Ord + IsParameterMask> Ord for DataValue<M>[src]

impl<T: IsParameterMask> From<bool> for DataValue<T>[src]

impl<T: IsParameterMask> From<i8> for DataValue<T>[src]

impl<T: IsParameterMask> From<i16> for DataValue<T>[src]

impl<T: IsParameterMask> From<i32> for DataValue<T>[src]

impl<T: IsParameterMask> From<i64> for DataValue<T>[src]

impl<T: IsParameterMask> From<u8> for DataValue<T>[src]

impl<T: IsParameterMask> From<u16> for DataValue<T>[src]

impl<T: IsParameterMask> From<u32> for DataValue<T>[src]

impl<T: IsParameterMask> From<u64> for DataValue<T>[src]

impl<M: IsParameterMask, R: IsModuleChannelReference> From<DataValue<M>> for ParameterValue<M, R>[src]

impl<M: Debug + IsParameterMask> Debug for DataValue<M>[src]

Auto Trait Implementations

impl<M> Send for DataValue<M> where
    M: Send

impl<M> Unpin for DataValue<M> where
    M: Unpin

impl<M> Sync for DataValue<M> where
    M: Sync

impl<M> UnwindSafe for DataValue<M> where
    M: UnwindSafe

impl<M> RefUnwindSafe for DataValue<M> where
    M: RefUnwindSafe

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

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.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Err = <U as TryFrom<T>>::Err