pub struct Node {
pub identifier: String,
pub transform: Affine3A,
pub children: Vec<Node>,
}Expand description
Represent a node in the visual tree.
Fields§
§identifier: StringIdentifier of the node.
transform: Affine3AAffine transformation applied to this node and its children.
children: Vec<Node>Children nodes.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Node
impl RefUnwindSafe for Node
impl Send for Node
impl Sync for Node
impl Unpin for Node
impl UnwindSafe for Node
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