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