observitor 1.0.0

Observer trait and handling
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Observer trait and handling
//!
//! # Examples
//!
//! ```
//! // tbi
//! ```

#![forbid(unsafe_code, future_incompatible, rust_2018_idioms)]
#![deny(missing_debug_implementations, nonstandard_style)]
#![warn(missing_docs, missing_doc_code_examples, unreachable_pub)]

pub(crate) mod observe;

pub use observe::Observe;