asyn-rs 0.6.1

Rust port of EPICS asyn - async device I/O framework
Documentation
1
2
3
4
5
6
7
8
use crate::error::AsynResult;
use crate::user::AsynUser;

/// 64-bit float I/O interface (asynFloat64 equivalent).
pub trait AsynFloat64: Send + Sync {
    fn read_float64(&mut self, user: &AsynUser) -> AsynResult<f64>;
    fn write_float64(&mut self, user: &mut AsynUser, value: f64) -> AsynResult<()>;
}