rufl 0.1.3

A powerful util function library for rust
Documentation
1
2
3
4
5
6
7
8
9
10
//! eventbus implements a simple event bus lib. based on [Simple-Event-Bus](!https://github.com/dimitri-br/Simple-Event-Bus), add some features.
//!

mod event;
mod event_bus;
mod subscriber;

pub use event::Event;
pub use event_bus::EventBus;
pub use subscriber::Subscriber;