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