epics-base-rs 0.25.0

Pure Rust EPICS IOC core — record system, database, iocsh, calc engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod c_cast;
pub mod c_parse;
mod codec;
mod dbr;
mod pv_string;
mod value;

pub use codec::*;
pub use dbr::*;
pub use pv_string::*;
pub use value::*;
// `WallTime` moved down into `epics-libcom-rs` with the rest of the libCom
// layer (issue #55): `runtime::time` returns it, so leaving it here would have
// made the lower crate depend on the higher one. Re-exported at its original
// `types::WallTime` path, which is what every DBR codec, filter and snapshot
// in this crate — and every downstream crate — already names.
pub use epics_libcom_rs::walltime::WallTime;