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