Normalize some whitespace
This commit is contained in:
parent
0d88ebe5b9
commit
6ec00c1e33
1 changed files with 3 additions and 3 deletions
|
@ -145,7 +145,7 @@ macro_rules! evdev_enum {
|
||||||
($t:ty, Array, $($(#[$attr:meta])* $c:ident = $val:expr,)*) => {
|
($t:ty, Array, $($(#[$attr:meta])* $c:ident = $val:expr,)*) => {
|
||||||
evdev_enum!(
|
evdev_enum!(
|
||||||
$t,
|
$t,
|
||||||
Array:bitvec::BitArr!(for <$t>::COUNT, in u8),
|
Array: bitvec::BitArr!(for <$t>::COUNT, in u8),
|
||||||
bitvec::array::BitArray::as_mut_raw_slice,
|
bitvec::array::BitArray::as_mut_raw_slice,
|
||||||
bitvec::array::BitArray::zeroed(),
|
bitvec::array::BitArray::zeroed(),
|
||||||
$($(#[$attr])* $c = $val,)*
|
$($(#[$attr])* $c = $val,)*
|
||||||
|
@ -154,7 +154,7 @@ macro_rules! evdev_enum {
|
||||||
($t:ty, box Array, $($(#[$attr:meta])* $c:ident = $val:expr,)*) => {
|
($t:ty, box Array, $($(#[$attr:meta])* $c:ident = $val:expr,)*) => {
|
||||||
evdev_enum!(
|
evdev_enum!(
|
||||||
$t,
|
$t,
|
||||||
Array:Box<bitvec::BitArr!(for <$t>::COUNT, in u8)>,
|
Array: Box<bitvec::BitArr!(for <$t>::COUNT, in u8)>,
|
||||||
bitvec::array::BitArray::as_mut_raw_slice,
|
bitvec::array::BitArray::as_mut_raw_slice,
|
||||||
Box::new(bitvec::array::BitArray::zeroed()),
|
Box::new(bitvec::array::BitArray::zeroed()),
|
||||||
$($(#[$attr])* $c = $val,)*
|
$($(#[$attr])* $c = $val,)*
|
||||||
|
@ -189,7 +189,7 @@ macro_rules! evdev_enum {
|
||||||
impl std::str::FromStr for $t {
|
impl std::str::FromStr for $t {
|
||||||
type Err = crate::EnumParseError;
|
type Err = crate::EnumParseError;
|
||||||
|
|
||||||
fn from_str(s: &str) -> Result<Self, Self::Err> {
|
fn from_str(s: &str) -> Result<Self, Self::Err> {
|
||||||
let map: &[(&'static str, $t)] = &[
|
let map: &[(&'static str, $t)] = &[
|
||||||
$((stringify!($c), Self::$c),)*
|
$((stringify!($c), Self::$c),)*
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in a new issue