Trait rsonpath::result::QueryResult
source · 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§
sourcetype Builder<'i, I: Input + 'i>: QueryResultBuilder<'i, I, Self>
type Builder<'i, I: Input + 'i>: QueryResultBuilder<'i, I, Self>
The associated type of the builder.