Struct tower::load::completion::CompleteOnResponse
source · [−]#[non_exhaustive]pub struct CompleteOnResponse;
Expand description
A TrackCompletion
implementation that considers the request completed when the response
future is resolved.
Trait Implementations
sourceimpl Clone for CompleteOnResponse
impl Clone for CompleteOnResponse
sourcefn clone(&self) -> CompleteOnResponse
fn clone(&self) -> CompleteOnResponse
Returns a copy of the value. Read more
1.0.0const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for CompleteOnResponse
impl Debug for CompleteOnResponse
sourceimpl Default for CompleteOnResponse
impl Default for CompleteOnResponse
sourcefn default() -> CompleteOnResponse
fn default() -> CompleteOnResponse
Returns the “default value” for a type. Read more
sourceimpl<H, V> TrackCompletion<H, V> for CompleteOnResponse
impl<H, V> TrackCompletion<H, V> for CompleteOnResponse
type Output = V
type Output = V
The instrumented value type.
sourcefn track_completion(&self, handle: H, value: V) -> V
fn track_completion(&self, handle: H, value: V) -> V
Attaches a
H
-typed handle to a V
-typed value.impl Copy for CompleteOnResponse
Auto Trait Implementations
impl RefUnwindSafe for CompleteOnResponse
impl Send for CompleteOnResponse
impl Sync for CompleteOnResponse
impl Unpin for CompleteOnResponse
impl UnwindSafe for CompleteOnResponse
Blanket Implementations
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstablefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
impl<T> ToOwned for Twhere
T: Clone,
impl<T> ToOwned for Twhere
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
fn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
Uses borrowed data to replace owned data, usually by cloning. Read more