asyn-rs 0.6.1

Rust port of EPICS asyn - async device I/O framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/// Events emitted by a runtime actor.
#[derive(Debug, Clone)]
pub enum RuntimeEvent {
    /// Runtime started.
    Started { port_name: String },
    /// Runtime stopped.
    Stopped { port_name: String },
    /// Port connected.
    Connected { port_name: String },
    /// Port disconnected.
    Disconnected { port_name: String },
    /// An error occurred.
    Error { port_name: String, message: String },
}