#[non_exhaustive]pub struct BoneChannelCoverage {
pub bone_index: u32,
pub bone_name: String,
pub properties: Vec<Property>,
}Expand description
Animated local TRS properties present for one skeleton bone.
Entries are emitted in skeleton-index order. Self::properties is a
non-empty, duplicate-free subset in translation, rotation, scale order.
This is artifact coverage derived from the document’s surviving,
structurally valid tracks, not a record of requested transforms or
removed-track 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.bone_index: u32Zero-based bone index in the measured document’s skeleton.
bone_name: StringBone name retained alongside the index so duplicate names remain distinguishable without losing a human-readable identity.
properties: Vec<Property>Local TRS properties that have at least one non-empty channel.
Trait Implementations§
Source§impl Clone for BoneChannelCoverage
impl Clone for BoneChannelCoverage
Source§fn clone(&self) -> BoneChannelCoverage
fn clone(&self) -> BoneChannelCoverage
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 BoneChannelCoverage
impl Debug for BoneChannelCoverage
Source§impl<'de> Deserialize<'de> for BoneChannelCoverage
impl<'de> Deserialize<'de> for BoneChannelCoverage
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 Eq for BoneChannelCoverage
Source§impl PartialEq for BoneChannelCoverage
impl PartialEq for BoneChannelCoverage
Source§impl Serialize for BoneChannelCoverage
impl Serialize for BoneChannelCoverage
impl StructuralPartialEq for BoneChannelCoverage
Auto Trait Implementations§
impl Freeze for BoneChannelCoverage
impl RefUnwindSafe for BoneChannelCoverage
impl Send for BoneChannelCoverage
impl Sync for BoneChannelCoverage
impl Unpin for BoneChannelCoverage
impl UnsafeUnpin for BoneChannelCoverage
impl UnwindSafe for BoneChannelCoverage
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