Enum pbjson_types::value::Kind [−][src]
pub enum Kind {
NullValue(i32),
NumberValue(f64),
StringValue(String),
BoolValue(bool),
StructValue(Struct),
ListValue(ListValue),
}
Variants
NullValue(i32)
Tuple Fields of NullValue
0: i32
NumberValue(f64)
Tuple Fields of NumberValue
0: f64
StringValue(String)
Tuple Fields of StringValue
0: String
BoolValue(bool)
Tuple Fields of BoolValue
0: bool
StructValue(Struct)
Tuple Fields of StructValue
0: Struct
ListValue(ListValue)
Tuple Fields of ListValue
0: ListValue
Implementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Kind
impl UnwindSafe for Kind
Blanket Implementations
Mutably borrows from an owned value. Read more