epics_ca/lib.rs
1//! Client library for EPICS Channel Access protocol.
2//!
3//! More info about:
4//!
5//! + [Channels](channel)
6//! + [Requests](request)
7//!
8
9/// Channels
10pub mod channel;
11/// Context
12pub mod context;
13/// Error types
14pub mod error;
15/// Different types of requests
16pub mod request;
17/// Native EPICS types
18pub mod types;
19mod utils;
20
21pub use channel::{Channel, TypedChannel, ValueChannel};
22pub use context::Context;
23pub use error::Error;