Enum prost_types::value::Kind
source · 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§
source§impl Kind
impl Kind
sourcepub fn merge<B>(
field: &mut Option<Kind>,
tag: u32,
wire_type: WireType,
buf: &mut B,
ctx: DecodeContext
) -> Result<(), DecodeError>where
B: Buf,
pub fn merge<B>( field: &mut Option<Kind>, tag: u32, wire_type: WireType, buf: &mut B, ctx: DecodeContext ) -> Result<(), DecodeError>where B: Buf,
Decodes an instance of the message from a buffer, and merges it into self.
sourcepub fn encoded_len(&self) -> usize
pub fn encoded_len(&self) -> usize
Returns the encoded length of the message without a length delimiter.