#[non_exhaustive]pub enum LongPressState {
Query,
Activate,
Cancel,
}
Expand description
The states for the ClickAction::long-press
signal.
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.
Query
Queries the action whether it supports long presses
Activate
Activates the action on a long press
Cancel
The long press was cancelled
Trait Implementations§
Source§impl Clone for LongPressState
impl Clone for LongPressState
Source§fn clone(&self) -> LongPressState
fn clone(&self) -> LongPressState
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 LongPressState
impl Debug for LongPressState
Source§impl Display for LongPressState
impl Display for LongPressState
Source§impl<'a> FromValue<'a> for LongPressState
impl<'a> FromValue<'a> for LongPressState
Source§unsafe fn from_value(value: &Value) -> Self
unsafe fn from_value(value: &Value) -> Self
Safety Read more
Source§impl<'a> FromValueOptional<'a> for LongPressState
impl<'a> FromValueOptional<'a> for LongPressState
Source§impl Hash for LongPressState
impl Hash for LongPressState
Source§impl Ord for LongPressState
impl Ord for LongPressState
Source§fn cmp(&self, other: &LongPressState) -> Ordering
fn cmp(&self, other: &LongPressState) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for LongPressState
impl PartialEq for LongPressState
Source§impl PartialOrd for LongPressState
impl PartialOrd for LongPressState
Source§impl SetValue for LongPressState
impl SetValue for LongPressState
Source§impl StaticType for LongPressState
impl StaticType for LongPressState
Source§fn static_type() -> Type
fn static_type() -> Type
Returns the type identifier of
Self
.impl Copy for LongPressState
impl Eq for LongPressState
impl StructuralPartialEq for LongPressState
Auto Trait Implementations§
impl Freeze for LongPressState
impl RefUnwindSafe for LongPressState
impl Send for LongPressState
impl Sync for LongPressState
impl Unpin for LongPressState
impl UnwindSafe for LongPressState
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<T> ToSendValue for T
impl<T> ToSendValue for T
Source§fn to_send_value(&self) -> SendValue
fn to_send_value(&self) -> SendValue
Returns a
SendValue
clone of self
.