Enum xplane_sys::XPLMMenuCheck
source · #[non_exhaustive]#[repr(u32)]pub enum XPLMMenuCheck {
NoCheck = 0,
Unchecked = 1,
Checked = 2,
}Expand description
XPLM MENUS
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.
Trait Implementations§
source§impl Clone for XPLMMenuCheck
impl Clone for XPLMMenuCheck
source§fn clone(&self) -> XPLMMenuCheck
fn clone(&self) -> XPLMMenuCheck
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 XPLMMenuCheck
impl Debug for XPLMMenuCheck
source§impl Hash for XPLMMenuCheck
impl Hash for XPLMMenuCheck
source§impl PartialEq for XPLMMenuCheck
impl PartialEq for XPLMMenuCheck
source§fn eq(&self, other: &XPLMMenuCheck) -> bool
fn eq(&self, other: &XPLMMenuCheck) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for XPLMMenuCheck
impl Eq for XPLMMenuCheck
impl StructuralEq for XPLMMenuCheck
impl StructuralPartialEq for XPLMMenuCheck
Auto Trait Implementations§
impl RefUnwindSafe for XPLMMenuCheck
impl Send for XPLMMenuCheck
impl Sync for XPLMMenuCheck
impl Unpin for XPLMMenuCheck
impl UnwindSafe for XPLMMenuCheck
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