Skip to main content

plugx_input/
lib.rs

1#![doc = include_str!("../README.md")]
2
3mod impls;
4mod input;
5
6#[doc(inline)]
7pub use input::Input;
8
9#[cfg(any(feature = "serde", feature = "rkyv"))]
10pub mod error;
11#[cfg(any(feature = "serde", feature = "rkyv"))]
12pub mod position;
13
14#[cfg(feature = "serde")]
15pub mod serde;
16
17#[cfg(feature = "rkyv")]
18pub mod rkyv;