pub type RawResult<T> = Result<T, RawError>;
Result type alias using RawError.
pub enum RawResult<T> { Ok(T), Err(RawError), }
Contains the success value
Contains the error value