pub struct GltfSkinCapability {
pub skin_index: usize,
pub joint_count: usize,
pub inverse_bind_accessor_index: Option<usize>,
pub inverse_bind_count: Option<u64>,
}Expand description
Read-side inverse-bind declaration for one source skin.
Fields§
§skin_index: usizeStable source skin index.
joint_count: usizeNumber of declared joints.
inverse_bind_accessor_index: Option<usize>Declared inverse-bind accessor index, when present.
inverse_bind_count: Option<u64>Declared inverse-bind accessor count, when readable from raw JSON.
Trait Implementations§
Source§impl Clone for GltfSkinCapability
impl Clone for GltfSkinCapability
Source§fn clone(&self) -> GltfSkinCapability
fn clone(&self) -> GltfSkinCapability
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 GltfSkinCapability
impl Debug for GltfSkinCapability
impl Eq for GltfSkinCapability
Source§impl PartialEq for GltfSkinCapability
impl PartialEq for GltfSkinCapability
Source§impl Serialize for GltfSkinCapability
impl Serialize for GltfSkinCapability
impl StructuralPartialEq for GltfSkinCapability
Auto Trait Implementations§
impl Freeze for GltfSkinCapability
impl RefUnwindSafe for GltfSkinCapability
impl Send for GltfSkinCapability
impl Sync for GltfSkinCapability
impl Unpin for GltfSkinCapability
impl UnsafeUnpin for GltfSkinCapability
impl UnwindSafe for GltfSkinCapability
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