Type Alias preserves::value::repr::UnwrappedIOValue

source ·
pub type UnwrappedIOValue = Value<IOValue>;

Aliased Type§

enum UnwrappedIOValue {
    Boolean(bool),
    Double(Double),
    SignedInteger(SignedInteger),
    String(String),
    ByteString(Vec<u8>),
    Symbol(String),
    Record(Record<IOValue>),
    Sequence(Vec<IOValue>),
    Set(BTreeSet<IOValue>),
    Dictionary(BTreeMap<IOValue, IOValue>),
    Embedded(IOValue),
}

Variants§

§

Boolean(bool)

§

Double(Double)

§

SignedInteger(SignedInteger)

§

String(String)

§

ByteString(Vec<u8>)

§

Symbol(String)

§

Record(Record<IOValue>)

§

Sequence(Vec<IOValue>)

§

Set(BTreeSet<IOValue>)

§

Dictionary(BTreeMap<IOValue, IOValue>)

§

Embedded(IOValue)