pub struct NodeTree {
pub info: NodeInfo,
pub meta: Option<Wrap>,
pub size: usize,
}
Expand description
NodeTree represent a reflection of an Interact type that implemented the Access
trait. It may
be a partial reflection due to limits and indirections (see Reflector
).
Fields§
§info: NodeInfo
§meta: Option<Wrap>
§size: usize
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for NodeTree
impl RefUnwindSafe for NodeTree
impl Send for NodeTree
impl !Sync for NodeTree
impl Unpin for NodeTree
impl UnwindSafe for NodeTree
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