Enum xplane_sys::XPWidgetPropertyID
source · #[non_exhaustive]#[repr(u32)]pub enum XPWidgetPropertyID {
Refcon = 0,
Dragging = 1,
DragXOff = 2,
DragYOff = 3,
Hilited = 4,
Object = 5,
Clip = 6,
Enabled = 7,
UserStart = 10_000,
}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.
Refcon = 0
Dragging = 1
DragXOff = 2
DragYOff = 3
Hilited = 4
Object = 5
Clip = 6
Enabled = 7
UserStart = 10_000
Trait Implementations§
source§impl Clone for XPWidgetPropertyID
impl Clone for XPWidgetPropertyID
source§fn clone(&self) -> XPWidgetPropertyID
fn clone(&self) -> XPWidgetPropertyID
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 XPWidgetPropertyID
impl Debug for XPWidgetPropertyID
source§impl Hash for XPWidgetPropertyID
impl Hash for XPWidgetPropertyID
source§impl PartialEq for XPWidgetPropertyID
impl PartialEq for XPWidgetPropertyID
source§fn eq(&self, other: &XPWidgetPropertyID) -> bool
fn eq(&self, other: &XPWidgetPropertyID) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for XPWidgetPropertyID
impl Eq for XPWidgetPropertyID
impl StructuralEq for XPWidgetPropertyID
impl StructuralPartialEq for XPWidgetPropertyID
Auto Trait Implementations§
impl RefUnwindSafe for XPWidgetPropertyID
impl Send for XPWidgetPropertyID
impl Sync for XPWidgetPropertyID
impl Unpin for XPWidgetPropertyID
impl UnwindSafe for XPWidgetPropertyID
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