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