macro_rules! count_where { ($data:expr, $field:expr, $pred:expr) => { ... }; }
Quick count with filter.
let count = count_where!(products, Product::stock_r(), |&s| s > 0);