pub struct TouchPointState(/* private fields */);Expand description
C++ enum: Qt::TouchPointState.
Implementations§
Source§impl TouchPointState
impl TouchPointState
Sourcepub const TouchPointPressed: TouchPointState
pub const TouchPointPressed: TouchPointState
C++ enum variant: TouchPointPressed = 1
Sourcepub const TouchPointMoved: TouchPointState
pub const TouchPointMoved: TouchPointState
C++ enum variant: TouchPointMoved = 2
Sourcepub const TouchPointStationary: TouchPointState
pub const TouchPointStationary: TouchPointState
C++ enum variant: TouchPointStationary = 4
Sourcepub const TouchPointReleased: TouchPointState
pub const TouchPointReleased: TouchPointState
C++ enum variant: TouchPointReleased = 8
Trait Implementations§
Source§impl Clone for TouchPointState
impl Clone for TouchPointState
Source§fn clone(&self) -> TouchPointState
fn clone(&self) -> TouchPointState
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 TouchPointState
impl Debug for TouchPointState
Source§impl From<TouchPointState> for c_int
impl From<TouchPointState> for c_int
Source§fn from(value: TouchPointState) -> Self
fn from(value: TouchPointState) -> Self
Converts to this type from the input type.
Source§impl From<i32> for TouchPointState
impl From<i32> for TouchPointState
Source§impl PartialEq for TouchPointState
impl PartialEq for TouchPointState
Source§fn eq(&self, other: &TouchPointState) -> bool
fn eq(&self, other: &TouchPointState) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for TouchPointState
impl Eq for TouchPointState
impl StructuralPartialEq for TouchPointState
Auto Trait Implementations§
impl Freeze for TouchPointState
impl RefUnwindSafe for TouchPointState
impl Send for TouchPointState
impl Sync for TouchPointState
impl Unpin for TouchPointState
impl UnsafeUnpin for TouchPointState
impl UnwindSafe for TouchPointState
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