opc-da-client 0.1.3

Backend-agnostic OPC DA client library for Rust — async, trait-based, with RAII COM guard
Documentation
1
2
3
4
5
6
7
8
9
//! Backend implementations for OPC DA communication.
//!
//! Each backend is gated behind a feature flag.

#[cfg(feature = "opc-da-backend")]
pub mod connector;

#[cfg(feature = "opc-da-backend")]
pub mod opc_da;