pub enum KeyNode {
Nil,
Value(Value, Value),
Array(Vec<(usize, KeyNode)>),
Node(HashMap<String, KeyNode>),
}
Variants§
Implementations§
Trait Implementations§
source§impl PartialEq for KeyNode
impl PartialEq for KeyNode
impl StructuralPartialEq for KeyNode
Auto Trait Implementations§
impl RefUnwindSafe for KeyNode
impl Send for KeyNode
impl Sync for KeyNode
impl Unpin for KeyNode
impl UnwindSafe for KeyNode
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