#[non_exhaustive]pub struct SkinBindLinearSummaryMeasurements {
pub classification: SkinBindLinearSummaryClassification,
pub joint_count: usize,
pub available_joint_count: usize,
pub unavailable_joint_count: usize,
pub consistent_uniform_scale: Option<f64>,
}Expand description
Summary of one skin’s joint-bind-to-mesh linear-transform evidence.
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.classification: SkinBindLinearSummaryClassificationStable aggregate class.
joint_count: usizeNumber of declared skin joint slots.
available_joint_count: usizeNumber of slots with an available joint-bind-to-mesh matrix.
Number of slots without an available joint-bind-to-mesh matrix.
consistent_uniform_scale: Option<f64>Canonical arithmetic mean factor for
SkinBindLinearSummaryClassification::ConsistentUniform.
Trait Implementations§
Source§impl Clone for SkinBindLinearSummaryMeasurements
impl Clone for SkinBindLinearSummaryMeasurements
Source§fn clone(&self) -> SkinBindLinearSummaryMeasurements
fn clone(&self) -> SkinBindLinearSummaryMeasurements
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 moreimpl Copy for SkinBindLinearSummaryMeasurements
Source§impl<'de> Deserialize<'de> for SkinBindLinearSummaryMeasurements
impl<'de> Deserialize<'de> for SkinBindLinearSummaryMeasurements
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
impl StructuralPartialEq for SkinBindLinearSummaryMeasurements
Auto Trait Implementations§
impl Freeze for SkinBindLinearSummaryMeasurements
impl RefUnwindSafe for SkinBindLinearSummaryMeasurements
impl Send for SkinBindLinearSummaryMeasurements
impl Sync for SkinBindLinearSummaryMeasurements
impl Unpin for SkinBindLinearSummaryMeasurements
impl UnsafeUnpin for SkinBindLinearSummaryMeasurements
impl UnwindSafe for SkinBindLinearSummaryMeasurements
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