• grafana-plugin-sdk 0.4.2/src/data/field.rs
    137
            #[allow(unknown_lints)]
    138
            #[allow(clippy::explicit_auto_deref)]
    139
            &*self.values
  • hakari 0.13.1/src/hakari.rs
    89
            // This is a spurious clippy lint on Rust 1.65.0
    90
            #[allow(clippy::explicit_auto_deref)]
    91
            *self.graph
  • hedera 0.9.0/src/mnemonic/mod.rs
    251
        // clippy bug.
    252
        #[allow(clippy::explicit_auto_deref)]
    253
        fn words(&self) -> &[String] {
  • hudhook 0.3.0/src/hooks/dx12.rs
    520
            // Explicit auto deref necessary because this is ManuallyDrop.
    521
            #[allow(clippy::explicit_auto_deref)]
    522
            unsafe {
  • icrate 0.0.1/examples/nspasteboard.rs
    77
            // Temporary, see https://github.com/rust-lang/rust-clippy/issues/9101
    78
            #[allow(unknown_lints, clippy::explicit_auto_deref)]
    79
            let class_array = NSArray::from_slice(&*string_classes);
  • intercom 0.4.0/src/error.rs
    501
        // FIXME ComRc Deref
    502
        #[allow(clippy::explicit_auto_deref)]
    503
        let ierr: &dyn IErrorInfo = &*ierrorinfo;
  • jujutsu 0.6.1/src/commands.rs
    4308
    #[allow(clippy::explicit_auto_deref)] // https://github.com/rust-lang/rust-clippy/issues/9763
    4309
    fn with_remote_callbacks<T>(ui: &mut Ui, f: impl FnOnce(git::RemoteCallbacks<'_>) -> T) -> T {
  • konst_kernel 0.3.4/src/into_iter/slice_into_iter.rs
    53
        // clippy suggests a change that doesn't compile
    54
        #[allow(clippy::explicit_auto_deref)]
    55
        pub const fn const_into_iter(self) -> Iter<'a, T> {
  • matrix-sdk 0.6.2/src/event_handler/mod.rs
    702
            let handle_b = client.add_room_event_handler(
    703
                #[allow(unknown_lints, clippy::explicit_auto_deref)] // lint is buggy
    704
                *DEFAULT_SYNC_ROOM_ID,
  • matrix-sdk-base 0.6.1/src/client.rs
    176
        /// Get a reference to the store.
    177
        #[allow(unknown_lints, clippy::explicit_auto_deref)]
    178
        pub fn store(&self) -> &dyn StateStore {
  • nostr-types 0.3.0/src/types/url.rs
    13
        type Target = str;
    14
        #[allow(clippy::explicit_auto_deref)]
    15
        fn deref(&self) -> &Self::Target {
  • objc2-foundation 0.2.0-alpha.6/examples/nspasteboard.rs
    104
            // Temporary, see https://github.com/rust-lang/rust-clippy/issues/9101
    105
            #[allow(unknown_lints, clippy::explicit_auto_deref)]
    106
            let class_array = NSArray::from_slice(&*string_classes);
  • spreadsheet-ods 0.15.0/src/refs_impl/conv.rs
    110
    /// Parse a row number to a row index.
    111
    #[allow(clippy::explicit_auto_deref)]
    112
    pub fn try_u32_from_rowname(i: Span<'_>) -> Result<u32, ParseRownameError> {
  • spreadsheet-ods-cellref 0.1.0/src/refs_parser.rs
    307
    /// Parse a row number to a row index.
    308
    #[allow(clippy::explicit_auto_deref)]
    309
    pub fn try_u32_from_rowname(i: Span<'_>) -> Result<u32, CellRefError> {
  • stratisd 3.5.0/src/engine/structures/lock.rs
    67
            // See: https://github.com/rust-lang/rust-clippy/issues/9763
    68
            #[allow(clippy::explicit_auto_deref)]
    69
            &mut *self.0
  • stride 0.3.0/src/ops.rs
    31
            // https://github.com/rust-lang/rust-clippy/issues/9841
    32
            #[allow(clippy::explicit_auto_deref)]
    33
            partial_eq_slice(self, *other)
  • anyhow 1.0.68/src/lib.rs
    220
        clippy::enum_glob_use,
    221
        clippy::explicit_auto_deref,
    222
        clippy::missing_errors_doc,
  • async-trait 0.1.64/src/lib.rs
    308
        clippy::doc_markdown,
    309
        clippy::explicit_auto_deref,
    310
        clippy::if_not_else,
  • async-trait-fn 0.1.64/src/lib.rs
    60
        clippy::doc_markdown,
    61
        clippy::explicit_auto_deref,
    62
        clippy::if_not_else,
  • azalea-physics 0.5.0/src/collision/blocks.rs
    6
    #![allow(clippy::explicit_auto_deref)]
    7
    #![allow(clippy::redundant_closure)]
  • cxx-build 1.0.88/src/lib.rs
    54
        clippy::enum_glob_use,
    55
        clippy::explicit_auto_deref,
    56
        clippy::if_same_then_else,
  • reverie-zk 0.3.2/src/main.rs
    1
    #![allow(clippy::explicit_auto_deref)]
  • serde 1.0.152/src/lib.rs
    128
            enum_glob_use,
    129
            explicit_auto_deref,
    130
            map_err_ignore,
  • serde_json 1.0.91/src/lib.rs
    310
        clippy::excessive_precision,
    311
        clippy::explicit_auto_deref,
    312
        clippy::float_cmp,
  • serde_with 2.2.0/src/lib.rs
    39
        // https://github.com/rust-lang/rust-clippy/issues/9101
    40
        clippy::explicit_auto_deref
    41
    )]
  • syn 1.0.107/src/lib.rs
    264
        clippy::expl_impl_clone_on_copy,
    265
        clippy::explicit_auto_deref,
    266
        clippy::if_not_else,