asyn-rs 0.9.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
15
16
#![allow(dead_code)]
#![allow(unused_imports)]
//! Transport layer for port communication.
//!
//! Defines the [`RuntimeClient`] trait and provides [`InProcessClient`]
//! as the primary fast-path implementation (no serialization).

pub mod client;
pub mod error;
pub mod in_process;
pub mod tracker;

pub use client::{ConnectionState, RuntimeClient};
pub use error::TransportError;
pub use in_process::InProcessClient;
pub use tracker::RequestTracker;