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