pub enum Nvtvalue {
Null,
Bool(bool),
Number(u64),
String(String),
Nested(Box<Nvtree>),
BoolArray(Vec<bool>),
NumberArray(Vec<u64>),
StringArray(Vec<String>),
NestedArray(Vec<Nvtree>),
}Variants§
Null
Bool(bool)
Number(u64)
String(String)
Nested(Box<Nvtree>)
BoolArray(Vec<bool>)
NumberArray(Vec<u64>)
StringArray(Vec<String>)
NestedArray(Vec<Nvtree>)
Trait Implementations§
impl Eq for Nvtvalue
impl StructuralPartialEq for Nvtvalue
Auto Trait Implementations§
impl Freeze for Nvtvalue
impl RefUnwindSafe for Nvtvalue
impl Send for Nvtvalue
impl Sync for Nvtvalue
impl Unpin for Nvtvalue
impl UnsafeUnpin for Nvtvalue
impl UnwindSafe for Nvtvalue
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