pub trait QueryResult: Default + Display + PartialEq {
    type Builder<'i, I: Input + 'i>: QueryResultBuilder<'i, I, Self>;
}
Expand description

Result that can be built with some QueryResultBuilder and returned from a query run.

Required Associated Types§

source

type Builder<'i, I: Input + 'i>: QueryResultBuilder<'i, I, Self>

The associated type of the builder.

Implementors§