pub trait Filterable: Sized {
    type Meta: Meta<Self>;
    fn get_meta() -> Self::Meta;
}
Expand description

Something that can produce a Meta for itself.

The derivable trait from this file. A type implementing Filterable can provide an object which describes its supported fields and their operators.

Associated Types

Meta is the type which can describe our fields and their operators.

Required methods

get_meta produces an instance of our Meta type.

Implementations on Foreign Types

Implementors