pub type Result<T> = Result<T, DanubeError>;
pub enum Result<T> { Ok(T), Err(DanubeError), }
Contains the success value
Contains the error value