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<()>;
}
Expand description
feature = "window"
WindowAggregate is the callback interface for
user-defined aggregate window function.