Struct async_instrumenter::InstrumentFuture
source · pub struct InstrumentFuture<F: Future> { /* private fields */ }
Expand description
Wraps a future and determines exactly how long it took to execute
let my_fut: impl Future<Output = ()> = foobar();
let res = InstrumentFuture::new(my_fut).await;
// get the result of `my_fut`
res.result;
// print the elapsed time of `my_fut`
println!("my_fut took {:?}", res.elapsed);
Implementations§
Trait Implementations§
source§impl<F: Future> Future for InstrumentFuture<F>
impl<F: Future> Future for InstrumentFuture<F>
§type Output = InstrumentFutureResult<<F as Future>::Output>
type Output = InstrumentFutureResult<<F as Future>::Output>
The type of value produced on completion.
impl<'pin, F: Future> Unpin for InstrumentFuture<F>where __InstrumentFuture<'pin, F>: Unpin,
Auto Trait Implementations§
impl<F> RefUnwindSafe for InstrumentFuture<F>where F: RefUnwindSafe,
impl<F> Send for InstrumentFuture<F>where F: Send,
impl<F> Sync for InstrumentFuture<F>where F: Sync,
impl<F> UnwindSafe for InstrumentFuture<F>where F: UnwindSafe,
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<F> IntoFuture for Fwhere
F: Future,
impl<F> IntoFuture for Fwhere F: Future,
§type IntoFuture = F
type IntoFuture = F
Which kind of future are we turning this into?
source§fn into_future(self) -> <F as IntoFuture>::IntoFuture
fn into_future(self) -> <F as IntoFuture>::IntoFuture
Creates a future from a value. Read more