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