#[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
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