pub struct FbxNode {
pub name: String,
pub properties: Vec<FbxProperty>,
pub children: Vec<FbxNode>,
}Available on crate feature
fbx-reader only.Expand description
An FBX node with properties and children.
Fields§
§name: StringNode name, such as Objects, Geometry, Model, or Connections.
properties: Vec<FbxProperty>Properties stored directly on this node.
children: Vec<FbxNode>Child nodes nested under this node.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FbxNode
impl RefUnwindSafe for FbxNode
impl Send for FbxNode
impl Sync for FbxNode
impl Unpin for FbxNode
impl UnsafeUnpin for FbxNode
impl UnwindSafe for FbxNode
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