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
use crate::error::AsynResult;
use crate::user::AsynUser;

/// 32-bit integer I/O interface (asynInt32 equivalent).
pub trait AsynInt32: Send + Sync {
    fn read_int32(&mut self, user: &AsynUser) -> AsynResult<i32>;
    fn write_int32(&mut self, user: &mut AsynUser, value: i32) -> AsynResult<()>;
    fn get_bounds(&self, _user: &AsynUser) -> AsynResult<(i32, i32)> {
        Ok((i32::MIN, i32::MAX))
    }
}