Trait agnes::frame::SortBy [] [src]

pub trait SortBy {
    fn sort_by(&mut self, ident: &FieldIdent) -> Result<Vec<usize>>;
}

Trait that provides a function for sorting a data structure's contents.

Required Methods

Sort the contents of this data structure (ascending) by the specified field.

Implementors