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