Enum uninode::UniNode [−][src]
pub enum UniNode {
Null,
Boolean(bool),
Integer(i64),
UInteger(u64),
Float(f64),
Bytes(Vec<u8>),
String(String),
Array(Vec<UniNode>),
Object(HashMap<String, UniNode>),
}Expand description
Representation of a UniNode value.
Variants
Represents a UniNode null
Represents a UniNode bool
Tuple Fields of Boolean
0: boolRepresents a UniNode integer
Tuple Fields of Integer
0: i64Represents a UniNode unsigned integer
Tuple Fields of UInteger
0: u64Represents a UniNode float
Tuple Fields of Float
0: f64Represents a UniNode bytes array
Represents a UniNode string
Tuple Fields of String
0: StringRepresents a UniNode array
Represents a UniNode object
Implementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for UniNode
impl UnwindSafe for UniNode
Blanket Implementations
Mutably borrows from an owned value. Read more