pub struct SourceSkinAttachment {
pub source_node_index: usize,
pub source_mesh_index: Option<usize>,
}Expand description
One source node that declares use of a source skin.
Fields§
§source_node_index: usizeStable node-array index of the attachment node.
source_mesh_index: Option<usize>Stable source mesh-definition index, when the node declares a mesh.
This remains present even when the current core mesh importer skips the definition (for example, because it has no triangle-list primitive).
Trait Implementations§
Source§impl Clone for SourceSkinAttachment
impl Clone for SourceSkinAttachment
Source§fn clone(&self) -> SourceSkinAttachment
fn clone(&self) -> SourceSkinAttachment
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 moreAuto Trait Implementations§
impl Freeze for SourceSkinAttachment
impl RefUnwindSafe for SourceSkinAttachment
impl Send for SourceSkinAttachment
impl Sync for SourceSkinAttachment
impl Unpin for SourceSkinAttachment
impl UnsafeUnpin for SourceSkinAttachment
impl UnwindSafe for SourceSkinAttachment
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