use *;
use OwnedRepr;
// Re-export the crate Error.
pub use crateError;
// Alias Result to be the crate Result.
pub type Result<T> = Result;
// Generic Wrapper tuple struct for newtype pattern,
// mostly for external type to type From/TryFrom conversions
;