kle_serial/f64.rs
1//! Type aliases of all public kle-serial types using [`f64`] 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<f64>`]
13pub type Key = crate::Key<f64>;
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<f64>`]
22pub type Keyboard = crate::Keyboard<f64>;
23
24/// Type alias of [`crate::KeyIterator<f64>`]
25pub type KeyIterator = crate::KeyIterator<f64>;