pub type NerfResult<T> = Result<T, NerfError>;
Convenience alias.
pub enum NerfResult<T> { Ok(T), Err(NerfError), }
Contains the success value
Contains the error value