1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
// Copyright © 2024 Stephan Kunz #![no_std] //! Core of `DiMAS` /// States for usage in builders #[cfg(feature = "std")] pub mod builder_states; /// Enums pub mod enums; /// Error handling pub mod error; /// `Message`, `Request`, `Response`, `Feedback` pub mod message_types; /// Traits pub mod traits; /// Utilities pub mod utils; // flatten pub use error::Result;