pub struct AssemblyScaleTargetPath {
pub clip_index: usize,
pub track_index: usize,
pub bone: String,
pub property: &'static str,
pub factor_bits: u64,
}Expand description
One animation channel target and the plan-owned effective multiplier.
Fields§
§clip_index: usizeClip position in the input document.
track_index: usizeTrack position inside the clip.
bone: StringNamed target used by assembly remapping.
property: &'static strStable property name.
factor_bits: u64Effective multiplier encoded without float spelling ambiguity.
Trait Implementations§
Source§impl Clone for AssemblyScaleTargetPath
impl Clone for AssemblyScaleTargetPath
Source§fn clone(&self) -> AssemblyScaleTargetPath
fn clone(&self) -> AssemblyScaleTargetPath
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 AssemblyScaleTargetPath
impl Debug for AssemblyScaleTargetPath
impl Eq for AssemblyScaleTargetPath
Source§impl PartialEq for AssemblyScaleTargetPath
impl PartialEq for AssemblyScaleTargetPath
Source§impl Serialize for AssemblyScaleTargetPath
impl Serialize for AssemblyScaleTargetPath
impl StructuralPartialEq for AssemblyScaleTargetPath
Auto Trait Implementations§
impl Freeze for AssemblyScaleTargetPath
impl RefUnwindSafe for AssemblyScaleTargetPath
impl Send for AssemblyScaleTargetPath
impl Sync for AssemblyScaleTargetPath
impl Unpin for AssemblyScaleTargetPath
impl UnsafeUnpin for AssemblyScaleTargetPath
impl UnwindSafe for AssemblyScaleTargetPath
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