Home
last modified time | relevance | path

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

/aosp_15_r20/external/rust/android-crates-io/crates/maybe-async/
DREADME.md21 - use `async_impl` and `sync_impl` to only compile code block on specified
50 `sync_impl`/`async_impl`, `must_be_sync`/`must_be_async`, and `test`.
55 `sync_impl` and `async_impl` to mark these implementation.
131 - `async_impl`
136 There are three usage variants for `async_impl` attribute usage:
137 - `#[async_impl]` or `#[async_impl(Send)]`
138 - `#[async_impl(?Send)]`
139 - `#[async_impl(AFIT)]`
178 `maybe_async` macro and conditionally compiles codes under `async_impl` and
/aosp_15_r20/external/rust/android-crates-io/crates/maybe-async/tests/ui/
D06-sync_impl_async_impl.rs21 #[maybe_async::async_impl]
40 #[maybe_async::async_impl]
D05-replace-future-generic-type-with-output.rs29 #[maybe_async::async_impl]
/aosp_15_r20/external/rust/android-crates-io/crates/maybe-async/examples/
Dservice_client.rs43 #[maybe_async::async_impl(AFIT)]
73 #[maybe_async::async_impl]
/aosp_15_r20/external/rust/android-crates-io/crates/maybe-async/src/
Dlib.rs445 pub fn async_impl(args: TokenStream, _input: TokenStream) -> TokenStream { in async_impl() function