pub struct GestureState(/* private fields */);Expand description
C++ enum: Qt::GestureState.
Implementations§
Source§impl GestureState
impl GestureState
Sourcepub const NoGesture: GestureState
pub const NoGesture: GestureState
C++ enum variant: NoGesture = 0
Sourcepub const GestureStarted: GestureState
pub const GestureStarted: GestureState
C++ enum variant: GestureStarted = 1
Sourcepub const GestureUpdated: GestureState
pub const GestureUpdated: GestureState
C++ enum variant: GestureUpdated = 2
Sourcepub const GestureFinished: GestureState
pub const GestureFinished: GestureState
C++ enum variant: GestureFinished = 3
Sourcepub const GestureCanceled: GestureState
pub const GestureCanceled: GestureState
C++ enum variant: GestureCanceled = 4
Trait Implementations§
Source§impl Clone for GestureState
impl Clone for GestureState
Source§fn clone(&self) -> GestureState
fn clone(&self) -> GestureState
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GestureState
impl Debug for GestureState
Source§impl From<GestureState> for c_int
impl From<GestureState> for c_int
Source§fn from(value: GestureState) -> Self
fn from(value: GestureState) -> Self
Converts to this type from the input type.
Source§impl From<i32> for GestureState
impl From<i32> for GestureState
Source§impl PartialEq for GestureState
impl PartialEq for GestureState
Source§fn eq(&self, other: &GestureState) -> bool
fn eq(&self, other: &GestureState) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for GestureState
impl Eq for GestureState
impl StructuralPartialEq for GestureState
Auto Trait Implementations§
impl Freeze for GestureState
impl RefUnwindSafe for GestureState
impl Send for GestureState
impl Sync for GestureState
impl Unpin for GestureState
impl UnsafeUnpin for GestureState
impl UnwindSafe for GestureState
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