pub struct IdMulti {
    providers: HashMap<String, Box<dyn SuggestionProvider>>,
}
Expand description

A provider that aggregates suggestions from suggesters that tracks an ID per suggester (or suggester tree).

Fields

providers: HashMap<String, Box<dyn SuggestionProvider>>

The providers to aggregate from.

Implementations

Create a Multi that draws suggestions from providers.

Modify this provider to include another named provider tree.

Return metadata about the contained providers.

Provide suggested results for query using only the providers listed by ID.

Errors

Returns an error if any sub providers return an error.

Get a mutable reference to a provider by name.

Trait Implementations

Returns the “default value” for a type. Read more

An operator-visible name for this suggestion provider.

Generate a set of cache inputs for a given query specific to this provider. Any property of the query that affects how suggestions are generated should be included. Read more

Provide suggested results for query.

Reconfigure the provider, using a new configuration object. State should be preserved if possible. Read more

Return if this provider is null and can be ignored. Providers that set this to true should be ignored in any place where suggestions are needed. Providers with this set to true likely only serve as a blank space where we may need a provider but can’t otherwise supply one. Read more

Use Self::cache_inputs to generate a single cache key. This function should not normally be overridden by provider implementations. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more