Enum swayipc_async::ClickMethod 
source · #[non_exhaustive]pub enum ClickMethod {
    ButtonAreas,
    Clickfinger,
    None,
}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.
Trait Implementations§
source§impl Clone for ClickMethod
 
impl Clone for ClickMethod
source§fn clone(&self) -> ClickMethod
 
fn clone(&self) -> ClickMethod
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 ClickMethod
 
impl Debug for ClickMethod
source§impl<'de> Deserialize<'de> for ClickMethod
 
impl<'de> Deserialize<'de> for ClickMethod
source§fn deserialize<__D>(
    __deserializer: __D
) -> Result<ClickMethod, <__D as Deserializer<'de>>::Error>where
    __D: Deserializer<'de>,
 
fn deserialize<__D>(
    __deserializer: __D
) -> Result<ClickMethod, <__D as Deserializer<'de>>::Error>where
    __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq for ClickMethod
 
impl PartialEq for ClickMethod
source§fn eq(&self, other: &ClickMethod) -> bool
 
fn eq(&self, other: &ClickMethod) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl Serialize for ClickMethod
 
impl Serialize for ClickMethod
source§fn serialize<__S>(
    &self,
    __serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
    __S: Serializer,
 
fn serialize<__S>(
    &self,
    __serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
    __S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Copy for ClickMethod
impl StructuralPartialEq for ClickMethod
Auto Trait Implementations§
impl RefUnwindSafe for ClickMethod
impl Send for ClickMethod
impl Sync for ClickMethod
impl Unpin for ClickMethod
impl UnwindSafe for ClickMethod
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