1//! [`Result`] type alias 2/// Result type alias used throughout this crate, defaulting the error type 3/// to the crate's [`Error`](crate::error::Error). 4pub type Result<T> = std::result::Result<T, crate::error::Error>;