rust-pattern-components 0.1.2

A Rust library providing implementations of common design patterns
Documentation
1
2
3
4
5
6
7
8
9
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::*;