• augmented_baseview 0.1.0/src/win/keyboard.rs
    589
                    key_state[VK_RMENU as usize] = if has_altgr { 0x80 } else { 0 };
    590
                    #[allow(clippy::iter_overeager_cloned)]
    591
                    for vk in PRINTABLE_VKS.iter().cloned().flatten() {
  • casper-client 1.5.0/src/deploy/creation_common.rs
    287
        #[allow(clippy::iter_overeager_cloned)]
    288
        pub(in crate::deploy) fn get<'a>(matches: &'a ArgMatches) -> Vec<&'a str> {
    377
            #[allow(clippy::iter_overeager_cloned)]
    378
            pub fn get<'a>(matches: &'a ArgMatches) -> Vec<&'a str> {
    398
            #[allow(clippy::iter_overeager_cloned)]
    399
            pub fn get<'a>(matches: &'a ArgMatches) -> Vec<&'a str> {
  • druid-shell 0.8.0/src/lib.rs
    35
    // This is overeager right now, see https://github.com/rust-lang/rust-clippy/issues/8494
    36
    #![allow(clippy::iter_overeager_cloned)]