pub type Result<T, E = NeuErr> = Result<T, E>;
Result type alias using the crate’s NeuErr type.
Result
NeuErr
pub enum Result<T, E = NeuErr> { Ok(T), Err(E), }
Contains the success value
Contains the error value