Enum prost_types::value::Kind [−][src]
pub enum Kind {
NullValue(i32),
NumberValue(f64),
StringValue(String),
BoolValue(bool),
StructValue(Struct),
ListValue(ListValue),
}Expand description
The kind of value.
Variants
NullValue(i32)Represents a null value.
Tuple Fields of NullValue
0: i32NumberValue(f64)Represents a double value.
Tuple Fields of NumberValue
0: f64StringValue(String)Represents a string value.
Tuple Fields of StringValue
0: StringBoolValue(bool)Represents a boolean value.
Tuple Fields of BoolValue
0: boolStructValue(Struct)Represents a structured value.
Tuple Fields of StructValue
0: StructListValue(ListValue)Represents a repeated Value.
Tuple Fields of ListValue
0: ListValueImplementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Kind
impl UnwindSafe for Kind
Blanket Implementations
Mutably borrows from an owned value. Read more