1 2 3 4 5 6 7
//! Common types and utilities. /// Configuration error type. pub use crate::error::Error; /// Configuration result type. pub type Result<T> = core::result::Result<T, Error>;