pub type Result<T> = Result<T, Error>;Expand description
A specialized Result type for open-detect operations.
This type is used throughout the crate for any operation that may produce an error.
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(Error),
}