#[repr(i32)]pub enum SCROLL_SOURCE {
SCROLL_SOURCE_UNKNOWN = 0,
SCROLL_SOURCE_KEYBOARD = 1,
SCROLL_SOURCE_SCROLLBAR = 2,
SCROLL_SOURCE_ANIMATOR = 3,
SCROLL_SOURCE_WHEEL = 4,
}Variants§
SCROLL_SOURCE_UNKNOWN = 0
SCROLL_SOURCE_KEYBOARD = 1
SCROLL_SOURCE_SCROLLBAR = 2
SCROLL_SOURCE_ANIMATOR = 3
SCROLL_SOURCE_WHEEL = 4
Trait Implementations§
Source§impl Clone for SCROLL_SOURCE
impl Clone for SCROLL_SOURCE
Source§fn clone(&self) -> SCROLL_SOURCE
fn clone(&self) -> SCROLL_SOURCE
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for SCROLL_SOURCE
Source§impl Debug for SCROLL_SOURCE
impl Debug for SCROLL_SOURCE
impl Eq for SCROLL_SOURCE
Source§impl Hash for SCROLL_SOURCE
impl Hash for SCROLL_SOURCE
Source§impl PartialEq for SCROLL_SOURCE
impl PartialEq for SCROLL_SOURCE
Source§fn eq(&self, other: &SCROLL_SOURCE) -> bool
fn eq(&self, other: &SCROLL_SOURCE) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SCROLL_SOURCE
Auto Trait Implementations§
impl Freeze for SCROLL_SOURCE
impl RefUnwindSafe for SCROLL_SOURCE
impl Send for SCROLL_SOURCE
impl Sync for SCROLL_SOURCE
impl Unpin for SCROLL_SOURCE
impl UnsafeUnpin for SCROLL_SOURCE
impl UnwindSafe for SCROLL_SOURCE
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