pub enum CanvasEventKind {
Click,
Drag,
Move,
Release,
}Expand description
Type of canvas interaction
Variants§
Trait Implementations§
Source§impl Clone for CanvasEventKind
impl Clone for CanvasEventKind
Source§fn clone(&self) -> CanvasEventKind
fn clone(&self) -> CanvasEventKind
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 CanvasEventKind
impl Debug for CanvasEventKind
Source§impl<'de> Deserialize<'de> for CanvasEventKind
impl<'de> Deserialize<'de> for CanvasEventKind
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
Source§impl Hash for CanvasEventKind
impl Hash for CanvasEventKind
Source§impl PartialEq for CanvasEventKind
impl PartialEq for CanvasEventKind
Source§impl Serialize for CanvasEventKind
impl Serialize for CanvasEventKind
impl Copy for CanvasEventKind
impl Eq for CanvasEventKind
impl StructuralPartialEq for CanvasEventKind
Auto Trait Implementations§
impl Freeze for CanvasEventKind
impl RefUnwindSafe for CanvasEventKind
impl Send for CanvasEventKind
impl Sync for CanvasEventKind
impl Unpin for CanvasEventKind
impl UnwindSafe for CanvasEventKind
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