/// General purpose error type for this crate.
#[derive(Debug, thiserror::Error)]pubenumError{/// Custom.
#[error("custom: {0}")]
Custom(String),}implError{/// Create a custom error.
pubfncustom(msg: impl ToString)->Self{Self::Custom(msg.to_string())}}