pub type OpcResult<T> = Result<T, OpcError>;
Result type alias for OPC DA operations.
pub enum OpcResult<T> { Ok(T), Err(OpcError), }
Contains the success value
Contains the error value