• actix-server 2.2.0/src/accept.rs
    168
                #[allow(clippy::significant_drop_in_scrutinee)]
    169
                match guard.pop_front() {
  • actix-web 4.3.0/src/server.rs
    585
                        // false positive lint (?)
    586
                        #[allow(clippy::significant_drop_in_scrutinee)]
    587
                        let acceptor_config = match c.tls_handshake_timeout {
  • asyncsync 0.2.0/src/notify.rs
    66
            #[allow(clippy::significant_drop_in_scrutinee)]
    67
            for waiter in waiters.iter_mut() {
    85
            #[allow(clippy::significant_drop_in_scrutinee)]
    86
            match waiters.front() {
  • cskk 2.0.0/src/dictionary/mod.rs
    86
        // Using mutex in match on purpose, never acquiring lock again.
    87
        #[allow(clippy::significant_drop_in_scrutinee)]
    88
        match *dictionary.mutex.lock().unwrap() {
    109
        // Using mutex in match on purpose, never acquiring lock again.
    110
        #[allow(clippy::significant_drop_in_scrutinee)]
    111
        match *dictionary.mutex.lock().unwrap() {
  • cskk 2.0.0/src/lib.rs
    658
                // Using mutex in match on purpose, never acquiring lock again.
    659
                #[allow(clippy::significant_drop_in_scrutinee)]
    660
                let result = match *cskkdict.mutex.lock().unwrap() {
    676
                // Using mutex in match on purpose, never acquiring lock again.
    677
                #[allow(clippy::significant_drop_in_scrutinee)]
    678
                let result = match *cskkdict.mutex.lock().unwrap() {
  • dexios-domain 1.0.1/src/storage.rs
    254
            #[allow(clippy::significant_drop_in_scrutinee)]
    255
            let im_file = match self.files().get(&file_path) {
  • diskit 0.1.1/src/virtual_diskit/mod.rs
    176
            // positive.
    177
            #[allow(clippy::significant_drop_in_scrutinee)]
    178
            match self.get_inner().walkdir_next_inner(inner)
  • evcxr 0.14.2/src/runtime.rs
    57
            let stdin = std::io::stdin();
    58
            #[allow(unknown_lints, clippy::significant_drop_in_scrutinee)]
    59
            for line in stdin.lock().lines() {
  • feroxfuzz 1.0.0-rc.8/src/state.rs
    683
            if let Ok(guard) = self.metadata().read() {
    684
                #[allow(clippy::significant_drop_in_scrutinee)] // doesn't appear to be an accurate lint
    685
                for (key, value) in guard.iter() {
  • flashmap 0.1.0/src/core/mod.rs
    176
            // Clippy doesn't like that we're iterating over something in a mutex apparently
    177
            #[allow(clippy::significant_drop_in_scrutinee)]
    178
            for (_, refcount) in guard.iter() {
  • futures-scopes 0.1.5/src/relay/waker_park.rs
    52
                #[allow(clippy::significant_drop_in_scrutinee)]
    53
                for waker in inner.drain(..) {
  • futuresdr 0.0.27/src/runtime/scheduler/flow.rs
    358
    impl Drop for FlowExecutor {
    359
        #[allow(clippy::significant_drop_in_scrutinee)]
    360
        fn drop(&mut self) {
  • glv 3.0.5/src/main.rs
    203
                    log::error!("Panic {}", p);
    204
                    #[allow(clippy::significant_drop_in_scrutinee)]
    205
                    for line in logger.read().to_string().lines() {
    215
                shutdown_screen().expect("Shutdown screen");
    216
                #[allow(clippy::significant_drop_in_scrutinee)]
    217
                for line in logger.read().to_string().lines() {
  • hdbconnect 0.24.0/src/protocol/parts/resultset.rs
    520
        // Writes a header and then the data
    521
        #[allow(clippy::significant_drop_in_scrutinee)]
    522
        fn fmt(&self, fmt: &mut std::fmt::Formatter) -> std::fmt::Result {
  • hdbconnect 0.24.0/src/protocol/parts/resultset_metadata.rs
    17
        // Writes a header and then the data
    18
        #[allow(clippy::significant_drop_in_scrutinee)]
    19
        fn fmt(&self, fmt: &mut std::fmt::Formatter) -> std::fmt::Result {
  • hid-io-client 0.1.0/examples/rpc.rs
    250
            std::thread::spawn(move || loop {
    251
                #[allow(clippy::significant_drop_in_scrutinee)]
    252
                for byte in std::io::stdin().lock().bytes() {
  • hid-io-core 0.1.2/src/api/capnp.rs
    382
            let mut result = results.get().init_nodes((nodes.len()) as u32);
    383
            #[allow(clippy::significant_drop_in_scrutinee)]
    384
            for (i, n) in nodes.iter().enumerate() {
    2545
                            let mut c_nodes = request.get().init_nodes(last_node_count as u32);
    2546
                            #[allow(clippy::significant_drop_in_scrutinee)]
    2547
                            for (i, n) in nodes.read().unwrap().iter().enumerate() {
  • hid-io-core 0.1.2/src/mailbox.rs
    126
            'outer: for uid in lookup_entry.iter() {
    127
                #[allow(clippy::significant_drop_in_scrutinee)]
    128
                for mut node in (*self.nodes.read().unwrap()).clone() {
  • humphrey_server 0.6.0/src/server/server.rs
    361
                #[allow(clippy::significant_drop_in_scrutinee)]
    362
                match manager.load_plugin(&plugin.library, &plugin.config, app_state) {
  • legacylisten 0.2.0/src/threads.rs
    35
        // Nursery lint (and this code *should* be correct).
    36
        #[allow(clippy::significant_drop_in_scrutinee)]
    37
        for c in UnicodeReader::new(reader())
  • lofty 0.11.0/src/probe.rs
    460
    				if let Ok(lock) = CUSTOM_RESOLVERS.lock() {
    461
    					#[allow(clippy::significant_drop_in_scrutinee)]
    462
    					for (_, resolve) in lock.iter() {
  • realm_lb 0.1.0/src/round_robin.rs
    54
        #[allow(clippy::significant_drop_in_scrutinee)]
    55
        fn next(&self, _: &Self::State) -> Option<Token> {
  • ripasso 0.6.2/src/pass.rs
    692
                .map_err(|_e| Error::Generic("problem locking the mutex"))?;
    693
            #[allow(clippy::significant_drop_in_scrutinee)]
    694
            for store in stores.iter() {
    697
                    .map_err(|_e| Error::Generic("problem locking the mutex"))?;
    698
                #[allow(clippy::significant_drop_in_scrutinee)]
    699
                for recipient in store.all_recipients()? {
    1237
            .map_err(|_e| Error::Generic("problem locking the mutex"))?;
    1238
        #[allow(clippy::significant_drop_in_scrutinee)]
    1239
        for store in stores_borrowed.iter() {
  • ripasso-cursive 0.6.2/src/main.rs
    966
            l.clear();
    967
            #[allow(clippy::significant_drop_in_scrutinee)]
    968
            for p in store.lock().unwrap().lock().unwrap().passwords.iter() {
    1275
            let mut stores_borrowed = stores.lock().unwrap();
    1276
            #[allow(clippy::significant_drop_in_scrutinee)]
    1277
            for (i, store) in stores_borrowed.iter().enumerate() {
    1359
        let stores_borrowed = stores.lock().unwrap();
    1360
        #[allow(clippy::significant_drop_in_scrutinee)]
    1361
        for store in stores_borrowed.iter() {
    1793
        let store: PasswordStoreType = Arc::new(Mutex::new(stores.lock().unwrap()[0].clone()));
    1794
        #[allow(clippy::significant_drop_in_scrutinee)]
    1795
        for ss in stores.lock().unwrap().iter() {
    1999
        let mut tree = Tree::new();
    2000
        #[allow(clippy::significant_drop_in_scrutinee)]
    2001
        for s in stores.lock().unwrap().iter() {
  • rucrf 0.3.2/src/trainer.rs
    79
                        }
    80
                        #[allow(clippy::significant_drop_in_scrutinee)]
    81
                        for (y, x) in gradients.lock().unwrap().iter_mut().zip(local_gradients) {
  • sentry-cloudflare 0.1.2/src/layer.rs
    7
    #[allow(clippy::significant_drop_in_scrutinee)]
    8
    impl<S> layer::Layer<S> for Layer
  • shared-memory-allocator 0.1.0/src/lib.rs
    215
        #[allow(clippy::significant_drop_in_scrutinee)]
    216
        unsafe fn deallocate(&self, ptr: NonNull<u8>, layout: Layout) {
  • similari 0.24.1/src/track/store.rs
    538
            let mut tracks = self.get_store(track_id as usize);
    539
            #[allow(clippy::significant_drop_in_scrutinee)]
    540
            match tracks.get_mut(&track_id) {
  • stuart 0.2.3/src/serve/mod.rs
    118
                    #[allow(clippy::significant_drop_in_scrutinee)]
    119
                    for (i, stream) in streams.iter_mut().enumerate() {
  • wasmer-wasi 3.2.0-alpha.1/src/syscalls/mod.rs
    3206
        #[allow(clippy::significant_drop_in_scrutinee)]
    3207
        let fds = {
  • arti 1.1.0/src/lib.rs
    35
    #![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
  • arti 1.1.0/src/main.rs
    37
    #![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
    38
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    39
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
  • arti-bench 0.8.0/src/main.rs
    38
    #![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
    39
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    40
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
  • arti-client 0.8.0/src/lib.rs
    35
    #![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
  • arti-config 0.5.0/src/lib.rs
    35
    #![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
  • arti-hyper 0.8.0/src/lib.rs
    35
    #![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
  • basalt 0.19.1/src/lib.rs
    1
    #![allow(clippy::significant_drop_in_scrutinee)]
    2
    #![allow(clippy::type_complexity)]
  • caret 0.3.0/src/lib.rs
    35
    #![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
  • cargo-tally 1.0.22/src/lib.rs
    18
        clippy::ptr_as_ptr,
    19
        clippy::significant_drop_in_scrutinee,
    20
        clippy::too_many_lines,
  • cxx-build 1.0.88/src/lib.rs
    70
        clippy::shadow_unrelated,
    71
        clippy::significant_drop_in_scrutinee,
    72
        clippy::similar_names,
  • fs-mistrust 0.6.0/src/lib.rs
    41
    #![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
    42
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    43
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
  • glean-core 52.2.0/src/lib.rs
    5
    #![allow(clippy::significant_drop_in_scrutinee)]
    6
    #![allow(clippy::uninlined_format_args)]
  • retry-error 0.3.0/src/lib.rs
    35
    #![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
  • safelog 0.2.0/src/lib.rs
    35
    #![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
  • tor-basic-utils 0.5.0/src/lib.rs
    35
    #![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
  • tor-bytes 0.6.0/src/lib.rs
    35
    #![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
  • tor-cell 0.7.0/src/lib.rs
    35
    #![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
  • tor-cert 0.6.0/src/lib.rs
    35
    #![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
  • tor-chanmgr 0.8.0/src/lib.rs
    35
    #![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
  • tor-checkable 0.4.0/src/lib.rs
    35
    #![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
  • tor-circmgr 0.7.0/src/lib.rs
    35
    #![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
  • tor-config 0.7.0/src/lib.rs
    35
    #![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
  • tor-congestion 0.4.0/src/lib.rs
    35
    #![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
  • tor-consdiff 0.4.0/src/lib.rs
    35
    #![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
  • tor-dirclient 0.6.0/src/lib.rs
    35
    #![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
  • tor-dirmgr 0.9.0/src/lib.rs
    35
    #![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
  • tor-error 0.4.0/src/lib.rs
    35
    #![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
  • tor-events 0.4.0/src/lib.rs
    35
    #![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
  • tor-guardmgr 0.8.0/src/lib.rs
    35
    #![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
  • tor-linkspec 0.6.0/src/lib.rs
    35
    #![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
  • tor-llcrypto 0.4.0/src/lib.rs
    35
    #![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
  • tor-netdir 0.7.0/src/lib.rs
    35
    #![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
  • tor-netdoc 0.6.0/src/lib.rs
    35
    #![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
  • tor-persist 0.6.0/src/lib.rs
    35
    #![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
  • tor-proto 0.8.0/src/lib.rs
    35
    #![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
  • tor-protover 0.4.0/src/lib.rs
    35
    #![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
  • tor-ptmgr 0.2.0/src/lib.rs
    35
    #![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
  • tor-rtcompat 0.8.0/src/lib.rs
    35
    #![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
  • tor-rtmock 0.7.0/src/lib.rs
    35
    #![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
  • tor-socksproto 0.6.0/src/lib.rs
    35
    #![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587
  • tor-units 0.4.0/src/lib.rs
    35
    #![allow(clippy::let_unit_value)] // This can reasonably be done for explicitness
    36
    #![allow(clippy::significant_drop_in_scrutinee)] // arti/-/merge_requests/588/#note_2812945
    37
    #![allow(clippy::result_large_err)] // temporary workaround for arti#587