lowlevel_types/lib.rs
1//! # Lowlevel Types
2//!
3//! Lowlevel Types is an implementation of types commonly used for low level access, such as ASCII
4//! characters and strings.
5//!
6//! ## Features
7//!
8//! - Built in support for Serde serialization and deserialization
9//! - ASCII Character and Fixed Length String support
10//!
11//! ## Installation
12//!
13//! Add this to your Cargo.toml:
14//!
15//! ```toml
16//! [dependencies]
17//! lowlevel-types = { version = "1" }
18//! ```
19//!
20//! ## Legal
21//!
22//! Lowlevel Types is copyright © 2025 JEleniel and released under either [The MIT License](LICENSE-MIT.md)
23//! or [The Apache License](LICENSE-Apache.md), at your option.
24//!
25//! Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this crate by you
26//! shall be licensed as above, without any additional terms or conditions.
27
28/// ASCII types
29pub mod ascii;
30
31#[cfg(test)]
32mod tests {}