#[non_exhaustive]#[repr(i32)]pub enum button_flag_t {
ekBUTTON_FLAG = 0,
ekBUTTON_CHECK2 = 1,
ekBUTTON_CHECK3 = 2,
ekBUTTON_RADIO = 3,
ekBUTTON_FLAT = 4,
ekBUTTON_FLATGLE = 5,
ekBUTTON_TYPE = 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.
ekBUTTON_FLAG = 0
ekBUTTON_CHECK2 = 1
ekBUTTON_CHECK3 = 2
ekBUTTON_RADIO = 3
ekBUTTON_FLAT = 4
ekBUTTON_FLATGLE = 5
ekBUTTON_TYPE = 7
Implementations§
pub const ekBUTTON_PUSH: _button_flag_t = _button_flag_t::ekBUTTON_FLAG
Trait Implementations§
Source§fn clone(&self) -> _button_flag_t
fn clone(&self) -> _button_flag_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 moreAuto Trait Implementations§
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