pub enum DynValue {
}Expand description
Represents a dynamically deserialized value
Variants§
I8(i8)
I16(i16)
I32(i32)
I64(i64)
I128(i128)
U8(u8)
U16(u16)
U32(u32)
U64(u64)
U128(u128)
Bool(bool)
Array(Vec<DynValue>)
Complex values
Struct(Vec<(String, DynValue)>)
Enum(String, Option<Box<DynValue>>)
Option(Option<Box<DynValue>>)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DynValue
impl RefUnwindSafe for DynValue
impl Send for DynValue
impl Sync for DynValue
impl Unpin for DynValue
impl UnwindSafe for DynValue
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more