pub enum PanDirection {
Left,
Right,
Up,
Down,
// some variants omitted
}
Variants§
Trait Implementations§
Source§impl Clone for PanDirection
impl Clone for PanDirection
Source§fn clone(&self) -> PanDirection
fn clone(&self) -> PanDirection
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 PanDirection
impl Debug for PanDirection
Source§impl Display for PanDirection
impl Display for PanDirection
Source§impl<'a> FromValue<'a> for PanDirection
impl<'a> FromValue<'a> for PanDirection
unsafe fn from_value(value: &Value) -> Self
Source§impl<'a> FromValueOptional<'a> for PanDirection
impl<'a> FromValueOptional<'a> for PanDirection
unsafe fn from_value_optional(value: &Value) -> Option<Self>
Source§impl Hash for PanDirection
impl Hash for PanDirection
Source§impl Ord for PanDirection
impl Ord for PanDirection
Source§fn cmp(&self, other: &PanDirection) -> Ordering
fn cmp(&self, other: &PanDirection) -> 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 PanDirection
impl PartialEq for PanDirection
Source§impl PartialOrd for PanDirection
impl PartialOrd for PanDirection
Source§impl StaticType for PanDirection
impl StaticType for PanDirection
Source§fn static_type() -> Type
fn static_type() -> Type
Returns the type identifier of
Self
.impl Copy for PanDirection
impl Eq for PanDirection
impl StructuralPartialEq for PanDirection
Auto Trait Implementations§
impl Freeze for PanDirection
impl RefUnwindSafe for PanDirection
impl Send for PanDirection
impl Sync for PanDirection
impl Unpin for PanDirection
impl UnwindSafe for PanDirection
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
.