pub enum AnimLastValue {
Float(f32),
Vec2(Vec2),
Vec3(Vec3),
Vec4(Vec4),
Color(Color),
}
Variants§
Trait Implementations§
Source§impl Clone for AnimLastValue
impl Clone for AnimLastValue
Source§fn clone(&self) -> AnimLastValue
fn clone(&self) -> AnimLastValue
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for AnimLastValue
impl RefUnwindSafe for AnimLastValue
impl Send for AnimLastValue
impl Sync for AnimLastValue
impl Unpin for AnimLastValue
impl UnwindSafe for AnimLastValue
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