pub struct ClientVariantFilterProvider {
    matching_provider: Box<dyn SuggestionProvider>,
    default_provider: Box<dyn SuggestionProvider>,
    client_variant: String,
}
Expand description

A provider that gives suggestions base

Fields

matching_provider: Box<dyn SuggestionProvider>

Provider to use for suggestions if there is a client variant match

default_provider: Box<dyn SuggestionProvider>

Provider to use for suggestions if there isn’t a client variant match

client_variant: String

String use to match with client variants from suggest requests

Implementations

Create a boxed Client Variant Provider

Trait Implementations

An operator-visible name for this suggestion provider.

Provide suggested results for query.

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

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