Struct fbx3d::types::Node [] [src]

pub struct Node {
    pub name: String,
    pub properties: Vec<Property>,
    pub subnodes: Vec<Node>,
}

Represent a Node of the FBX file format. Each node has a name (or id) and is composed of a list of Property and a list of sub Node.

Fields

Name of the node.

List of properties of the node.

List of sub-nodes.

Trait Implementations

impl Clone for Node
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Node
[src]

Formats the value using the given formatter.