pub type Result<T> = Result<T, Error>;Expand description
A Result alias using Error, mirroring the ergonomics of
anyhow::Result (opcda_bridge::Result<T>) for a crate that
intentionally does not depend on anyhow itself.
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(Error),
}