pub enum ScrollOperation {
MoveScreen = 0,
BackToHero = 1,
LockScroll = 2,
UnlockScroll = 3,
Unknown = 4,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for ScrollOperation
impl Clone for ScrollOperation
Source§fn clone(&self) -> ScrollOperation
fn clone(&self) -> ScrollOperation
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 PartialEq for ScrollOperation
impl PartialEq for ScrollOperation
impl StructuralPartialEq for ScrollOperation
Auto Trait Implementations§
impl Freeze for ScrollOperation
impl RefUnwindSafe for ScrollOperation
impl Send for ScrollOperation
impl Sync for ScrollOperation
impl Unpin for ScrollOperation
impl UnwindSafe for ScrollOperation
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