pub enum DecodeType {
Key(Key, KeyType),
Mouse(Mouse),
}Variants§
Trait Implementations§
Source§impl Clone for DecodeType
impl Clone for DecodeType
Source§fn clone(&self) -> DecodeType
fn clone(&self) -> DecodeType
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 moreSource§impl Debug for DecodeType
impl Debug for DecodeType
Source§impl PartialEq for DecodeType
impl PartialEq for DecodeType
Source§fn eq(&self, other: &DecodeType) -> bool
fn eq(&self, other: &DecodeType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for DecodeType
impl StructuralPartialEq for DecodeType
Auto Trait Implementations§
impl Freeze for DecodeType
impl RefUnwindSafe for DecodeType
impl Send for DecodeType
impl Sync for DecodeType
impl Unpin for DecodeType
impl UnsafeUnpin for DecodeType
impl UnwindSafe for DecodeType
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