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>
impl<'pin, F: Future> Unpin for InstrumentFuture<F>where
PinnedFieldsOf<__InstrumentFuture<'pin, F>>: Unpin,
Auto Trait Implementations§
impl<F> Freeze for InstrumentFuture<F>where
F: Freeze,
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,
Source§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