pub enum MoveMode {
Default(DefaultMove),
Targeting(TargetMove),
Directional(DirectionalMove),
}Expand description
Enum for move mode setting. See structs DefaultMove, TargetMove, and DirectionalMove
Variants§
Default(DefaultMove)
Normal axis-based move mode
Targeting(TargetMove)
Moves the group to the position of another group
Directional(DirectionalMove)
Moves the group in the direction of another group
Trait Implementations§
impl StructuralPartialEq for MoveMode
Auto Trait Implementations§
impl Freeze for MoveMode
impl RefUnwindSafe for MoveMode
impl Send for MoveMode
impl Sync for MoveMode
impl Unpin for MoveMode
impl UnsafeUnpin for MoveMode
impl UnwindSafe for MoveMode
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