pub enum SlideEffect {
ShiftSlideTo(u8),
LegatoSlideTo(u8),
SlideOutDownward,
SlideOutUpward,
SlideInFromBelow,
SlideInFromAbove,
}Expand description
Slide effect
Variants§
ShiftSlideTo(u8)
LegatoSlideTo(u8)
SlideOutDownward
SlideOutUpward
SlideInFromBelow
SlideInFromAbove
Trait Implementations§
Source§impl Clone for SlideEffect
impl Clone for SlideEffect
Source§fn clone(&self) -> SlideEffect
fn clone(&self) -> SlideEffect
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 SlideEffect
impl Debug for SlideEffect
Source§impl PartialEq for SlideEffect
impl PartialEq for SlideEffect
impl StructuralPartialEq for SlideEffect
Auto Trait Implementations§
impl Freeze for SlideEffect
impl RefUnwindSafe for SlideEffect
impl Send for SlideEffect
impl Sync for SlideEffect
impl Unpin for SlideEffect
impl UnwindSafe for SlideEffect
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