1//! Boxed error and result aliases used by pluggable provider trait 2//! abstractions. 3 4pub type ProviderError = Box<dyn std::error::Error + Send + Sync + 'static>; 5 6pub type ProviderResult<T> = Result<T, ProviderError>;