pub enum TrackTarget {
Transformation(Arc<Transformation>),
MorphWeight(Arc<MorphWeight>),
}Expand description
Enum wrapping over all possible animation track targets.
Variants§
Transformation(Arc<Transformation>)
A Transformation structure. See enum to see possibilities.
MorphWeight(Arc<MorphWeight>)
A MorphWeight structure.
Auto Trait Implementations§
impl Freeze for TrackTarget
impl RefUnwindSafe for TrackTarget
impl Send for TrackTarget
impl Sync for TrackTarget
impl Unpin for TrackTarget
impl UnwindSafe for TrackTarget
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