1 2 3 4
//! Define a custom Result type. /// A Result using [`core::error::Error`] as error type. pub type Result<T> = core::result::Result<T, Box<dyn core::error::Error + Send + Sync>>;