rust-patterns 0.1.0

A modern Rust design patterns library with type-safe, efficient implementations
Documentation
1
2
3
4
5
6
7
8
9
10
pub use inventory::submit;
pub use static_assertions::{assert_impl_one, const_assert};

mod builder;
mod factory;
mod observer;

pub use factory::*;
pub use observer::*;
pub use rust_pattern_macros::*;