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