Enum ssb_legacy_msg_data::value::Value [−][src]
pub enum Value {
Null,
Bool(bool),
Float(LegacyF64),
String(String),
Array(Vec<Value>),
Object(RidiculousStringMap<Value>),
}Expand description
Represents any valid ssb legacy message value, preserving the order of object entries.
Variants
The null value.
Bool(bool)A boolean.
Float(LegacyF64)A float.
String(String)A string.
An array.
Object(RidiculousStringMap<Value>)An object.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Valueimpl UnwindSafe for ValueBlanket Implementations
Mutably borrows from an owned value. Read more
Compare self to key and return true if they are equal.