#[repr(u8)]pub enum PointerDataInteractionState {
PressedThisFrame = 0,
Pressed = 1,
ReleasedThisFrame = 2,
Released = 3,
}Variants§
Trait Implementations§
Source§impl Clone for PointerDataInteractionState
impl Clone for PointerDataInteractionState
Source§fn clone(&self) -> PointerDataInteractionState
fn clone(&self) -> PointerDataInteractionState
Returns a duplicate 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 PointerDataInteractionState
impl Debug for PointerDataInteractionState
Source§impl Default for PointerDataInteractionState
impl Default for PointerDataInteractionState
Source§fn default() -> PointerDataInteractionState
fn default() -> PointerDataInteractionState
Returns the “default value” for a type. Read more
impl Copy for PointerDataInteractionState
impl Eq for PointerDataInteractionState
impl StructuralPartialEq for PointerDataInteractionState
Auto Trait Implementations§
impl Freeze for PointerDataInteractionState
impl RefUnwindSafe for PointerDataInteractionState
impl Send for PointerDataInteractionState
impl Sync for PointerDataInteractionState
impl Unpin for PointerDataInteractionState
impl UnsafeUnpin for PointerDataInteractionState
impl UnwindSafe for PointerDataInteractionState
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.