pub type Result<T = ()> = Result<T, CoreError>;
a type alias for a Result type pre-configured with the [Error] type
Result
Error
pub enum Result<T = ()> { Ok(T), Err(CoreError), }
Contains the success value
Contains the error value