pub enum ScrollSpeed {
OneEight = 0,
OneFourth = 1,
OneHalf = 2,
One = 3,
Two = 4,
Four = 5,
Eight = 6,
Sixteen = 7,
Instant = 8,
ThirtyTwo = 9,
SixtyFour = 10,
Unknown = 11,
}Variants§
OneEight = 0
OneFourth = 1
OneHalf = 2
One = 3
Two = 4
Four = 5
Eight = 6
Sixteen = 7
Instant = 8
ThirtyTwo = 9
SixtyFour = 10
Unknown = 11
Implementations§
Trait Implementations§
Source§impl Clone for ScrollSpeed
impl Clone for ScrollSpeed
Source§fn clone(&self) -> ScrollSpeed
fn clone(&self) -> ScrollSpeed
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 ScrollSpeed
impl PartialEq for ScrollSpeed
impl StructuralPartialEq for ScrollSpeed
Auto Trait Implementations§
impl Freeze for ScrollSpeed
impl RefUnwindSafe for ScrollSpeed
impl Send for ScrollSpeed
impl Sync for ScrollSpeed
impl Unpin for ScrollSpeed
impl UnwindSafe for ScrollSpeed
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