pub struct GltfNodeCapability {
pub node_index: usize,
pub rest_kind: GltfNodeRestKind,
pub mesh_index: Option<usize>,
pub skin_index: Option<usize>,
}Expand description
One source node identity and authored rest representation.
Fields§
§node_index: usizeStable source node index.
rest_kind: GltfNodeRestKindAuthored rest representation.
mesh_index: Option<usize>Referenced mesh index, when present.
skin_index: Option<usize>Referenced skin index, when present.
Trait Implementations§
Source§impl Clone for GltfNodeCapability
impl Clone for GltfNodeCapability
Source§fn clone(&self) -> GltfNodeCapability
fn clone(&self) -> GltfNodeCapability
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for GltfNodeCapability
impl Debug for GltfNodeCapability
impl Eq for GltfNodeCapability
Source§impl PartialEq for GltfNodeCapability
impl PartialEq for GltfNodeCapability
Source§impl Serialize for GltfNodeCapability
impl Serialize for GltfNodeCapability
impl StructuralPartialEq for GltfNodeCapability
Auto Trait Implementations§
impl Freeze for GltfNodeCapability
impl RefUnwindSafe for GltfNodeCapability
impl Send for GltfNodeCapability
impl Sync for GltfNodeCapability
impl Unpin for GltfNodeCapability
impl UnsafeUnpin for GltfNodeCapability
impl UnwindSafe for GltfNodeCapability
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