pub trait FilterFunction: Send + Sync {
// Required method
fn call(&self, args: &[LiteralValue]) -> Option<LiteralValue>;
}pub trait FilterFunction: Send + Sync {
// Required method
fn call(&self, args: &[LiteralValue]) -> Option<LiteralValue>;
}