event_listener_primitives/
lib.rs

1#![warn(rust_2018_idioms, missing_debug_implementations, missing_docs)]
2#![doc = include_str!("../readme.md")]
3
4mod handler_id;
5mod once;
6mod regular;
7
8pub use handler_id::HandlerId;
9pub use once::BagOnce;
10pub use regular::Bag;