pub enum BasicEventCommandSequence {
Move(Vec<MoveCommand>),
MoveX(Vec<MoveXCommand>),
MoveY(Vec<MoveYCommand>),
Fade(Vec<FadeCommand>),
Rotate(Vec<RotateCommand>),
Scale(Vec<ScaleCommand>),
VectorScale(Vec<VectorScaleCommand>),
Colour(Vec<ColourCommand>),
Parameter(Vec<ParameterCommand>),
}
Variants§
Move(Vec<MoveCommand>)
MoveX(Vec<MoveXCommand>)
MoveY(Vec<MoveYCommand>)
Fade(Vec<FadeCommand>)
Rotate(Vec<RotateCommand>)
Scale(Vec<ScaleCommand>)
VectorScale(Vec<VectorScaleCommand>)
Colour(Vec<ColourCommand>)
Parameter(Vec<ParameterCommand>)
Trait Implementations§
Source§impl Clone for BasicEventCommandSequence
impl Clone for BasicEventCommandSequence
Source§fn clone(&self) -> BasicEventCommandSequence
fn clone(&self) -> BasicEventCommandSequence
Returns a copy 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 moreSource§impl Debug for BasicEventCommandSequence
impl Debug for BasicEventCommandSequence
impl StructuralPartialEq for BasicEventCommandSequence
Auto Trait Implementations§
impl Freeze for BasicEventCommandSequence
impl RefUnwindSafe for BasicEventCommandSequence
impl Send for BasicEventCommandSequence
impl Sync for BasicEventCommandSequence
impl Unpin for BasicEventCommandSequence
impl UnwindSafe for BasicEventCommandSequence
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