pub type AggregateFunctionResult<T> = Result<T, AggregateFunctionError>;Expand description
Result type for aggregate function operations
Aliased Type§
pub enum AggregateFunctionResult<T> {
Ok(T),
Err(AggregateFunctionError),
}pub type AggregateFunctionResult<T> = Result<T, AggregateFunctionError>;Result type for aggregate function operations
pub enum AggregateFunctionResult<T> {
Ok(T),
Err(AggregateFunctionError),
}