Home
last modified time | relevance | path

Searched refs:PollN (Results 1 – 5 of 5) sorted by relevance

/third_party/rust/crates/tracing/tracing-mock/src/
Dlib.rs20 pub struct PollN<T, E> { struct
96 impl<T, E> std::future::Future for PollN<T, E> implementation
117 impl PollN<(), ()> { implementation
/third_party/rust/crates/tracing/tracing-futures/tests/
Dstd_future.rs16 let future = PollN::new_ok(2).instrument(tracing::span!(Level::TRACE, "foo")); in enter_exit_is_reasonable()
33 let future = PollN::new_err(2).instrument(tracing::span!(Level::TRACE, "foo")); in error_ends_span()
/third_party/rust/crates/tracing/tracing-futures/src/
Dlib.rs527 struct PollN<T, E> { struct
533 impl PollN<(), ()> { impl
551 impl<T, E> futures_01::Future for PollN<T, E> { implementation
579 PollN::new_ok(2) in future_enter_exit_is_reasonable()
598 PollN::new_err(2) in future_error_ends_span()
/third_party/rust/crates/tracing/tracing-attributes/tests/
Derr.rs39 let future = PollN::new_ok(polls); in err_async()
92 let future = PollN::new_ok(polls); in err_mut_async()
Dasync_fn.rs10 let future = PollN::new_ok(polls); in test_async_fn()