Enum serde_reflection::Value [−][src]
pub enum Value {
}Expand description
A structured Serde value. Meant to be easily recorded while tracing serialization and easily used while tracing deserialization.
Variants
Bool(bool)Tuple Fields of Bool
0: boolI8(i8)Tuple Fields of I8
0: i8I16(i16)Tuple Fields of I16
0: i16I32(i32)Tuple Fields of I32
0: i32I64(i64)Tuple Fields of I64
0: i64I128(i128)Tuple Fields of I128
0: i128U8(u8)Tuple Fields of U8
0: u8U16(u16)Tuple Fields of U16
0: u16U32(u32)Tuple Fields of U32
0: u32U64(u64)Tuple Fields of U64
0: u64U128(u128)Tuple Fields of U128
0: u128F32(f32)Tuple Fields of F32
0: f32F64(f64)Tuple Fields of F64
0: f64Char(char)Tuple Fields of Char
0: charStr(String)Tuple Fields of Str
0: StringTrait Implementations
type Deserializer = Deserializer<'de>
type Deserializer = Deserializer<'de>
The type of the deserializer being converted into.
Convert this value into a deserializer.
Auto Trait Implementations
impl RefUnwindSafe for Value
impl UnwindSafe for Value
Blanket Implementations
Mutably borrows from an owned value. Read more