pub type YDBResult<T> = Result<T, YDBError>;
A specialized Result type returned by a YottaDB function.
Result
enum YDBResult<T> { Ok(T), Err(YDBError), }
Contains the success value
Contains the error value