1 2 3 4 5 6 7 8
//! Crate preuluide pub use crate::error::Error; pub type Result<T> = core::result::Result<T, Error>; //Generic wrapper tuple struct for newtype pattern pub struct W<T>(pub T);