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.
NumberValue(f64)Represents a double value.
StringValue(String)Represents a string value.
BoolValue(bool)Represents a boolean value.
StructValue(Struct)Represents a structured value.
ListValue(ListValue)Represents a repeated Value.
Implementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Kindimpl UnwindSafe for KindBlanket Implementations
Mutably borrows from an owned value. Read more