Ask users to share use cases

This commit is contained in:
Héctor Ramón Jiménez 2019-09-05 09:59:38 +02:00
parent 3fb06f6666
commit c48739029b
7 changed files with 37 additions and 3 deletions

View file

@ -1,8 +1,11 @@
/// The symbolic name of a keyboard key.
///
/// This is mostly the `KeyCode` type found in `winit`. If you are using
/// `winit`, consider enabling the `winit` feature to get conversion
/// implementations for free!
/// This is mostly the `KeyCode` type found in [`winit`].
///
/// If you are using [`winit`], consider enabling the `winit` feature to get
/// conversion implementations for free!
///
/// [`winit`]: https://docs.rs/winit/0.20.0-alpha3/winit/
#[derive(Debug, Hash, Ord, PartialOrd, PartialEq, Eq, Clone, Copy)]
#[repr(u32)]
#[allow(missing_docs)]