pub struct PartialTree { /* private fields */ }Expand description
A UiTree that does not have a full tree structure assigned.
The API for this struct only contains a method to add a node to the tree and a method to complete the tree. This comes at the benefit of not requiring a root node at construction.
It is used internally by the ui! macro, but can also be used manually.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PartialTree
impl !RefUnwindSafe for PartialTree
impl !Send for PartialTree
impl !Sync for PartialTree
impl Unpin for PartialTree
impl UnsafeUnpin for PartialTree
impl !UnwindSafe for PartialTree
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