pub enum DirectionKeys {
No = 0,
Dir4 = 1,
Dir8 = 2,
Up = 3,
Down = 4,
Left = 5,
Right = 6,
UpDown = 7,
LeftRight = 8,
Unknown = 9,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for DirectionKeys
impl Clone for DirectionKeys
Source§fn clone(&self) -> DirectionKeys
fn clone(&self) -> DirectionKeys
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 PartialEq for DirectionKeys
impl PartialEq for DirectionKeys
impl StructuralPartialEq for DirectionKeys
Auto Trait Implementations§
impl Freeze for DirectionKeys
impl RefUnwindSafe for DirectionKeys
impl Send for DirectionKeys
impl Sync for DirectionKeys
impl Unpin for DirectionKeys
impl UnwindSafe for DirectionKeys
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