pub enum ScrollDirection {
Up,
Down,
}Expand description
Direction for a scroll action.
Variants§
Trait Implementations§
Source§impl Clone for ScrollDirection
impl Clone for ScrollDirection
Source§fn clone(&self) -> ScrollDirection
fn clone(&self) -> ScrollDirection
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 moreimpl Copy for ScrollDirection
Source§impl Debug for ScrollDirection
impl Debug for ScrollDirection
Source§impl Default for ScrollDirection
impl Default for ScrollDirection
Source§fn default() -> ScrollDirection
fn default() -> ScrollDirection
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ScrollDirection
impl<'de> Deserialize<'de> for ScrollDirection
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for ScrollDirection
Source§impl From<&str> for ScrollDirection
impl From<&str> for ScrollDirection
Source§impl From<ScrollDirection> for String
impl From<ScrollDirection> for String
Source§fn from(direction: ScrollDirection) -> Self
fn from(direction: ScrollDirection) -> Self
Converts to this type from the input type.
Source§impl From<String> for ScrollDirection
impl From<String> for ScrollDirection
Source§impl PartialEq for ScrollDirection
impl PartialEq for ScrollDirection
Source§fn eq(&self, other: &ScrollDirection) -> bool
fn eq(&self, other: &ScrollDirection) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ScrollDirection
impl Serialize for ScrollDirection
impl StructuralPartialEq for ScrollDirection
Auto Trait Implementations§
impl Freeze for ScrollDirection
impl RefUnwindSafe for ScrollDirection
impl Send for ScrollDirection
impl Sync for ScrollDirection
impl Unpin for ScrollDirection
impl UnsafeUnpin for ScrollDirection
impl UnwindSafe for ScrollDirection
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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.