Trait Meta

Source
pub trait Meta<'s, R> {
    // Required method
    fn accept_visitor<V: SortVisitor<'s, Target = R>>(&self, visitor: &mut V)
       where Self: Sized;
}
Available on crate feature sort only.
Expand description

Metadata about sorting for a type.

Required Methods§

Source

fn accept_visitor<V: SortVisitor<'s, Target = R>>(&self, visitor: &mut V)
where Self: Sized,

visitor will receive a callback for each sort that is defined for this type.

Implementors§