[][src]Enum pcd_rs::Value

pub enum Value {
    U8(u8),
    U16(u16),
    U32(u32),
    I8(i8),
    I16(i16),
    I32(i32),
    F32(f32),
    F64(f64),
    U8V(Vec<u8>),
    U16V(Vec<u16>),
    U32V(Vec<u32>),
    I8V(Vec<i8>),
    I16V(Vec<i16>),
    I32V(Vec<i32>),
    F32V(Vec<f32>),
    F64V(Vec<f64>),
}

The enum holds the exact value of each PCD field.

Variants

U8(u8)U16(u16)U32(u32)I8(i8)I16(i16)I32(i32)F32(f32)F64(f64)U8V(Vec<u8>)U16V(Vec<u16>)U32V(Vec<u32>)I8V(Vec<i8>)I16V(Vec<i16>)I32V(Vec<i32>)F32V(Vec<f32>)F64V(Vec<f64>)

Trait Implementations

impl Debug for Value[src]

Auto Trait Implementations

impl Send for Value

impl Sync for Value

Blanket Implementations

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]