Skip to main content

Call

Struct Call 

Source
pub struct Call<T> { /* private fields */ }
Expand description

A pending call. Await it for the parsed result, or set per-call options first.

Nothing is sent until the call is awaited. Dropping the future cancels the request and any pending retry.

use std::time::Duration;

let models = client
    .models()
    .list()
    .timeout(Duration::from_secs(2))
    .max_retries(0)
    .with_response()
    .await?;
println!("{:?} {:?}", models.request_id, models.data);

Implementations§

Source§

impl<T> Call<T>

Source

pub fn timeout(self, timeout: Duration) -> Self

Timeout per attempt for this call.

Source

pub fn total_timeout(self, total_timeout: impl Into<Option<Duration>>) -> Self

Upper bound for the whole call, including credentials, retries and backoff. Pass None to remove the client’s bound for this call.

Attempts are shortened to fit the time left. A retry is skipped when its backoff would end past the bound, and a retry cut short by the bound returns the previous attempt’s error, such as the 503 that caused the retry.

Source

pub fn retry(self, retry: RetryPolicy) -> Self

Retry policy for this call, replacing the client’s.

Source

pub fn max_retries(self, max_retries: u32) -> Self

Retries after the initial attempt for this call; 0 disables retries.

Applies on top of the client’s policy or the one set with Call::retry.

Source

pub fn header(self, name: HeaderName, value: HeaderValue) -> Self

Add a header for this call, replacing a default header with the same name.

Authentication, content negotiation and SDK headers cannot be overridden.

Source

pub fn headers(self, headers: HeaderMap) -> Self

Add headers for this call, replacing earlier values for the same names.

Source

pub async fn raw(self) -> Result<RawResponse>

Send the call and return the body without parsing it.

Source

pub async fn with_response(self) -> Result<WithResponse<T>>

Send the call and return the parsed result with response metadata.

Trait Implementations§

Source§

impl<T: Send + 'static> IntoFuture for Call<T>

Source§

type Output = Result<T, Error>

The output that the future will produce on completion.
Source§

type IntoFuture = Pin<Box<dyn Future<Output = Result<T, Error>> + Send>>

Which kind of future are we turning this into?
Source§

fn into_future(self) -> Self::IntoFuture

Creates a future from a value. Read more

Auto Trait Implementations§

§

impl<T> !Freeze for Call<T>

§

impl<T> !RefUnwindSafe for Call<T>

§

impl<T> !UnwindSafe for Call<T>

§

impl<T> Send for Call<T>
where fn(&[u8]) -> Result<T, DecodeFailure>: Send,

§

impl<T> Sync for Call<T>
where fn(&[u8]) -> Result<T, DecodeFailure>: Sync,

§

impl<T> Unpin for Call<T>
where fn(&[u8]) -> Result<T, DecodeFailure>: Unpin,

§

impl<T> UnsafeUnpin for Call<T>
where fn(&[u8]) -> Result<T, DecodeFailure>: UnsafeUnpin,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

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

fn in_current_span(self) -> Instrumented<Self>

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

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

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

Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Sized + Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Sized + Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

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

fn with_current_subscriber(self) -> WithDispatch<Self>

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