#[non_exhaustive]pub struct SkinInverseBindAccessorMeasurements {
pub status: SourceInverseBindAccessorStatus,
pub declared_count: Option<usize>,
pub matrices: Vec<[f32; 16]>,
}Expand description
Source-level read state for one inverse-bind declaration.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.status: SourceInverseBindAccessorStatusWhether the source declaration was absent, readable, empty, short, or unreadable.
declared_count: Option<usize>Declared source matrix count, when matrices were declared.
matrices: Vec<[f32; 16]>Every readable finite retained matrix in declaration order, including entries beyond the skin’s joint count. glTF values are exact accessor values; another loader may expose a documented normalized projection.
Trait Implementations§
Source§impl Clone for SkinInverseBindAccessorMeasurements
impl Clone for SkinInverseBindAccessorMeasurements
Source§fn clone(&self) -> SkinInverseBindAccessorMeasurements
fn clone(&self) -> SkinInverseBindAccessorMeasurements
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<'de> Deserialize<'de> for SkinInverseBindAccessorMeasurements
impl<'de> Deserialize<'de> for SkinInverseBindAccessorMeasurements
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SkinInverseBindAccessorMeasurements
impl RefUnwindSafe for SkinInverseBindAccessorMeasurements
impl Send for SkinInverseBindAccessorMeasurements
impl Sync for SkinInverseBindAccessorMeasurements
impl Unpin for SkinInverseBindAccessorMeasurements
impl UnsafeUnpin for SkinInverseBindAccessorMeasurements
impl UnwindSafe for SkinInverseBindAccessorMeasurements
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