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)
I8(i8)
I16(i16)
I32(i32)
I64(i64)
I128(i128)
U8(u8)
U16(u16)
U32(u32)
U64(u64)
U128(u128)
F32(f32)
F64(f64)
Char(char)
Str(String)
Trait 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