pub struct CompleteQuery(/* private fields */);Available on crate feature
completion-service only.Expand description
The request builder for CompletionService::complete_query calls.
§Example
use builder::completion_service::CompleteQuery;
let builder = prepare_request_builder();
let response = builder.send().await?;
fn prepare_request_builder() -> CompleteQuery {
// ... details omitted ...
}Implementations§
Source§impl CompleteQuery
impl CompleteQuery
Sourcepub fn with_request<V: Into<CompleteQueryRequest>>(self, v: V) -> Self
pub fn with_request<V: Into<CompleteQueryRequest>>(self, v: V) -> Self
Sets the full request, replacing any prior values.
Sourcepub fn with_options<V: Into<RequestOptions>>(self, v: V) -> Self
pub fn with_options<V: Into<RequestOptions>>(self, v: V) -> Self
Sets all the options, replacing any prior values.
Sourcepub async fn send(self) -> Result<CompleteQueryResponse>
pub async fn send(self) -> Result<CompleteQueryResponse>
Sends the request.
Sourcepub fn set_data_store<T: Into<String>>(self, v: T) -> Self
pub fn set_data_store<T: Into<String>>(self, v: T) -> Self
Sets the value of data_store.
This is a required field for requests.
Sourcepub fn set_query<T: Into<String>>(self, v: T) -> Self
pub fn set_query<T: Into<String>>(self, v: T) -> Self
Sets the value of query.
This is a required field for requests.
Sourcepub fn set_query_model<T: Into<String>>(self, v: T) -> Self
pub fn set_query_model<T: Into<String>>(self, v: T) -> Self
Sets the value of query_model.
Sourcepub fn set_user_pseudo_id<T: Into<String>>(self, v: T) -> Self
pub fn set_user_pseudo_id<T: Into<String>>(self, v: T) -> Self
Sets the value of user_pseudo_id.
Sourcepub fn set_include_tail_suggestions<T: Into<bool>>(self, v: T) -> Self
pub fn set_include_tail_suggestions<T: Into<bool>>(self, v: T) -> Self
Sets the value of include_tail_suggestions.
Trait Implementations§
Source§impl Clone for CompleteQuery
impl Clone for CompleteQuery
Source§fn clone(&self) -> CompleteQuery
fn clone(&self) -> CompleteQuery
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for CompleteQuery
impl !RefUnwindSafe for CompleteQuery
impl Send for CompleteQuery
impl Sync for CompleteQuery
impl Unpin for CompleteQuery
impl !UnwindSafe for CompleteQuery
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> RequestOptionsBuilder for Twhere
T: RequestBuilder,
impl<T> RequestOptionsBuilder for Twhere
T: RequestBuilder,
Source§fn with_idempotency(self, v: bool) -> T
fn with_idempotency(self, v: bool) -> T
If
v is true, treat the RPC underlying this method as idempotent.Source§fn with_user_agent<V>(self, v: V) -> T
fn with_user_agent<V>(self, v: V) -> T
Set the user agent header.
Source§fn with_attempt_timeout<V>(self, v: V) -> T
fn with_attempt_timeout<V>(self, v: V) -> T
Sets the per-attempt timeout. Read more
Source§fn with_retry_policy<V>(self, v: V) -> Twhere
V: Into<RetryPolicyArg>,
fn with_retry_policy<V>(self, v: V) -> Twhere
V: Into<RetryPolicyArg>,
Sets the retry policy configuration.
Source§fn with_backoff_policy<V>(self, v: V) -> Twhere
V: Into<BackoffPolicyArg>,
fn with_backoff_policy<V>(self, v: V) -> Twhere
V: Into<BackoffPolicyArg>,
Sets the backoff policy configuration.
Source§fn with_retry_throttler<V>(self, v: V) -> Twhere
V: Into<RetryThrottlerArg>,
fn with_retry_throttler<V>(self, v: V) -> Twhere
V: Into<RetryThrottlerArg>,
Sets the retry throttler configuration.
Source§fn with_polling_error_policy<V>(self, v: V) -> Twhere
V: Into<PollingErrorPolicyArg>,
fn with_polling_error_policy<V>(self, v: V) -> Twhere
V: Into<PollingErrorPolicyArg>,
Sets the polling error policy configuration.
Source§fn with_polling_backoff_policy<V>(self, v: V) -> Twhere
V: Into<PollingBackoffPolicyArg>,
fn with_polling_backoff_policy<V>(self, v: V) -> Twhere
V: Into<PollingBackoffPolicyArg>,
Sets the polling backoff policy configuration.