pub type Result<T> = Result<T, Error>;Expand description
A Result type alias for hang operations.
This is used throughout the hang crate as a convenient shorthand
for std::result::Result<T, hang::Error>.
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(Error),
}