#[non_exhaustive]#[repr(i32)]pub enum gui_scroll_t {
ekGUI_SCROLL_BEGIN = 1,
ekGUI_SCROLL_END = 2,
ekGUI_SCROLL_STEP_LEFT = 3,
ekGUI_SCROLL_STEP_RIGHT = 4,
ekGUI_SCROLL_PAGE_LEFT = 5,
ekGUI_SCROLL_PAGE_RIGHT = 6,
ekGUI_SCROLL_THUMB = 7,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
ekGUI_SCROLL_BEGIN = 1
ekGUI_SCROLL_END = 2
ekGUI_SCROLL_STEP_LEFT = 3
ekGUI_SCROLL_STEP_RIGHT = 4
ekGUI_SCROLL_PAGE_LEFT = 5
ekGUI_SCROLL_PAGE_RIGHT = 6
ekGUI_SCROLL_THUMB = 7
Trait Implementations§
Source§impl Clone for _gui_scroll_t
impl Clone for _gui_scroll_t
Source§fn clone(&self) -> _gui_scroll_t
fn clone(&self) -> _gui_scroll_t
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for _gui_scroll_t
impl Debug for _gui_scroll_t
Source§impl Hash for _gui_scroll_t
impl Hash for _gui_scroll_t
Source§impl PartialEq for _gui_scroll_t
impl PartialEq for _gui_scroll_t
impl Copy for _gui_scroll_t
impl Eq for _gui_scroll_t
impl StructuralPartialEq for _gui_scroll_t
Auto Trait Implementations§
impl Freeze for _gui_scroll_t
impl RefUnwindSafe for _gui_scroll_t
impl Send for _gui_scroll_t
impl Sync for _gui_scroll_t
impl Unpin for _gui_scroll_t
impl UnwindSafe for _gui_scroll_t
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