pub struct NewNode {
pub data: Vec<u8>,
pub children: Vec<NodeRef>,
}
Fields§
§data: Vec<u8>
§children: Vec<NodeRef>
Trait Implementations§
impl Eq for NewNode
impl StructuralPartialEq for NewNode
Auto Trait Implementations§
impl Freeze for NewNode
impl RefUnwindSafe for NewNode
impl Send for NewNode
impl Sync for NewNode
impl Unpin for NewNode
impl UnwindSafe for NewNode
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