Skip to main content

GroupBy

Trait GroupBy 

Source
pub trait GroupBy<K> {
    type ReturnOperand;

    // Required method
    fn group_by(&self, key: K) -> Self::ReturnOperand;
}

Required Associated Types§

Required Methods§

Source

fn group_by(&self, key: K) -> Self::ReturnOperand

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§