Enum config_struct::RawValue [] [src]

pub enum RawValue {
    Unit,
    Bool(bool),
    Char(char),
    I8(i8),
    I16(i16),
    I32(i32),
    I64(i64),
    U8(u8),
    U16(u16),
    U32(u32),
    U64(u64),
    Isize(isize),
    Usize(usize),
    F32(f32),
    F64(f64),
    String(String),
    Option(Option<Box<RawValue>>),
    Array(Vec<RawValue>),
    Struct(RawStructValue),
}

Represents a typed Rust value.

Variants

Trait Implementations

impl Debug for RawValue
[src]

[src]

Formats the value using the given formatter.

impl Clone for RawValue
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more