pub enum Unpacked {
}
Expand description
An enum representing possible unpacked structures
Variants§
Uint8(u8)
Uint16(u16)
Uint32(u32)
Uint64(u64)
Int8(i8)
Int16(i16)
Int32(i32)
Int64(i64)
Float(f32)
Double(f64)
Bool(bool)
Raw(Vec<u8>)
String(String)
Null
Undefined
Array(Vec<Unpacked>)
Map(HashMap<Unpacked, Unpacked>)
Implementations§
Trait Implementations§
impl Eq for Unpacked
Auto Trait Implementations§
impl Freeze for Unpacked
impl RefUnwindSafe for Unpacked
impl Send for Unpacked
impl Sync for Unpacked
impl Unpin for Unpacked
impl UnwindSafe for Unpacked
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