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