• Boa 0.13.1/src/context.rs
    836
        #[cfg(not(feature = "vm"))]
    837
        #[allow(clippy::unit_arg, clippy::drop_copy)]
    838
        #[inline]
    876
        #[cfg(feature = "vm")]
    877
        #[allow(clippy::unit_arg, clippy::drop_copy)]
    878
        pub fn eval<T: AsRef<[u8]>>(&mut self, src: T) -> JsResult<JsValue> {
  • Boa 0.13.1/src/lib.rs
    127
    /// If the interpreter fails parsing an error value is returned instead (error object)
    128
    #[allow(clippy::unit_arg, clippy::drop_copy)]
    129
    #[cfg(test)]
  • boa_engine 0.16.0/src/context/mod.rs
    652
        /// ```
    653
        #[allow(clippy::unit_arg, clippy::drop_copy)]
    654
        pub fn eval<S>(&mut self, src: S) -> JsResult<JsValue>
  • boa_engine 0.16.0/src/lib.rs
    130
    /// If the interpreter fails parsing an error value is returned instead (error object)
    131
    #[allow(clippy::unit_arg, clippy::drop_copy)]
    132
    #[cfg(test)]
  • ckb-cli 1.4.0/src/plugin/manager.rs
    879
    impl PluginProcess {
    880
        #[allow(clippy::zero_ptr, clippy::drop_copy)]
    881
        pub fn start(
  • elements-frequency 0.5.1/src/interface.rs
    9
    #[allow(clippy::drop_copy)]
    10
    /// Examples
  • heph-rt 0.4.1/src/local/waker.rs
    215
        // Since the data is `Copy` we don't have to anything.
    216
        #[allow(clippy::drop_copy)]
    217
        drop(data)
  • houserat 0.4.0/src/main.rs
    127
            #[allow(clippy::drop_copy, clippy::zero_ptr)]
    128
            loop {
  • pui-arena 0.5.1/src/base/dense.rs
    634
    impl<T, I, V: Version> Extend<T> for Arena<T, I, V> {
    635
        #[allow(clippy::drop_copy)]
    636
        fn extend<Iter: IntoIterator<Item = T>>(&mut self, iter: Iter) {
  • pui-arena 0.5.1/src/base/sparse.rs
    522
    impl<T, I, V: Version> Extend<T> for Arena<T, I, V> {
    523
        #[allow(clippy::drop_copy)]
    524
        fn extend<Iter: IntoIterator<Item = T>>(&mut self, iter: Iter) {
  • realm 0.1.23/src/watcher.rs
    8
    #[allow(clippy::zero_ptr, clippy::drop_copy)]
    9
    fn setup_watcher() -> Sender<(String, Sender<String>)> {
  • rusty_audio 1.4.0/src/lib.rs
    94
            for i in warm {
    95
                #[allow(clippy::drop_copy)]
    96
                drop(i);
  • safe_vault 0.20.2/src/vault.rs
    137
        // FIXME: remove when https://github.com/crossbeam-rs/crossbeam/issues/404 is resolved
    138
        #[allow(clippy::zero_ptr, clippy::drop_copy)]
    139
        pub fn run(&mut self) {
  • sarchive 0.12.1/src/archive/mod.rs
    85
        #[allow(clippy::zero_ptr, clippy::drop_copy)]
    86
        loop {
  • sarchive 0.12.1/src/monitor.rs
    84
        }
    85
        #[allow(clippy::zero_ptr, clippy::drop_copy)]
    86
        loop {
  • wit-bindgen-gen-ts-near 0.3.0/src/lib.rs
    523
        ) {
    524
            #[allow(clippy::drop_copy)]
    525
            drop((iface, _id, name, const_, ty, docs));
    528
        fn type_builtin(&mut self, iface: &Interface, _id: TypeId, name: &str, ty: &Type, docs: &Docs) {
    529
            #[allow(clippy::drop_copy)]
    530
            drop((iface, _id, name, ty, docs));
  • crossbeam-channel 0.5.6/tests/mpsc.rs
    23
    #![allow(
    24
        clippy::drop_copy,
    25
        clippy::match_single_binding,
  • crossbeam-channel 0.5.6/tests/ready.rs
    3
    #![allow(clippy::drop_copy)]
  • crossbeam-channel 0.5.6/tests/select.rs
    3
    #![allow(clippy::drop_copy)]
  • crossbeam-channel 0.5.6/tests/select_macro.rs
    3
    #![forbid(unsafe_code)] // select! is safe.
    4
    #![allow(clippy::drop_copy, clippy::match_single_binding)]
  • crossbeam-epoch 0.9.13/src/deferred.rs
    91
    mod tests {
    92
        #![allow(clippy::drop_copy)]
  • cxx-build 1.0.88/src/lib.rs
    52
        clippy::doc_markdown,
    53
        clippy::drop_copy,
    54
        clippy::enum_glob_use,
  • gdnative-bindings 0.11.3/src/lib.rs
    6
    // False positives on generated drops that enforce lifetime
    7
    #![allow(clippy::drop_copy)]
    8
    // False positives on thread-safe singletons
  • gdnative-bindings-lily 0.9.3/src/lib.rs
    3
    // False positives on generated drops that enforce lifetime
    4
    #![allow(clippy::drop_copy)]
    5
    // Disable non-critical lints for generated code.
  • graph_safe_compare 0.2.1/tests/borrow_pair.rs
    3
    // `Datum` will instead be dropped along with their allocator.
    4
    #![allow(clippy::drop_copy)]
  • lariv 0.1.0/src/lib.rs
    7
    #![feature(strict_provenance)]
    8
    #![allow(clippy::drop_copy)]