• azure_identity 0.9.0/src/client_credentials_flow/mod.rs
    50
    /// Perform the client credentials flow
    51
    #[allow(clippy::manual_async_fn)]
    52
    #[fix_hidden_lifetime_bug::fix_hidden_lifetime_bug]
  • azure_identity 0.9.0/src/refresh_token.rs
    15
    /// Exchange a refresh token for a new access token and refresh token
    16
    #[allow(clippy::manual_async_fn)]
    17
    #[fix_hidden_lifetime_bug::fix_hidden_lifetime_bug]
  • casper-node 1.4.8/src/effect.rs
    497
        #[inline(always)]
    498
        #[allow(clippy::manual_async_fn)]
    499
        pub(crate) fn immediately(self) -> impl Future<Output = ()> + Send {
  • etwin_services 0.10.2/src/forum.rs
    242
      // Manual async fn impl to enforce the `Send` trait explicitly
    243
      #[allow(clippy::manual_async_fn)]
    244
      pub fn create_thread<'a>(
    372
      // Manual async fn impl to enforce the `Send` trait explicitly
    373
      #[allow(clippy::manual_async_fn)]
    374
      pub fn create_post<'a>(
  • jotta-osd 0.1.1/src/object/mod.rs
    299
    #[instrument(skip(ctx))]
    300
    #[allow(clippy::manual_async_fn)] // lifetimes don't allow async syntax
    301
    pub fn stream_range<'a, S: TokenStore + 'a>(
  • kvarn 0.5.0/src/shutdown.rs
    305
        /// If the feature `graceful-shutdown` is disabled, this blocks forever.
    306
        #[allow(clippy::manual_async_fn)] // cfg
    307
        pub fn wait_for_pre_shutdown(
  • rust-query 0.0.0-alpha-1/src/sleep.rs
    21
        // For consistent return type between cfgs
    22
        #[allow(clippy::manual_async_fn)]
    23
        pub(crate) fn sleep(duration: Duration) -> impl Future<Output = ()> {
  • tracing-attributes 0.1.23/tests/async_fn.rs
    78
    #[deny(unused_braces)]
    79
    #[allow(clippy::manual_async_fn)]
    80
    fn repro_1831_2() -> impl Future<Output = Result<(), Infallible>> {
    402
    fn manual_impl_future() {
    403
        #[allow(clippy::manual_async_fn)]
    404
        #[instrument]
  • zrpc-macros 0.6.0-alpha1/examples/expanded.rs
    14
    // #![feature(prelude_import)]
    15
    #![allow(clippy::manual_async_fn)]
    16
    #![allow(clippy::large_enum_variant)]
    88
        #[allow(unused)]
    89
        #[allow(clippy::type_complexity, clippy::manual_async_fn)]
    90
        fn connect(
    173
        }
    174
        #[allow(clippy::type_complexity, clippy::manual_async_fn)]
    175
        fn initialize(
    194
        }
    195
        #[allow(clippy::type_complexity, clippy::manual_async_fn)]
    196
        fn register(
    218
            clippy::type_complexity,
    219
            clippy::manual_async_fn,
    220
            clippy::needless_question_mark
  • async-trait 0.1.64/tests/test.rs
    1562
        #![deny(clippy::async_yields_async)]
    1563
        #![allow(clippy::manual_async_fn)]
  • async-trait-fn 0.1.64/tests/test.rs
    2027
        #![deny(clippy::async_yields_async)]
    2028
        #![allow(clippy::manual_async_fn)]
  • hc_seed_bundle 0.1.5/src/lib.rs
    1
    // grrr clippy... you cannot specify extra bounds with the async fn syntax...
    2
    #![allow(clippy::manual_async_fn)]
    3
    // default implementations don't always make sense...
  • kitsune_p2p_types 0.1.0/src/tx2/tx2_pool_promote.rs
    1
    #![allow(clippy::new_ret_no_self)]
    2
    #![allow(clippy::manual_async_fn)]
    3
    #![allow(clippy::too_many_arguments)]
  • lair_keystore 0.2.3/src/bin/lair-keystore-bin/main.rs
    1
    // grrr clippy... you cannot specify extra bounds with the async fn syntax...
    2
    #![allow(clippy::manual_async_fn)]
    3
    // default implementations don't always make sense...
  • lair_keystore 0.2.3/src/lib.rs
    1
    // grrr clippy... you cannot specify extra bounds with the async fn syntax...
    2
    #![allow(clippy::manual_async_fn)]
    3
    // default implementations don't always make sense...
  • lair_keystore_api 0.2.3/src/lib.rs
    1
    // grrr clippy... you cannot specify extra bounds with the async fn syntax...
    2
    #![allow(clippy::manual_async_fn)]
    3
    // default implementations don't always make sense...
  • zenoh-flow 0.4.0-alpha.1/src/runtime/mod.rs
    15
    #![allow(clippy::manual_async_fn)]
    16
    use std::collections::HashMap;
  • zrpc-macros 0.6.0-alpha1/examples/zservice.rs
    14
    #![allow(clippy::manual_async_fn)]
    15
    #![allow(clippy::large_enum_variant)]
  • zrpc-macros 0.6.0-alpha1/tests/service.rs
    14
    #![allow(clippy::manual_async_fn)]
    15
    #![allow(clippy::large_enum_variant)]