risingwave_frontend::error

Type Alias Result

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

The result type for the frontend crate.

Aliased Type§

enum Result<T> {
    Ok(T),
    Err(RwError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(RwError)

Contains the error value