plugx-input 1.1.0

simple and flexible data-structure for configuration and state manipulation of plugins.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![doc = include_str!("../README.md")]

mod impls;
mod input;

#[doc(inline)]
pub use input::Input;

#[cfg(any(feature = "serde", feature = "rkyv"))]
pub mod error;
#[cfg(any(feature = "serde", feature = "rkyv"))]
pub mod position;

#[cfg(feature = "serde")]
mod serde;

#[cfg(feature = "rkyv")]
mod rkyv;