#events #event-system #mono #listen #super

nightly mono_event

超快的事件系统

6 个版本 (破坏性更新)

0.6.0 2024年5月22日
0.5.0 2024年5月22日
0.4.0 2024年5月18日
0.3.0 2024年5月15日
0.1.0 2024年5月15日

#9 in #mono

MIT 许可协议

4KB

mono 事件

此库仅为 nightly 版本,因为它依赖于特性化

#![feature(min_specialization)]

use mono_event::{event, highest_priority, listen, low_priority};

#[test]
fn example() {
    SayHi.dispatch().unwrap();
}

#[event]
pub struct SayHi;

#[highest_priority]
#[listen(SayHi)]
fn print_hi(event: &mut SayHi) {
    println!("say hi");
}

#[low_priority]
#[listen(SayHi)]
fn print_hmm(event: &mut SayHi) {
    println!("say hmm..");
}

output:
say hmm..
say hi

依赖项

~305–780KB
~18K SLoC