pub enum NodeChild {
KV {
key: Node,
value: Node,
},
List(Vec<Node>),
Value(String),
Null,
}
Variants§
Auto Trait Implementations§
impl Freeze for NodeChild
impl RefUnwindSafe for NodeChild
impl Send for NodeChild
impl Sync for NodeChild
impl Unpin for NodeChild
impl UnwindSafe for NodeChild
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