Enum raylib_sys::GuiControl
source · #[repr(u32)]pub enum GuiControl {
Show 16 variants
DEFAULT = 0,
LABEL = 1,
BUTTON = 2,
TOGGLE = 3,
SLIDER = 4,
PROGRESSBAR = 5,
CHECKBOX = 6,
COMBOBOX = 7,
DROPDOWNBOX = 8,
TEXTBOX = 9,
VALUEBOX = 10,
SPINNER = 11,
LISTVIEW = 12,
COLORPICKER = 13,
SCROLLBAR = 14,
STATUSBAR = 15,
}Variants§
DEFAULT = 0
LABEL = 1
BUTTON = 2
TOGGLE = 3
SLIDER = 4
PROGRESSBAR = 5
CHECKBOX = 6
COMBOBOX = 7
DROPDOWNBOX = 8
TEXTBOX = 9
VALUEBOX = 10
SPINNER = 11
LISTVIEW = 12
COLORPICKER = 13
SCROLLBAR = 14
STATUSBAR = 15
Trait Implementations§
source§impl Clone for GuiControl
impl Clone for GuiControl
source§fn clone(&self) -> GuiControl
fn clone(&self) -> GuiControl
Returns a copy 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 GuiControl
impl Debug for GuiControl
source§impl Hash for GuiControl
impl Hash for GuiControl
source§impl PartialEq for GuiControl
impl PartialEq for GuiControl
source§fn eq(&self, other: &GuiControl) -> bool
fn eq(&self, other: &GuiControl) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for GuiControl
impl Eq for GuiControl
impl StructuralPartialEq for GuiControl
Auto Trait Implementations§
impl Freeze for GuiControl
impl RefUnwindSafe for GuiControl
impl Send for GuiControl
impl Sync for GuiControl
impl Unpin for GuiControl
impl UnwindSafe for GuiControl
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