librush 0.2.2

艾刷 (libRush = lib + IBus + Rust + h): 用 rust 编写的 ibus 模块, 不用 GObject (ibus module written in pure rust, without GObject) (输入法, input method)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! 异步任务
//!
//! + `AtK`: Km 按键管理器 运行任务
//! + `AtS`: 给 pmim-server 发送消息的任务
//! + `AtR`: 从 pmim-server 接收消息的任务

mod k;
mod km;
mod r;
mod s;

pub use k::at_k;
pub use r::at_r;
pub use s::at_s;