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