adar-registry 0.2.1

Advanced Architecture (ADAR) is a collection of architectural tools that help you write more readable and performant code.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![doc = include_str!("../README.md")]

pub mod entry;
pub mod event;
pub mod registry;
pub mod registry_map;
pub mod traced_registry;
pub mod traced_registry_map;

pub mod prelude {
    pub use crate::entry::*;
    pub use crate::event::*;
    pub use crate::registry::*;
    pub use crate::registry_map::*;
    pub use crate::traced_registry::*;
    pub use crate::traced_registry_map::*;
}