pub enum KeyArgument {
Char(char),
Code(u32),
Mouse(u32),
}Variants§
Trait Implementations§
Source§impl Argument for KeyArgument
impl Argument for KeyArgument
fn to_argument_string(&self) -> String
Source§impl Clone for KeyArgument
impl Clone for KeyArgument
Source§fn clone(&self) -> KeyArgument
fn clone(&self) -> KeyArgument
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 KeyArgument
impl Debug for KeyArgument
impl Copy for KeyArgument
Auto Trait Implementations§
impl Freeze for KeyArgument
impl RefUnwindSafe for KeyArgument
impl Send for KeyArgument
impl Sync for KeyArgument
impl Unpin for KeyArgument
impl UnwindSafe for KeyArgument
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