Home
last modified time | relevance | path

Searched defs:Instrumented (Results 1 – 6 of 6) sorted by relevance

/third_party/rust/crates/tracing/tracing-error/src/
Derror.rs197 type Instrumented; typedef
213 fn in_current_span(self) -> Self::Instrumented; in in_current_span()
220 type Instrumented; typedef
236 fn in_current_span(self) -> Result<T, Self::Instrumented>; in in_current_span()
243 type Instrumented = <E as InstrumentError>::Instrumented; typedef
245 fn in_current_span(self) -> Result<T, Self::Instrumented> { in in_current_span()
277 type Instrumented = TracedError<E>; typedef
279 fn in_current_span(self) -> Self::Instrumented { in in_current_span()
/third_party/rust/crates/tracing/tracing-futures/src/
Dlib.rs256 pub struct Instrumented<T> { struct
257 inner: T,
258 span: Span,
288 impl<T: crate::stdlib::future::Future> crate::stdlib::future::Future for Instrumented<T> { implementation
300 impl<T: futures_01::Future> futures_01::Future for Instrumented<T> { implementation
312 impl<T: futures_01::Stream> futures_01::Stream for Instrumented<T> { implementation
324 impl<T: futures_01::Sink> futures_01::Sink for Instrumented<T> { implementation
344 impl<T: futures::Stream> futures::Stream for Instrumented<T> { implementation
359 impl<I, T: futures::Sink<I>> futures::Sink<I> for Instrumented<T> implementation
399 impl<T> Instrumented<T> { implementation
/third_party/rust/crates/tracing/tracing-futures/src/executor/
Dfutures_01.rs17 impl<T, F> Executor<F> for Instrumented<T> implementation
52 impl<T> Executor for Instrumented<T> implementation
66 impl<T, F> TypedExecutor<F> for Instrumented<T> implementation
79 impl Instrumented<Runtime> { implementation
134 impl Instrumented<current_thread::Runtime> { implementation
Dfutures_03.rs4 impl<T> Spawn for Instrumented<T> implementation
62 impl<T> LocalSpawn for Instrumented<T> implementation
Dfutures_preview.rs8 impl<T> Spawn for Instrumented<T> implementation
65 impl<T> LocalSpawn for Instrumented<T> implementation
/third_party/rust/crates/tracing/tracing/src/
Dinstrument.rs266 impl<T: Future> Future for Instrumented<T> { implementation
278 impl<T> Instrumented<T> { impl