pub enum AnimationSequenceError {
TimeCollision(f64),
}
Expand description
Category of animation sequence error
Variants§
TimeCollision(f64)
An attempt was made to insert a keyframe into the sequence when another keyframe already exists with the same start time
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AnimationSequenceError
impl RefUnwindSafe for AnimationSequenceError
impl Send for AnimationSequenceError
impl Sync for AnimationSequenceError
impl Unpin for AnimationSequenceError
impl UnwindSafe for AnimationSequenceError
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