pub trait WindowAggregate<A, T>: Aggregate<A, T>{
// Required methods
fn value(&self, _: Option<&A>) -> Result<T>;
fn inverse(&self, _: &mut Context<'_>, _: &mut A) -> Result<()>;
}Available on crate features
functions and window only.Expand description
WindowAggregate is the callback interface for
user-defined aggregate window function.