pub type Result<T> = Result<T, ClawshError>;
Type alias for Result with the error type set to ClawshError
Result
ClawshError
pub enum Result<T> { Ok(T), Err(ClawshError), }
Contains the success value
Contains the error value