#[non_exhaustive]pub struct ConstantTrackPruneRecord {
pub original_track_index: usize,
pub bone: BoneId,
pub property: Property,
pub interpolation: Interpolation,
pub key_count: usize,
}Expand description
One constant-track candidate considered by prune_constant_tracks.
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.original_track_index: usizeOriginal index in Clip::tracks.
bone: BoneIdTarget bone.
property: PropertyTarget local TRS property.
interpolation: InterpolationAuthored interpolation mode.
key_count: usizeNumber of authored keyframes.
Trait Implementations§
Source§impl Clone for ConstantTrackPruneRecord
impl Clone for ConstantTrackPruneRecord
Source§fn clone(&self) -> ConstantTrackPruneRecord
fn clone(&self) -> ConstantTrackPruneRecord
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 ConstantTrackPruneRecord
impl Debug for ConstantTrackPruneRecord
Source§impl PartialEq for ConstantTrackPruneRecord
impl PartialEq for ConstantTrackPruneRecord
impl StructuralPartialEq for ConstantTrackPruneRecord
Auto Trait Implementations§
impl Freeze for ConstantTrackPruneRecord
impl RefUnwindSafe for ConstantTrackPruneRecord
impl Send for ConstantTrackPruneRecord
impl Sync for ConstantTrackPruneRecord
impl Unpin for ConstantTrackPruneRecord
impl UnsafeUnpin for ConstantTrackPruneRecord
impl UnwindSafe for ConstantTrackPruneRecord
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