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