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