Skip to main content

AggregateFunctionResult

Type Alias AggregateFunctionResult 

Source
pub type AggregateFunctionResult<T> = Result<T, FunctionError>;

Aliased Type§

pub enum AggregateFunctionResult<T> {
    Ok(T),
    Err(FunctionError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(FunctionError)

Contains the error value