use alloc::string::String;
use core::fmt::{Display, Formatter};
pub type Result<T> = core::result::Result<T, Error>;
#[derive(Debug)]
pub struct Error {
pub(crate) reason: String
}
impl Display for Error {
fn fmt(&self, f: &mut Formatter<'_>) -> core::fmt::Result {
core::fmt::Debug::fmt(self, f)
}
}