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