1//! Library-specific type definitions 2 3/// A simple type alias so as to DRY. 4pub(crate) type Result<T> = std::result::Result<T, Box<dyn std::error::Error + Send + Sync>>;