kle-serial 0.3.4

Rust deserialisation library for Keyboard Layout Editor JSON files
Documentation
//! Type aliases of all public kle-serial types using [`f32`] for any generic parameters

/// Type alias of [`crate::Color`]
pub type Color = crate::Color;

/// Type alias of [`crate::Legend`]
pub type Legend = crate::Legend;

/// Type alias of [`crate::Switch`]
pub type Switch = crate::Switch;

/// Type alias of [`crate::Key<f32>`]
pub type Key = crate::Key<f32>;

/// Type alias of [`crate::Background`]
pub type Background = crate::Background;

/// Type alias of [`crate::Metadata`]
pub type Metadata = crate::Metadata;

/// Type alias of [`crate::Keyboard<f32>`]
pub type Keyboard = crate::Keyboard<f32>;

/// Type alias of [`crate::KeyIterator<f32>`]
pub type KeyIterator = crate::KeyIterator<f32>;