Enum xplane_sys::XPTextFieldProperty
source · #[non_exhaustive]#[repr(u32)]pub enum XPTextFieldProperty {
EditFieldSelStart = 1_400,
EditFieldSelEnd = 1_401,
EditFieldSelDragStart = 1_402,
TextFieldType = 1_403,
PasswordMode = 1_404,
MaxCharacters = 1_405,
ScrollPosition = 1_406,
Font = 1_407,
ActiveEditSide = 1_408,
}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.
EditFieldSelStart = 1_400
EditFieldSelEnd = 1_401
EditFieldSelDragStart = 1_402
TextFieldType = 1_403
PasswordMode = 1_404
MaxCharacters = 1_405
ScrollPosition = 1_406
Font = 1_407
ActiveEditSide = 1_408
Trait Implementations§
source§impl Clone for XPTextFieldProperty
impl Clone for XPTextFieldProperty
source§fn clone(&self) -> XPTextFieldProperty
fn clone(&self) -> XPTextFieldProperty
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 XPTextFieldProperty
impl Debug for XPTextFieldProperty
source§impl Hash for XPTextFieldProperty
impl Hash for XPTextFieldProperty
source§impl PartialEq for XPTextFieldProperty
impl PartialEq for XPTextFieldProperty
source§fn eq(&self, other: &XPTextFieldProperty) -> bool
fn eq(&self, other: &XPTextFieldProperty) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for XPTextFieldProperty
impl Eq for XPTextFieldProperty
impl StructuralEq for XPTextFieldProperty
impl StructuralPartialEq for XPTextFieldProperty
Auto Trait Implementations§
impl RefUnwindSafe for XPTextFieldProperty
impl Send for XPTextFieldProperty
impl Sync for XPTextFieldProperty
impl Unpin for XPTextFieldProperty
impl UnwindSafe for XPTextFieldProperty
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