kle_serial/f32.rs
1//! Type aliases of all public kle-serial types using [`f32`] for any generic parameters
2
3/// Type alias of [`crate::Color`]
4pub type Color = crate::Color;
5
6/// Type alias of [`crate::Legend`]
7pub type Legend = crate::Legend;
8
9/// Type alias of [`crate::Switch`]
10pub type Switch = crate::Switch;
11
12/// Type alias of [`crate::Key<f32>`]
13pub type Key = crate::Key<f32>;
14
15/// Type alias of [`crate::Background`]
16pub type Background = crate::Background;
17
18/// Type alias of [`crate::Metadata`]
19pub type Metadata = crate::Metadata;
20
21/// Type alias of [`crate::Keyboard<f32>`]
22pub type Keyboard = crate::Keyboard<f32>;
23
24/// Type alias of [`crate::KeyIterator<f32>`]
25pub type KeyIterator = crate::KeyIterator<f32>;