pub struct ObjectChild {
pub name: String,
pub node: TreeNode,
}
Expand description
Object child information
Fields§
§name: String
The name of the field in the object
node: TreeNode
The structure of the child
Trait Implementations§
Source§impl Clone for ObjectChild
impl Clone for ObjectChild
Source§fn clone(&self) -> ObjectChild
fn clone(&self) -> ObjectChild
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ObjectChild
impl Debug for ObjectChild
Auto Trait Implementations§
impl Freeze for ObjectChild
impl RefUnwindSafe for ObjectChild
impl Send for ObjectChild
impl Sync for ObjectChild
impl Unpin for ObjectChild
impl UnwindSafe for ObjectChild
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