risingwave_expr::error

Type Alias Result

source
pub type Result<T, E = ExprError> = Result<T, E>;
Expand description

A specialized Result type for expression operations.

Aliased Type§

enum Result<T, E = ExprError> {
    Ok(T),
    Err(E),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(E)

Contains the error value