pzzld-core 0.0.0

The pzzld platform facilitates unique experiences enabled by generative technologies and WebAssembly (WASM)
Documentation
/*
    Appellation: traits <module>
    Contrib: FL03 <jo3mccain@icloud.com>
*/
//! # Traits
//!
//!
#[doc(inline)]
pub use self::err::{Error, ErrorKind};

mod err;

pub(crate) mod prelude {
    pub use super::err::*;
}

/// A type alias for a [`Result`] which employs the use of the custom [`Error`] type.
pub type Result<T = ()> = core::result::Result<T, Error>;

#[cfg(test)]
mod tests {}