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: i32
NumberValue(f64)
Represents a double value.
Tuple Fields of NumberValue
0: f64
StringValue(String)
Represents a string value.
Tuple Fields of StringValue
0: String
BoolValue(bool)
Represents a boolean value.
Tuple Fields of BoolValue
0: bool
StructValue(Struct)
Represents a structured value.
Tuple Fields of StructValue
0: Struct
ListValue(ListValue)
Represents a repeated Value
.
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