pub type DriverResult<T> = Result<T, DriverError>;Expand description
A Result alias for DriverError, mirroring the ergonomics of opcda_bridge::Result
(and, further down, sqlx-style crate-local aliases already used by bhtune-db).
Aliased Type§
pub enum DriverResult<T> {
Ok(T),
Err(DriverError),
}