Type Alias YDBResult

Source
pub type YDBResult<T> = Result<T, YDBError>;
Expand description

A specialized Result type returned by a YottaDB function.

Aliased Type§

enum YDBResult<T> {
    Ok(T),
    Err(YDBError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(YDBError)

Contains the error value