pub type NumResult<T> = Result<T, NumError>;
⚖️ A numeric-related result.
enum NumResult<T> { Ok(T), Err(NumError), }
Contains the success value
Contains the error value