pub enum MovableTabEvent {
StartMove(Entity),
StopMove(Entity),
Moving(Entity, f32),
Switch(bool),
}Variants§
Trait Implementations§
Source§impl Clone for MovableTabEvent
impl Clone for MovableTabEvent
Source§fn clone(&self) -> MovableTabEvent
fn clone(&self) -> MovableTabEvent
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 moreSource§impl Debug for MovableTabEvent
impl Debug for MovableTabEvent
Source§impl PartialEq for MovableTabEvent
impl PartialEq for MovableTabEvent
impl StructuralPartialEq for MovableTabEvent
Auto Trait Implementations§
impl Freeze for MovableTabEvent
impl RefUnwindSafe for MovableTabEvent
impl Send for MovableTabEvent
impl Sync for MovableTabEvent
impl Unpin for MovableTabEvent
impl UnwindSafe for MovableTabEvent
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