pub trait GroupCriteria {
    fn group_for(&self, headers: &Headers, row: &Row) -> u64;
}
Expand description

Types implementing this trait can be used to group rows in a row stream, both for group() and adjacent_group()

Required methods

Compute the hash of a given row as u64.

Implementations on Foreign Types

Implementors