pub type Result<T, E = NexError> = Result<T, E>;
A convenient Result type alias using NexError.
Result
NexError
pub enum Result<T, E = NexError> { Ok(T), Err(E), }
Contains the success value
Contains the error value