Trait nitroglycerin::query::Query[][src]

pub trait Query<D>: TableIndex {
    type Builder;
    fn query(client: D) -> Self::Builder;
}
Expand description

Trait that declares a type can be built into a query request

Associated Types

The builder type that performs the query request

Required methods

Create the query builder

Implementors