• alloc-wg 0.9.0/src/boxed.rs
    113
    #[allow(clippy::use_self)]
    114
    impl<T> Box<T> {
    168
    #[allow(clippy::use_self)]
    169
    impl<T, A: AllocRef> Box<T, A> {
    284
    #[allow(clippy::use_self)]
    285
    impl<T> Box<[T]> {
    314
    #[allow(clippy::use_self)]
    315
    impl<T, A: AllocRef> Box<[T], A> {
    374
    #[allow(clippy::use_self)]
    375
    impl<T, A: AllocRef> Box<MaybeUninit<T>, A> {
  • alloc-wg 0.9.0/src/ptr.rs
    79
    #[allow(clippy::use_self)]
    80
    impl<T: ?Sized> Unique<T> {
  • alloc-wg 0.9.0/src/string.rs
    1935
    #[allow(clippy::use_self)]
    1936
    impl<A: AllocRef, B: AllocRef> CloneIn<B> for String<A> {
  • alloc-wg 0.9.0/src/vec.rs
    2004
    #[allow(clippy::use_self)]
    2005
    impl<A: AllocRef> SpecFromElem<A> for u8 {
    2127
    #[allow(clippy::use_self)]
    2128
    impl<T: Clone, A: AllocRef, B: AllocRef> CloneIn<B> for Vec<T, A> {
  • amiya 0.0.6/src/lib.rs
    252
    // TODO: remove after this false positive is fixed
    253
    #[allow(clippy::use_self)]
    254
    impl<Exec, Ex> Amiya<Exec, Ex>
  • amiya 0.0.6/src/middleware/router/setter.rs
    57
    #[allow(clippy::use_self)]
    58
    impl<R, Ex> RouterSetter<R, SetTableItem, Ex>
    102
    #[allow(clippy::use_self)]
    103
    impl<R, Ex> RouterSetter<RouterSetter<R, SetTableItem, Ex>, SetEndpoint, Ex>
  • arcon 0.2.1/src/index/hash_table/bitmask.rs
    22
    #[allow(clippy::use_self)]
    23
    impl BitMask {
  • arcon 0.2.1/src/index/hash_table/generic.rs
    45
    // only checking whether a BitMask is empty.
    46
    #[allow(clippy::use_self)]
    47
    impl Group {
  • arcon 0.2.1/src/index/hash_table/sse2.rs
    26
    // FIXME: https://github.com/rust-lang/rust-clippy/issues/3859
    27
    #[allow(clippy::use_self)]
    28
    impl Group {
  • astral-error 0.0.5/src/result_ext.rs
    146
    #[allow(clippy::use_self)]
    147
    impl<T, E> ResultExt<T, E> for Result<T, E>
  • async-speed-limit 0.4.0/src/limiter.rs
    402
    #[allow(clippy::use_self)] // https://github.com/rust-lang/rust-clippy/issues/3410
    403
    impl<C: Clock, R> Consume<C, R> {
  • bonsaidb-core 0.4.1/src/connection.rs
    2093
    #[allow(clippy::use_self)] // clippy is wrong, Self is different because of generic parameters
    2094
    impl<K> QueryKey<K> {
    2127
    #[allow(clippy::use_self)] // clippy is wrong, Self is different because of generic parameters
    2128
    impl<'a, T> QueryKey<T>
  • bonsaidb-core 0.4.1/src/key.rs
    1051
    #[test]
    1052
    #[allow(clippy::use_self)] // Weird interaction with num_derive
    1053
    fn enum_derive_tests() -> anyhow::Result<()> {
  • bool_ext 0.5.3/src/lib.rs
    620
    // Suppress clippy::use_self warning arising from use of `panic!()`
    621
    #[allow(clippy::use_self)]
    622
    impl BoolExt for bool {
  • branchy 0.2.1/src/expansion.rs
    136
    #[allow(clippy::use_self)]
    137
    impl<Nt, T, RS, EL> ExpanderBuilder<Nt, T, RS, EL>
  • constellation-internal 0.2.0-alpha.2/src/lib.rs
    589
    #[allow(clippy::use_self)] // TODO: remove; bug in clippy
    590
    impl From<ExitStatus> for i32 {
  • core_detect 1.0.0/src/cache.rs
    27
    #[allow(clippy::use_self)]
    28
    impl Default for Initializer {
  • dashmap-shard 0.1.1/src/raw/bitmask.rs
    19
    #[allow(clippy::use_self)]
    20
    impl BitMask {
  • dashmap-shard 0.1.1/src/raw/generic.rs
    50
    // only checking whether a BitMask is empty.
    51
    #[allow(clippy::use_self)]
    52
    impl Group {
  • dashmap-shard 0.1.1/src/raw/sse2.rs
    21
    // FIXME: https://github.com/rust-lang/rust-clippy/issues/3859
    22
    #[allow(clippy::use_self)] 
    23
    impl Group {
  • docuglot 0.7.0/src/lsp.rs
    668
    #[allow(clippy::use_self)] // False positive on format!.
    669
    impl conventus::DisassembleFrom<Message> for u8 {
  • e114_core 0.3.0/src/hyper/mod.rs
    5
    #[allow(clippy::use_self)]
    6
    impl From<WebResult> for Response<Body> {
  • exonum 1.0.0/src/messages/signed.rs
    86
    #[allow(clippy::use_self)] // false positive
    87
    impl<T> Verified<T> {
  • exonum 1.0.0/src/runtime/blockchain_data.rs
    133
    #[allow(clippy::use_self)] // false positive
    134
    impl<'a, T> BlockchainData<T>
  • exonum 1.0.0/src/runtime/dispatcher/tests.rs
    161
    #[allow(clippy::use_self)] // false positive
    162
    impl From<SampleRuntime> for Arc<dyn Runtime> {
  • exonum 1.0.0/src/runtime/mod.rs
    668
    #[allow(clippy::use_self)] // false positive
    669
    impl<T: Runtime> From<T> for Box<dyn Runtime> {
  • exonum-merkledb 1.0.0/src/backends/temporarydb.rs
    118
    #[allow(clippy::use_self)] // false positive
    119
    impl From<TemporaryDB> for Arc<dyn Database> {
  • exonum-merkledb 1.0.0/src/generic.rs
    387
    #[allow(clippy::use_self)] // false positive
    388
    impl<'a, T> IntoErased<'a> for Prefixed<T>
    399
    #[allow(clippy::use_self)] // false positive
    400
    impl<'a, T> IntoErased<'a> for Migration<T>
    411
    #[allow(clippy::use_self)] // false positive
    412
    impl<'a, T> IntoErased<'a> for Scratchpad<T>
  • exonum-merkledb 1.0.0/src/indexes/proof_map/proof.rs
    52
    #[allow(clippy::use_self)]
    53
    impl<'de> serde::Deserialize<'de> for ProofPath {
    449
    #[allow(clippy::use_self)] // false positives in `map_values`
    450
    impl<K, V, KeyMode> MapProof<K, V, KeyMode>
  • exonum-merkledb 1.0.0/src/values.rs
    141
    #[allow(clippy::use_self)] // false positives
    142
    impl BinaryValue for bool {
  • exonum-merkledb 1.0.0/src/views/metadata.rs
    102
    #[allow(clippy::use_self)] // false positive
    103
    impl BinaryAttribute for u64 {
    254
    #[allow(clippy::use_self)] // false positive
    255
    impl IndexMetadata {
  • exonum-rust-runtime 1.0.0/src/service.rs
    164
    #[allow(clippy::use_self)] // false positive
    165
    impl<T> From<T> for Box<dyn ServiceFactory>
  • exonum-testkit 1.0.0/src/checkpoint_db.rs
    85
    #[allow(clippy::use_self)] // false positive
    86
    impl<T: Database> From<CheckpointDb<T>> for Arc<dyn Database> {
  • exonum-time 1.0.0/src/time_provider.rs
    120
    #[allow(clippy::use_self)] // false positive
    121
    impl From<MockTimeProvider> for Arc<dyn TimeProvider> {
    127
    #[allow(clippy::use_self)] // false positive
    128
    impl From<SystemTimeProvider> for Arc<dyn TimeProvider> {
  • fast-float 0.2.0/src/float.rs
    71
        fn pow10_fast_path(exponent: usize) -> Self {
    72
            #[allow(clippy::use_self)]
    73
            const TABLE: [f32; 16] = [
    105
        fn pow10_fast_path(exponent: usize) -> Self {
    106
            #[allow(clippy::use_self)]
    107
            const TABLE: [f64; 32] = [
  • fetch_unroll 0.3.0/src/lib.rs
    140
    #[allow(clippy::use_self)]
    141
    impl Fetch<()> {
  • figma-asset-downloader 0.9.1/src/manifest_checker.rs
    93
    #[allow(clippy::use_self)]
    94
    impl<T: ManifestReader> ManifestChecker<T> {
  • genawaiter 0.99.1/src/core.rs
    15
    #[allow(clippy::use_self)]
    16
    impl<Y, R> Next<Y, R> {
  • gstreamer 0.19.7/src/lib.rs
    40
    #[allow(clippy::type_complexity)]
    41
    #[allow(clippy::use_self)]
    42
    #[allow(clippy::needless_borrow)]
  • gstreamer-allocators 0.19.2/src/lib.rs
    32
    #[allow(clippy::type_complexity)]
    33
    #[allow(clippy::use_self)]
    34
    #[allow(unused_imports)]
  • gstreamer-app 0.19.6/src/lib.rs
    32
    #[allow(clippy::match_same_arms)]
    33
    #[allow(clippy::use_self)]
    34
    #[allow(unused_imports)]
  • gstreamer-audio 0.19.4/src/lib.rs
    32
    #[allow(clippy::match_same_arms)]
    33
    #[allow(clippy::use_self)]
    34
    #[allow(clippy::needless_borrow)]
  • gstreamer-base 0.19.3/src/lib.rs
    32
    #[allow(clippy::type_complexity)]
    33
    #[allow(clippy::use_self)]
    34
    #[allow(unused_imports)]
  • gstreamer-check 0.19.2/src/lib.rs
    28
    #[allow(clippy::type_complexity)]
    29
    #[allow(clippy::use_self)]
    30
    #[allow(unused_imports)]
  • gstreamer-controller 0.19.2/src/lib.rs
    31
    #[allow(clippy::match_same_arms)]
    32
    #[allow(clippy::use_self)]
    33
    #[allow(unused_imports)]
  • gstreamer-editing-services 0.19.4/src/lib.rs
    62
    #[allow(clippy::match_same_arms)]
    63
    #[allow(clippy::use_self)]
    64
    #[allow(clippy::needless_borrow)]
  • gstreamer-gl 0.19.5/src/lib.rs
    33
    #[allow(clippy::match_same_arms)]
    34
    #[allow(clippy::use_self)]
    35
    #[allow(unused_imports)]
  • gstreamer-gl-egl 0.19.2/src/lib.rs
    24
    #[allow(clippy::use_self)]
    25
    mod auto;
  • gstreamer-gl-wayland 0.19.2/src/lib.rs
    24
    #[allow(clippy::use_self)]
    25
    mod auto;
  • gstreamer-gl-x11 0.19.2/src/lib.rs
    24
    #[allow(clippy::use_self)]
    25
    mod auto;
  • gstreamer-net 0.19.4/src/lib.rs
    31
    #[allow(clippy::match_same_arms)]
    32
    #[allow(clippy::use_self)]
    33
    #[allow(unused_imports)]
  • gstreamer-pbutils 0.19.2/src/lib.rs
    39
    #[allow(clippy::type_complexity)]
    40
    #[allow(clippy::use_self)]
    41
    #[allow(unused_imports)]
  • gstreamer-player 0.19.4/src/lib.rs
    33
    #[allow(clippy::cast_ptr_alignment)]
    34
    #[allow(clippy::use_self)]
    35
    #[allow(clippy::needless_borrow)]
  • gstreamer-rtp 0.19.4/src/lib.rs
    33
    #[allow(non_snake_case)]
    34
    #[allow(clippy::use_self)]
    35
    #[allow(unused_imports)]
  • gstreamer-rtsp 0.19.2/src/lib.rs
    32
    #[allow(clippy::match_same_arms)]
    33
    #[allow(clippy::use_self)]
    34
    mod auto;
  • gstreamer-rtsp-server 0.19.2/src/lib.rs
    37
    #[allow(clippy::let_and_return)]
    38
    #[allow(clippy::use_self)]
    39
    #[allow(unused_imports)]
  • gstreamer-sdp 0.19.4/src/lib.rs
    32
    #[allow(non_snake_case)]
    33
    #[allow(clippy::use_self)]
    34
    mod auto;
  • gstreamer-validate 0.19.0/src/lib.rs
    42
    #[allow(clippy::needless_borrow)]
    43
    #[allow(clippy::use_self)]
    44
    #[allow(unused_imports)]
  • gstreamer-video 0.19.5/src/lib.rs
    32
    #[allow(clippy::match_same_arms)]
    33
    #[allow(clippy::use_self)]
    34
    #[allow(clippy::needless_borrow)]
  • gstreamer-webrtc 0.19.3/src/lib.rs
    32
    #[allow(clippy::match_same_arms)]
    33
    #[allow(clippy::use_self)]
    34
    #[allow(clippy::needless_borrow)]
  • hashbrown 0.13.2/src/raw/bitmask.rs
    19
    #[allow(clippy::use_self)]
    20
    impl BitMask {
  • hashbrown 0.13.2/src/raw/generic.rs
    45
    // only checking whether a BitMask is empty.
    46
    #[allow(clippy::use_self)]
    47
    impl Group {
  • hashbrown 0.13.2/src/raw/sse2.rs
    21
    // FIXME: https://github.com/rust-lang/rust-clippy/issues/3859
    22
    #[allow(clippy::use_self)]
    23
    impl Group {
  • hashbrown_tstd 0.7.1/src/raw/bitmask.rs
    19
    #[allow(clippy::use_self)]
    20
    impl BitMask {
  • hashbrown_tstd 0.7.1/src/raw/generic.rs
    47
    // only checking whether a BitMask is empty.
    48
    #[allow(clippy::use_self)]
    49
    impl Group {
  • hashbrown_tstd 0.7.1/src/raw/sse2.rs
    21
    // FIXME: https://github.com/rust-lang/rust-clippy/issues/3859
    22
    #[allow(clippy::use_self)]
    23
    impl Group {
  • holodex 0.3.1/src/model.rs
    1
    //! Structs modelling the data types used by the API.
    2
    #![allow(clippy::use_self)]
    472
    #[non_exhaustive]
    473
    #[allow(clippy::use_self)]
    474
    #[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
  • horde 0.1.1/src/raw/bitmask.rs
    18
    #[allow(clippy::use_self)]
    19
    impl BitMask {
  • horde 0.1.1/src/raw/generic.rs
    44
    // only checking whether a BitMask is empty.
    45
    #[allow(clippy::use_self)]
    46
    impl Group {
  • horde 0.1.1/src/raw/sse2.rs
    22
    // FIXME: https://github.com/rust-lang/rust-clippy/issues/3859
    23
    #[allow(clippy::use_self)]
    24
    impl Group {
  • hpke-dispatch 0.5.0/src/config.rs
    88
        /// Attempt to convert three u16 ids into a valid config. The id mappings are defined in the draft.
    89
        #[allow(clippy::use_self)] // wasm_bindgen gets confused about Self
    90
        pub fn try_from_ids(aead_id: u16, kdf_id: u16, kem_id: u16) -> Result<Config, IdLookupError> {
  • ia-sandbox 0.2.0/src/run_info.rs
    17
    #[cfg_attr(feature = "cargo-clippy", allow(use_self))]
    18
    impl<T> RunInfoResult<T> {
    142
    #[cfg_attr(feature = "cargo-clippy", allow(use_self))]
    143
    impl<T> RunInfo<T> {
  • k8s-openapi-codegen-common 0.17.0/src/swagger20/definitions.rs
    107
    #[cfg(feature = "serde")]
    108
    #[allow(clippy::use_self)]
    109
    impl<'de> serde::Deserialize<'de> for Schema {
  • k8s-openapi-codegen-common 0.17.0/src/swagger20/mod.rs
    43
    #[cfg(feature = "serde")]
    44
    #[allow(clippy::use_self)]
    45
    impl<'de> serde::Deserialize<'de> for Spec {
  • k8s-openapi-codegen-common 0.17.0/src/swagger20/paths.rs
    17
    #[cfg(feature = "serde")]
    18
    #[allow(clippy::use_self)]
    19
    impl<'de> serde::Deserialize<'de> for KubernetesAction {
    95
    #[cfg(feature = "serde")]
    96
    #[allow(clippy::use_self)]
    97
    impl<'de> serde::Deserialize<'de> for Parameter {
  • matterdb 1.2.0/src/backends/temporarydb.rs
    200
    #[allow(clippy::use_self)] // false positive
    201
    impl From<TemporaryDB> for Arc<dyn Database> {
  • matterdb 1.2.0/src/generic.rs
    375
    #[allow(clippy::use_self)] // false positive
    376
    impl<'a, T> IntoErased<'a> for Prefixed<T>
    387
    #[allow(clippy::use_self)] // false positive
    388
    impl<'a, T> IntoErased<'a> for Migration<T>
    399
    #[allow(clippy::use_self)] // false positive
    400
    impl<'a, T> IntoErased<'a> for Scratchpad<T>
  • matterdb 1.2.0/src/values.rs
    117
    #[allow(clippy::use_self)] // false positives
    118
    impl BinaryValue for bool {
  • matterdb 1.2.0/src/views/metadata.rs
    86
    #[allow(clippy::use_self)] // false positive
    87
    impl BinaryAttribute for u64 {
    215
    #[allow(clippy::use_self)] // false positive
    216
    impl IndexMetadata {
  • medea-reactive 0.1.1/src/field/mod.rs
    289
    #[allow(clippy::use_self)]
    290
    impl<D: 'static> Whenable<D> for RefCell<Vec<UniversalSubscriber<D>>> {
  • metaldb 1.0.0/src/backends/temporarydb.rs
    216
    #[allow(clippy::use_self)] // false positive
    217
    impl From<TemporaryDB> for Arc<dyn Database> {
  • metaldb 1.0.0/src/generic.rs
    375
    #[allow(clippy::use_self)] // false positive
    376
    impl<'a, T> IntoErased<'a> for Prefixed<T>
    387
    #[allow(clippy::use_self)] // false positive
    388
    impl<'a, T> IntoErased<'a> for Migration<T>
    399
    #[allow(clippy::use_self)] // false positive
    400
    impl<'a, T> IntoErased<'a> for Scratchpad<T>
  • metaldb 1.0.0/src/values.rs
    117
    #[allow(clippy::use_self)] // false positives
    118
    impl BinaryValue for bool {
  • metaldb 1.0.0/src/views/metadata.rs
    86
    #[allow(clippy::use_self)] // false positive
    87
    impl BinaryAttribute for u64 {
    215
    #[allow(clippy::use_self)] // false positive
    216
    impl IndexMetadata {
  • pbjson-types 0.5.1/src/lib.rs
    27
        clippy::enum_variant_names,
    28
        clippy::use_self
    29
    )]
  • pbjson-types-any 0.2.3/src/lib.rs
    27
        clippy::enum_variant_names,
    28
        clippy::use_self
    29
    )]
  • pin-project 1.0.12/tests/expand/default/enum.expanded.rs
    62
    #[allow(clippy::semicolon_if_nothing_returned)]
    63
    #[allow(clippy::use_self)]
    64
    #[allow(clippy::used_underscore_binding)]
  • pin-project 1.0.12/tests/expand/default/struct.expanded.rs
    19
    #[allow(clippy::semicolon_if_nothing_returned)]
    20
    #[allow(clippy::use_self)]
    21
    #[allow(clippy::used_underscore_binding)]
  • pin-project 1.0.12/tests/expand/default/tuple_struct.expanded.rs
    15
    #[allow(clippy::semicolon_if_nothing_returned)]
    16
    #[allow(clippy::use_self)]
    17
    #[allow(clippy::used_underscore_binding)]
  • pin-project 1.0.12/tests/expand/multifields/enum.expanded.rs
    113
    #[allow(clippy::semicolon_if_nothing_returned)]
    114
    #[allow(clippy::use_self)]
    115
    #[allow(clippy::used_underscore_binding)]
  • pin-project 1.0.12/tests/expand/multifields/struct.expanded.rs
    22
    #[allow(clippy::semicolon_if_nothing_returned)]
    23
    #[allow(clippy::use_self)]
    24
    #[allow(clippy::used_underscore_binding)]
  • pin-project 1.0.12/tests/expand/multifields/tuple_struct.expanded.rs
    15
    #[allow(clippy::semicolon_if_nothing_returned)]
    16
    #[allow(clippy::use_self)]
    17
    #[allow(clippy::used_underscore_binding)]
  • pin-project 1.0.12/tests/expand/naming/enum-all.expanded.rs
    80
    #[allow(clippy::semicolon_if_nothing_returned)]
    81
    #[allow(clippy::use_self)]
    82
    #[allow(clippy::used_underscore_binding)]
  • pin-project 1.0.12/tests/expand/naming/enum-mut.expanded.rs
    42
    #[allow(clippy::semicolon_if_nothing_returned)]
    43
    #[allow(clippy::use_self)]
    44
    #[allow(clippy::used_underscore_binding)]
  • pin-project 1.0.12/tests/expand/naming/enum-none.expanded.rs
    19
    #[allow(clippy::semicolon_if_nothing_returned)]
    20
    #[allow(clippy::use_self)]
    21
    #[allow(clippy::used_underscore_binding)]
  • pin-project 1.0.12/tests/expand/naming/enum-own.expanded.rs
    37
    #[allow(clippy::semicolon_if_nothing_returned)]
    38
    #[allow(clippy::use_self)]
    39
    #[allow(clippy::used_underscore_binding)]
  • pin-project-lite 0.2.9/tests/lint.rs
    181
    #[allow(clippy::use_self)]
    182
    pub mod clippy_type_repetition_in_bounds {
  • pliantdb-core 0.1.0-dev-2/src/connection.rs
    298
    #[allow(clippy::use_self)] // clippy is wrong, Self is different because of generic parameters
    299
    impl<K: Key> QueryKey<K> {
    338
    #[allow(clippy::use_self)] // clippy is wrong, Self is different because of generic parameters
    339
    impl QueryKey<Vec<u8>> {
  • pliantdb-core 0.1.0-dev-2/src/schema/view.rs
    123
    #[allow(clippy::use_self)] // Using Self here instead of T inside of reduce() breaks compilation. The alternative is much more verbose and harder to read.
    124
    impl<T> Serialized for T
  • pmdk 0.9.4/src/error.rs
    108
    #[allow(clippy::use_self)]
    109
    impl<T, E> WrapErr<T, E> for Result<T, E>
  • pslink-shared 0.4.1-beta.2/src/apirequests/users.rs
    62
    /// The columns in the user view table. The table can be ordered according to these.
    63
    #[allow(clippy::use_self)]
    64
    #[derive(Clone, Deserialize, Serialize, Debug, PartialEq, Eq, Hash, Enum)]
  • pulz-schedule 0.1.0-alpha/src/resource.rs
    566
    {
    567
        #[allow(clippy::use_self)] // because different lifetime
    568
        type Output = Option<Res<'a, T>>;
    597
    {
    598
        #[allow(clippy::use_self)] // because different lifetime
    599
        type Output = Option<ResMut<'a, T>>;
    645
    {
    646
        #[allow(clippy::use_self)] // because different lifetime
    647
        type Output = NonSend<Res<'a, T>>;
    670
    {
    671
        #[allow(clippy::use_self)] // because different lifetime
    672
        type Output = NonSend<ResMut<'a, T>>;
    696
    {
    697
        #[allow(clippy::use_self)] // because different lifetime
    698
        type Output = Option<NonSend<Res<'a, T>>>;
  • ranged_type 0.1.0/src/ranged_i32/add/ranged_i32.rs
    4
    #[allow(clippy::use_self)]
  • ranged_type 0.1.0/src/ranged_i32/sub/ranged_i32.rs
    4
    #[allow(clippy::use_self)]
  • ranges 0.3.3/src/domain/char.rs
    11
        /// the returned value will be `\u{0xd7ff}`.
    12
        #[allow(clippy::as_conversions, clippy::integer_arithmetic, clippy::use_self)]
    13
        fn predecessor(&self) -> Option<Self> {
    33
        /// the returned value will be `\u{0xe000}`.
    34
        #[allow(clippy::as_conversions, clippy::integer_arithmetic, clippy::use_self)]
    35
        fn successor(&self) -> Option<Self> {
  • rss2email 1.0.1/src/email/mod.rs
    3
    #[allow(clippy::use_self)]
    4
    #[allow(clippy::module_name_repetitions)]
  • ruint 1.7.0/src/from.rs
    560
        #[allow(clippy::cast_lossless)] // Safe casts
    561
        #[allow(clippy::use_self)] // More readable
    562
        fn try_from(value: &Uint<BITS, LIMBS>) -> Result<Self, Self::Error> {
    583
        #[allow(clippy::cast_lossless)] // Safe casts
    584
        #[allow(clippy::use_self)] // More readable
    585
        fn try_from(value: &Uint<BITS, LIMBS>) -> Result<Self, Self::Error> {
  • rustfmt_lib 2.0.0-rc.2/tests/source/cfg_if/detect/cache.rs
    33
    #[allow(clippy::use_self)]
    34
    impl Default for Initializer {
    78
    #[cfg(target_pointer_width = "64")]
    79
    #[allow(clippy::use_self)]
    80
    impl Cache {
  • rustfmt_lib 2.0.0-rc.2/tests/target/cfg_if/detect/cache.rs
    33
    #[allow(clippy::use_self)]
    34
    impl Default for Initializer {
    78
    #[cfg(target_pointer_width = "64")]
    79
    #[allow(clippy::use_self)]
    80
    impl Cache {
  • rustfmt-nightly 1.4.21/tests/source/cfg_if/detect/cache.rs
    33
    #[allow(clippy::use_self)]
    34
    impl Default for Initializer {
    78
    #[cfg(target_pointer_width = "64")]
    79
    #[allow(clippy::use_self)]
    80
    impl Cache {
  • rustfmt-nightly 1.4.21/tests/target/cfg_if/detect/cache.rs
    33
    #[allow(clippy::use_self)]
    34
    impl Default for Initializer {
    78
    #[cfg(target_pointer_width = "64")]
    79
    #[allow(clippy::use_self)]
    80
    impl Cache {
  • saildb 0.0.2/expand.rs
    79
        impl serde::Serialize for __srpc_action {
    80
            #[allow(clippy::use_self)]
    81
            fn serialize<S>(&self, serializer: S) -> core::result::Result<S::Ok, S::Error>
    93
        impl<'de> serde::Deserialize<'de> for __srpc_action {
    94
            #[allow(clippy::use_self)]
    95
            fn deserialize<D>(deserializer: D) -> core::result::Result<Self, D::Error>
    367
        impl serde::Serialize for __srpc_action {
    368
            #[allow(clippy::use_self)]
    369
            fn serialize<S>(&self, serializer: S) -> core::result::Result<S::Ok, S::Error>
    381
        impl<'de> serde::Deserialize<'de> for __srpc_action {
    382
            #[allow(clippy::use_self)]
    383
            fn deserialize<D>(deserializer: D) -> core::result::Result<Self, D::Error>
  • shredder 0.2.0/src/smart_ptr/deref_gc.rs
    98
    #[allow(clippy::use_self)]
    99
    impl<T: Scan + GcDeref + ?Sized> DerefGc<T> {
  • shredder 0.2.0/src/smart_ptr/gc.rs
    148
    #[allow(clippy::use_self)]
    149
    impl<T: Scan + ?Sized> Gc<T> {
  • std_detect 0.1.5/src/detect/cache.rs
    33
    #[allow(clippy::use_self)]
    34
    impl Default for Initializer {
    78
    #[cfg(target_pointer_width = "64")]
    79
    #[allow(clippy::use_self)]
    80
    impl Cache {
  • storages 0.1.1/src/boxed/mod.rs
    23
    /// Construction of boxed values with a buffer backed by the global allocator.
    24
    #[allow(clippy::use_self)]
    25
    impl<T> Box<T> {
    99
    /// Construction of boxed slices with a buffer backed by the global allocator.
    100
    #[allow(clippy::use_self)]
    101
    impl<T> Box<[T]> {
    155
    /// Construction of boxed values in a provided buffer.
    156
    #[allow(clippy::use_self)]
    157
    impl<T, B, D> Box<T, B, D>
    249
    /// Construction of boxed slices in a provided buffer.
    250
    #[allow(clippy::use_self)]
    251
    impl<T, B, D> Box<[T], B, D>
    289
    #[allow(clippy::use_self)]
    290
    impl<T, B, D> Box<mem::MaybeUninit<T>, B, D>
  • storages 0.1.1/src/boxed/raw.rs
    76
    /// Construction of boxed values with a buffer backed by the global allocator.
    77
    #[allow(clippy::use_self)]
    78
    impl<T> RawBox<T> {
    165
    /// Construction of boxed slices with a buffer backed by the global allocator.
    166
    #[allow(clippy::use_self)]
    167
    impl<T> RawBox<[T]> {
    233
    /// Construction of boxed values in a provided buffer.
    234
    #[allow(clippy::use_self)]
    235
    impl<T, B> RawBox<T, B>
    303
    /// Construction of boxed slices in a provided buffer.
    304
    #[allow(clippy::use_self)]
    305
    impl<T, B> RawBox<[T], B>
    372
    #[allow(clippy::use_self)]
    373
    impl<T, B> RawBox<mem::MaybeUninit<T>, B>
  • tbot 0.6.7/src/state/event_loop.rs
    67
    #[allow(clippy::use_self)] // https://github.com/rust-lang/rust-clippy/issues/4143
    68
    impl<S> StatefulEventLoop<S> {
  • tendermint-p2p 0.28.0/src/secret_connection.rs
    77
    #[allow(clippy::use_self)]
    78
    impl Handshake<AwaitingEphKey> {
  • termusic 0.7.8/src/player/rusty_backend/buffer.rs
    27
    #[allow(unused, clippy::use_self)]
    28
    impl<S> SamplesBuffer<S>
  • termusic 0.7.8/src/player/rusty_backend/source/done.rs
    15
    #[allow(clippy::use_self, clippy::missing_const_for_fn, unused)]
    16
    impl<I> Done<I> {
  • termusic 0.7.8/src/player/rusty_backend/source/empty.rs
    17
    #[allow(clippy::use_self)]
    18
    impl<S> Empty<S> {
  • termusic 0.7.8/src/player/rusty_backend/source/samples_converter.rs
    18
    #[allow(clippy::use_self, unused, clippy::missing_const_for_fn)]
    19
    impl<I, D> SamplesConverter<I, D> {
  • termusic 0.7.8/src/player/rusty_backend/source/uniform.rs
    32
        #[inline]
    33
        #[allow(clippy::use_self)]
    34
        pub fn new(
  • termusic 0.7.8/src/songtag/mod.rs
    57
    #[derive(Deserialize, Serialize)]
    58
    #[allow(clippy::use_self)]
    59
    pub enum ServiceProvider {
  • tsukuyomi-internal 0.4.3/src/localmap.rs
    111
    #[cfg_attr(feature = "cargo-clippy", allow(use_self))]
    112
    impl BoxDowncastExt for Box<dyn Opaque> {
  • twitch_types 0.4.0/src/stream.rs
    206
    impl serde::Serialize for CommercialLength {
    207
        #[allow(clippy::use_self)]
    208
        fn serialize<S>(&self, serializer: S) -> core::result::Result<S::Ok, S::Error>
    217
    impl<'de> serde::Deserialize<'de> for CommercialLength {
    218
        #[allow(clippy::use_self)]
    219
        fn deserialize<D>(deserializer: D) -> core::result::Result<Self, D::Error>
  • wundergraph 0.1.2/src/query_builder/selection/filter/filter_helper.rs
    200
    // That's a false positve
    201
    #[allow(clippy::use_self)]
    202
    impl<C, K, I, DB, Ctx> AsColumnFilter<C, DB, Ctx> for Option<HasOne<K, I>>
  • wundergraph 0.1.2/src/query_builder/selection/filter/nullable_filter/is_null.rs
    62
    //That's a false positive by clippy
    63
    #[allow(clippy::use_self)]
    64
    impl<C> InnerFilter for Option<IsNull<C>> {
  • wundergraph 0.1.2/src/query_builder/types/has_one.rs
    200
    #[allow(clippy::use_self)]
    201
    impl<R, T, DB, Ctx> WundergraphGraphqlMapper<DB, Ctx> for Option<HasOne<R, T>>
  • xidlehook-core 0.3.0/src/lib.rs
    137
    // There are some false positive with Self and generics.
    138
    #[allow(clippy::use_self)]
    139
    impl<T, M> Xidlehook<T, M>
  • yata 0.6.1/src/core/indicator/result.rs
    11
    #[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
    12
    #[allow(clippy::use_self)]
    13
    pub struct IndicatorResult {
  • zkp-stark 0.2.1/src/prover.rs
    58
    // Clippy false positive
    59
    #[allow(clippy::use_self)]
    60
    impl VectorCommitment for PolyLDE {
  • a_r_c_h_e_r_y 0.4.3/src/lib.rs
    13
    #![allow(clippy::similar_names)]
    14
    #![allow(clippy::use_self)]
    15
    #![allow(clippy::single_match_else)]
  • aerospike 1.2.0/src/lib.rs
    40
        clippy::unused_self,
    41
        clippy::use_self,
    42
        clippy::missing_errors_doc
  • alt_serde 1.0.119/src/lib.rs
    118
            type_complexity,
    119
            use_self,
    120
            zero_prefixed_literal,
  • alt_serde_derive 1.0.119/src/lib.rs
    50
        clippy::unseparated_literal_suffix,
    51
        clippy::use_self,
    52
        clippy::wildcard_imports
  • alt_serde_json 1.0.61/src/lib.rs
    347
        clippy::unseparated_literal_suffix,
    348
        clippy::use_self,
    349
        clippy::zero_prefixed_literal,
  • amethyst_tiles 0.15.3/src/pass.rs
    1
    #![allow(clippy::default_trait_access, clippy::use_self)]
    2
    #![allow(unused_imports, unused_variables)]
  • aragog 0.17.0/src/query/mod.rs
    1
    #![allow(clippy::use_self)]
    2
    use crate::query::graph_query::{GraphQueryData, GraphQueryDirection};
  • archery 0.4.0/src/lib.rs
    13
    #![allow(clippy::similar_names)]
    14
    #![allow(clippy::use_self)]
    15
    #![allow(clippy::single_match_else)]
  • arith_traits 0.3.2/src/traits/i_checked_ops.rs
    1
    // suppress `use_self` recommendation; not avoidable in macro context
    2
    #![allow(clippy::use_self)]
  • arith_traits 0.3.2/src/traits/i_overflowing_ops.rs
    1
    // suppress `use_self` recommendation; unavoidable in macro context
    2
    #![allow(clippy::use_self)]
  • arith_traits 0.3.2/src/traits/i_panicking_ops.rs
    1
    // suppress `use_self` recommendation; unavoidable in macro context
    2
    #![allow(clippy::use_self)]
  • arith_traits 0.3.2/src/traits/i_saturating_ops.rs
    1
    // suppress `use_self` recommendation; unavoidable in macro context
    2
    #![allow(clippy::use_self)]
  • arith_traits 0.3.2/src/traits/i_wrapping_ops.rs
    1
    // suppress spurious? `clippy::use_self` lint
    2
    #![allow(clippy::use_self)]
  • async-graphql 5.0.5/src/lib.rs
    169
    // #![deny(clippy::nursery)]
    170
    #![allow(clippy::use_self)]
    171
    #![allow(clippy::missing_const_for_fn)]
  • asyncgit 0.22.1/src/sync/config.rs
    1
    //TODO: hopefully released in next rust (see https://github.com/rust-lang/rust-clippy/issues/9440)
    2
    #![allow(clippy::use_self)]
  • atat 0.18.0/src/lib.rs
    212
    #![allow(clippy::unused_unit)]
    213
    #![allow(clippy::use_self)]
    214
    #![allow(clippy::too_many_lines)]
  • atuin 12.0.0/src/main.rs
    1
    #![warn(clippy::pedantic, clippy::nursery)]
    2
    #![allow(clippy::use_self, clippy::missing_const_for_fn)] // not 100% reliable
  • av-scenechange 0.8.1/src/lib.rs
    14
    #![allow(clippy::struct_excessive_bools)]
    15
    #![allow(clippy::use_self)]
    16
    #![warn(clippy::clone_on_ref_ptr)]
  • av-scenechange 0.8.1/src/main.rs
    14
    #![allow(clippy::struct_excessive_bools)]
    15
    #![allow(clippy::use_self)]
    16
    #![warn(clippy::clone_on_ref_ptr)]
  • av1-grain 0.2.2/src/lib.rs
    23
    #![allow(clippy::struct_excessive_bools)]
    24
    #![allow(clippy::use_self)]
    25
    #![warn(clippy::clone_on_ref_ptr)]
  • av1an-core 0.4.0/src/lib.rs
    18
    #![allow(clippy::needless_pass_by_value)]
    19
    #![allow(clippy::use_self)]
  • beehive 0.1.1/src/lib.rs
    52
        clippy::module_name_repetitions,
    53
        clippy::use_self,
    54
        clippy::must_use_candidate
  • better-as 0.2.0/src/number.rs
    1
    #![allow(clippy::use_self)]
  • bluetooth_mesh 0.1.4/src/lib.rs
    15
        clippy::cast_possible_truncation,
    16
        clippy::use_self,
    17
        clippy::doc_markdown,
  • burntnail-utils 0.7.1/src/error_types.rs
    3
    //! The expectation is that you will use this for all error types.
    4
    #![allow(clippy::use_self)]
  • cargo-cli 1.0.0/src/main.rs
    104
    #![recursion_limit = "128"]
    105
    #![cfg_attr(feature = "cargo-clippy", allow(use_self))]
    106
    #[macro_use]
  • cargo-rdme 1.1.0/src/lib.rs
    12
    #![allow(clippy::similar_names)]
    13
    #![allow(clippy::use_self)]
    14
    #![allow(clippy::single_match_else)]
  • cargo-rdme 1.1.0/src/main.rs
    12
    #![allow(clippy::similar_names)]
    13
    #![allow(clippy::use_self)]
    14
    #![allow(clippy::single_match_else)]
  • cargo-test-fuzz 3.0.5/src/lib.rs
    1
    #![cfg_attr(dylint_lib = "crate_wide_allow", allow(crate_wide_allow))]
    2
    #![allow(clippy::use_self)]
    3
    #![deny(clippy::expect_used)]
  • cetkaik_fundamental 1.0.0/src/lib.rs
    5
        clippy::non_ascii_literal,
    6
        clippy::use_self,
    7
        clippy::upper_case_acronyms,
  • cetkaik_naive_representation 1.3.0/src/lib.rs
    3
        clippy::non_ascii_literal,
    4
        clippy::use_self,
    5
        clippy::upper_case_acronyms
  • cetkaik_yhuap_move_candidates 1.3.1/src/lib.rs
    5
        clippy::module_name_repetitions,
    6
        clippy::use_self
    7
    )]
  • charcoal 1.1.0/src/lib.rs
    59
    #![allow(
    60
        clippy::use_self, // FIXME reenable when it gets fixed
    61
        clippy::clippy::wildcard_imports, // Worst lint ever
  • clido 0.3.1/src/db.rs
    1
    #![allow(clippy::use_self)]
  • coffea 0.1.0/src/main.rs
    2
    #![warn(clippy::pedantic)]
    3
    #![allow(dead_code, clippy::use_self, clippy::module_name_repetitions)]
    4
    // todo: heuristic for byte and friends being converted to int (e.g. indexing into array)
  • daml-codegen 0.2.2/src/lib.rs
    4
        clippy::needless_pass_by_value,
    5
        clippy::use_self,
    6
        clippy::cast_sign_loss,
  • daml-darn 0.2.2/src/main.rs
    4
        clippy::module_name_repetitions,
    5
        clippy::use_self,
    6
        clippy::must_use_candidate,
  • daml-grpc 0.2.2/src/lib.rs
    44
        clippy::module_name_repetitions,
    45
        clippy::use_self,
    46
        clippy::must_use_candidate,
  • daml-lf 0.2.2/src/lib.rs
    81
        clippy::module_name_repetitions,
    82
        clippy::use_self,
    83
        clippy::cast_sign_loss,
  • derive-error-chain 0.11.2/src/lib.rs
    6
    	too_many_arguments,
    7
    	use_self,
    8
    ))]
  • deterministic-pgp-keys 0.3.0/src/pgp/mod.rs
    20
    )]
    21
    #![allow(clippy::missing_const_for_fn, clippy::use_self, dead_code)]
  • doryen-extra 0.2.1/src/noise.rs
    36
    #![allow(clippy::match_single_binding)]
    37
    #![allow(clippy::use_self)]
  • drone-core 0.14.3/src/lib.rs
    59
        clippy::type_repetition_in_bounds,
    60
        clippy::use_self,
    61
        clippy::used_underscore_binding
  • dwm-status 1.8.1/src/lib.rs
    29
        clippy::unused_self,
    30
        clippy::use_self
    31
    )]
  • easy-error 1.0.0/src/lib.rs
    61
    #![warn(clippy::pedantic)]
    62
    #![allow(clippy::use_self)] // I rather like the name repetition
    63
    #![allow(clippy::missing_errors_doc)] // This is an error handling library, errors are implied.
  • ellidri 3.0.0-beta/src/lib.rs
    18
    #![warn(clippy::all, rust_2018_idioms)]
    19
    #![allow(clippy::filter_map, clippy::find_map, clippy::shadow_unrelated, clippy::use_self)]
  • ellidri 3.0.0-beta/src/main.rs
    2
    #![warn(clippy::all, rust_2018_idioms)]
    3
    #![allow(clippy::filter_map, clippy::find_map, clippy::shadow_unrelated, clippy::use_self)]
  • ellidri-unicase 2.1.0/src/lib.rs
    34
    #![warn(clippy::all, rust_2018_idioms)]
    35
    #![allow(clippy::filter_map, clippy::find_map, clippy::shadow_unrelated, clippy::use_self)]
  • eosio_bytes 0.2.1/src/lib.rs
    3
    #![allow(clippy::module_name_repetitions)]
    4
    #![allow(clippy::use_self)]
  • eosio_cdt_sys 0.3.0/src/lib.rs
    22
        clippy::op_ref,
    23
        clippy::use_self,
    24
        clippy::unseparated_literal_suffix
  • fast-float 0.2.0/src/lib.rs
    41
        clippy::missing_const_for_fn,
    42
        clippy::use_self,
    43
        clippy::module_name_repetitions,
  • feroxfuzz 1.0.0-rc.8/src/actions.rs
    1
    //! represents an action that should be performed, typically in response to some event
    2
    #![allow(clippy::use_self)] // clippy false-positive on Action, doesn't want to apply directly to the enums that derive Serialize
  • feroxfuzz 1.0.0-rc.8/src/corpora/http_methods.rs
    1
    #![allow(clippy::use_self)] // clippy false-positive on Action, doesn't want to apply directly to the enums that derive Serialize
    2
    use std::fmt::{self, Debug, Display, Formatter};
  • feroxfuzz 1.0.0-rc.8/src/corpora/mod.rs
    1
    //! Corpora modeled around how the test cases are generated, i.e. from a file/folder etc...
    2
    #![allow(clippy::use_self)] // clippy false-positive on CorpusItemType, doesn't want to apply directly to the enums that derive Serialize
    3
    mod directory;
  • feroxfuzz 1.0.0-rc.8/src/error.rs
    1
    //! Custom error-type definitions
    2
    #![allow(clippy::use_self)] // clippy false-positive on Action, doesn't want to apply directly to the enums that derive Serialize
    3
    use std::str::Utf8Error;
  • feroxfuzz 1.0.0-rc.8/src/mutators/afl.rs
    1
    //! re-exports some of libafl's mutators after implementing the [`Mutator`] trait
    2
    #![allow(clippy::use_self)] // clippy false-positive
    3
    #![allow(clippy::cast_possible_truncation)] // we'll be okay with this one
  • feroxfuzz 1.0.0-rc.8/src/processors/mod.rs
    1
    //! actions taken after all other processing is complete
    2
    #![allow(clippy::use_self)] // clippy false-positive on Action, doesn't want to apply directly to the enums that derive Serialize
    3
    use crate::actions::Action;
  • feroxfuzz 1.0.0-rc.8/src/requests/directives.rs
    1
    #![allow(clippy::use_self)] // clippy false-positive on Action, doesn't want to apply directly to the enums that derive Serialize
  • feroxfuzz 1.0.0-rc.8/src/requests/encoders.rs
    2
    //! is guaranteed to incur only a single allocation per encoding.
    3
    #![allow(clippy::use_self)] // clippy false-positive on Action, doesn't want to apply directly to the enums that derive Serialize
  • feroxfuzz 1.0.0-rc.8/src/std_ext/ops.rs
    1
    #![allow(clippy::use_self)] // clippy false-positive on Action, doesn't want to apply directly to the enums that derive Serialize
    2
    use crate::actions::{Action, FlowControl};
  • flacenc 0.1.0/src/lib.rs
    22
        // https://github.com/rust-lang/rust-clippy/issues/6902
    23
        clippy::use_self,
    24
        clippy::cast_possible_truncation,
  • flacenc 0.1.0/src/main.rs
    17
    #![allow(
    18
        clippy::use_self,
    19
        clippy::cast_possible_truncation,
  • frankenstein 0.22.0/src/lib.rs
    14
        clippy::unreadable_literal,
    15
        clippy::use_self,
    16
        clippy::wildcard_imports
  • ghloc 0.1.2/src/main.rs
    1
    #![allow(clippy::use_self)]
  • git-smash 0.1.0/src/config.rs
    1
    #![allow(clippy::use_self)]
    2
    use crate::args::Args;
  • granite 1.1.1/src/lib.rs
    62
    #![allow(
    63
        clippy::use_self,
    64
        clippy::must_use_candidate,
  • grass 0.12.2/src/lib.rs
    37
    #![allow(
    38
        clippy::use_self,
    39
        clippy::missing_docs_in_private_items,
  • grass_compiler 0.12.2/src/lib.rs
    37
    #![allow(
    38
        clippy::use_self,
    39
        clippy::missing_docs_in_private_items,
  • grav1synth 0.1.0-beta.5/src/main.rs
    14
    #![allow(clippy::struct_excessive_bools)]
    15
    #![allow(clippy::use_self)]
    16
    #![warn(clippy::clone_on_ref_ptr)]
  • h3o 0.3.0/src/coord/ijk.rs
    12
    #![allow(clippy::use_self)] // False positive with `auto_ops::impl_op_ex`
  • hpke-dispatch 0.5.0/src/lib.rs
    11
    #![warn(missing_docs, clippy::cargo)]
    12
    #![allow(clippy::missing_errors_doc, clippy::use_self)]
    13
    #![doc = include_str!("../README.md")]
  • int-conv 0.1.4/src/lib.rs
    26
    // We want to explicitly use the type we're converting to in implementations
    27
    #![allow(clippy::use_self)]
    28
    // We use integer division when we want to discard any decimal parts
  • interactive-actions 1.0.0/src/lib.rs
    78
    #![allow(clippy::module_name_repetitions)]
    79
    #![allow(clippy::use_self)]
    80
    #![allow(clippy::missing_const_for_fn)]
  • just 1.13.0/src/enclosure.rs
    1
    // `Self` cannot be used where type takes generic arguments
    2
    #![allow(clippy::use_self)]
  • just 1.13.0/src/list.rs
    1
    // `Self` cannot be used where type takes generic arguments
    2
    #![allow(clippy::use_self)]
  • lalrproc 0.0.8/src/lib.rs
    12
        clippy::module_name_repetitions,
    13
        clippy::use_self,
    14
        clippy::wildcard_imports
  • libasuran 0.0.3/src/lib.rs
    11
    #![allow(clippy::similar_names)]
    12
    #![allow(clippy::use_self)]
    13
    #![allow(clippy::shadow_unrelated)]
  • lmake_readme 0.5.4/src/main.rs
    161
        // Why is this bad: Unnecessary repetition. Mixed use of Self and struct name feels inconsistent.
    162
        clippy::use_self,
    163
        // Cannot add #[inline] to the start function with #[wasm_bindgen(start)]
  • lmake_semver 0.1.12/src/main.rs
    78
        // Why is this bad: Unnecessary repetition. Mixed use of Self and struct name feels inconsistent.
    79
        clippy::use_self,
    80
        // Cannot add #[inline] to the start function with #[wasm_bindgen(start)]
  • lmake_version_from_date 0.3.41/src/main.rs
    98
        //Why is this bad: Unnecessary repetition. Mixed use of Self and struct name feels inconsistent.
    99
        clippy::use_self,
    100
        //Cannot add #[inline] to the start function with #[wasm_bindgen(start)]
  • log-once 0.4.0/src/lib.rs
    3
    #![allow(clippy::useless_attribute, clippy::missing_docs_in_private_items)]
    4
    #![allow(clippy::use_self)]
  • maceats 0.0.0/src/lib.rs
    16
    #![allow(clippy::multiple_crate_versions)]
    17
    #![allow(clippy::use_self)]
  • mathpack 0.1.8/src/linalg/matrix.rs
    1
    #![allow(clippy::use_self)]
    2
    #[allow(unused_macros)]
  • medea 0.2.0/src/api/control/refs/local_uri.rs
    3
    // Fix clippy's wrong errors for `Self` in `LocalUri`s with states as generics.
    4
    #![allow(clippy::use_self)]
  • medea 0.2.0/src/api/control/refs/mod.rs
    4
    #![allow(clippy::use_self)]
  • mekate-searcher-rs 0.1.0/src/bid.rs
    1
    #![allow(clippy::use_self)]
  • mekatek-searcher-rs 0.1.0/src/bid.rs
    1
    #![allow(clippy::use_self)]
  • metatype 0.2.1/src/lib.rs
    50
    	clippy::not_unsafe_ptr_arg_deref,
    51
    	clippy::use_self,
    52
    	clippy::missing_panics_doc,
  • mm0_util 0.1.4/src/lib.rs
    50
      clippy::too_many_lines,
    51
      clippy::use_self
    52
    )]
  • mm0b_parser 0.1.4/src/lib.rs
    51
      clippy::too_many_lines,
    52
      clippy::use_self
    53
    )]
  • neodyn_xc 0.4.0/src/lib.rs
    76
             clippy::type_repetition_in_bounds,
    77
             clippy::unreachable, clippy::use_self, clippy::wildcard_imports)]
  • neos 0.4.0/src/lib.rs
    39
    // Strum macros would cause warnings
    40
    #![allow(clippy::use_self)]
    41
    // My project my choice, tabs are literally made for indentation, spaces not.
  • nng 1.0.1/src/lib.rs
    157
    // In these cases, I just don't like what Clippy suggests.
    158
    #![allow(clippy::use_self)]
    159
    #![allow(clippy::if_not_else)]
  • nonogrid 0.7.3/examples/spoj/main.rs
    1
    #![allow(clippy::missing_const_for_fn)]
    2
    #![allow(clippy::use_self)]
    3
    #![allow(clippy::option_if_let_else)]
  • notifier 0.1.3/src/heap.rs
    2
    #![allow(unused_results)]
    3
    #![allow(clippy::needless_return, clippy::similar_names, clippy::use_self, clippy::len_zero,clippy::explicit_iter_loop)]
  • openshift-openapi 0.3.1/src/lib.rs
    13
        clippy::type_complexity,
    14
        clippy::use_self
    15
    )]
  • optivorbis 0.1.2/src/wasm_bindings.rs
    2
    // The wasm_bindgen macro generates these warnings
    3
    #![allow(clippy::use_self)]
  • package_json_schema 0.2.0/src/package_json.rs
    1
    #![allow(clippy::use_self)]
  • packed_simd_2 0.3.8/src/lib.rs
    238
            // See https://github.com/rust-lang/rust-clippy/issues/3410
    239
            clippy::use_self,
    240
            clippy::wrong_self_convention,
  • paging-calculator 0.1.2/src/main.rs
    44
    // allow: required because of derive_more::Display macro
    45
    #![allow(clippy::use_self)]
    46
    #![deny(missing_docs)]
  • paper 0.4.0/src/lib.rs
    10
        clippy::unreachable, // unreachable added by enum_map::Enum.
    11
        clippy::use_self, // False positive on format macro.
    12
        clippy::trivial_regex, // Trivial regex added by thiserror::Error.
  • pgp 0.9.0/src/lib.rs
    21
    )]
    22
    #![allow(clippy::missing_const_for_fn, clippy::use_self)]
  • php_serde 0.6.0/src/lib.rs
    236
        clippy::pub_enum_variant_names,
    237
        clippy::use_self,
    238
        clippy::cargo_common_metadata,
  • plow_cli 0.4.8/src/subcommand/submit/response.rs
    1
    #![allow(clippy::use_self)]
  • plow_package_management 0.3.1/src/lock.rs
    1
    #![allow(clippy::use_self)]
  • pyxel-extension 1.9.11/src/lib.rs
    15
        clippy::unused_self,
    16
        clippy::use_self,
    17
        clippy::used_underscore_binding,
  • pyxel-wrapper 1.8.2/src/lib.rs
    15
        clippy::unused_self,
    16
        clippy::use_self,
    17
        clippy::used_underscore_binding,
  • qr_code 1.1.0/src/lib.rs
    10
        clippy::must_use_candidate, // This is just annoying.
    11
        clippy::use_self, // Rust 1.33 doesn't support Self::EnumVariant, let's try again in 1.37.
    12
        clippy::match_like_matches_macro, // MSRV is lower than what's needed for matches!
  • qrcode 0.12.0/src/lib.rs
    32
        clippy::must_use_candidate, // This is just annoying.
    33
        clippy::use_self, // Rust 1.33 doesn't support Self::EnumVariant, let's try again in 1.37.
    34
    )]
  • qsv-stats 0.7.0/src/lib.rs
    6
    #![allow(clippy::missing_panics_doc)]
    7
    #![allow(clippy::use_self)]
  • rbw 1.4.3/src/protocol.rs
    1
    // https://github.com/rust-lang/rust-clippy/issues/6902
    2
    #![allow(clippy::use_self)]
  • rcpp 0.1.3/src/preprocessor/pretoken.rs
    1
    #![allow(clippy::too_many_lines)]
    2
    #![allow(clippy::use_self)]
    3
    use logos::Logos;
  • relearn 0.3.1/src/agents/mod.rs
    3
    //! More agents can be found in [`crate::torch::agents`].
    4
    #![allow(clippy::use_self)] // false positive with serde derives
  • relearn 0.3.1/src/envs/mod.rs
    1
    //! Reinforcement learning environments
    2
    #![allow(clippy::use_self)] // false positive with serde derives
    3
    mod bandits;
  • relearn 0.3.1/src/torch/agents/critics/mod.rs
    1
    //! Critics for an actor-critic agent.
    2
    #![allow(clippy::use_self)] // false positive with serde derives
    3
    mod opt;
  • relearn 0.3.1/src/torch/initializers.rs
    1
    //! Tensor initializers
    2
    #![allow(clippy::use_self)] // false positive with serde derives
    3
    use serde::{Deserialize, Serialize};
  • relearn 0.3.1/src/torch/modules/ff/activation.rs
    1
    //! Activation functions.
    2
    #![allow(clippy::use_self)] // false positive with serde derives
    3
    use super::super::{Forward, Module, ModuleExtras, SeqIterative, SeqPacked, SeqSerial};
  • relearn 0.3.1/src/torch/serialize.rs
    1
    //! Tensor serialization and deserialization
    2
    #![allow(clippy::use_self)] // created by serde derive for KindDef
  • rotz 0.9.2/src/main.rs
    3
    #![allow(clippy::multiple_crate_versions)]
    4
    #![allow(clippy::use_self)]
    5
    #![allow(clippy::default_trait_access)]
  • rpds 0.12.0/src/lib.rs
    13
    #![allow(clippy::similar_names)]
    14
    #![allow(clippy::use_self)]
    15
    #![allow(clippy::single_match_else)]
  • rta-for-fps-lib 0.2.0/src/lib.rs
    17
    #![warn(clippy::nursery)]
    18
    #![allow(clippy::use_self)] // too many false positives and fails to be overridden locally
    19
    #![allow(clippy::redundant_pub_crate)] // prevents accidents when changing the visibility of the containing modul
  • ruint 1.7.0/src/algorithms/gcd/matrix.rs
    1
    #![allow(clippy::use_self)]
  • rustwrap 1.0.4/src/data.rs
    1
    #![allow(clippy::use_self)]
    2
    use anyhow::Result;
  • rustwrap 1.0.4/src/providers/npm.rs
    1
    #![allow(clippy::use_self)]
    2
    #![allow(clippy::module_name_repetitions)]
  • rusty_pandas 0.0.2/src/lib.rs
    3
    #![deny(clippy::all, clippy::pedantic)]
    4
    #![allow(clippy::use_self)]
  • rustycpp 0.1.6/src/lexer/tokens.rs
    3
        clippy::missing_docs_in_private_items,
    4
        clippy::use_self,
    5
        non_camel_case_types
  • rustycpp 0.1.6/src/preprocessor/pretoken.rs
    2
    #![allow(clippy::too_many_lines)]
    3
    #![allow(clippy::use_self)]
    4
    #![allow(clippy::missing_docs_in_private_items)]
  • seed 0.9.2/src/lib.rs
    51
    #![allow(
    52
        clippy::use_self,
    53
        clippy::single_match_else,
  • serde 1.0.152/src/lib.rs
    123
            type_complexity,
    124
            use_self,
    125
            zero_prefixed_literal,
  • serde_derive 1.0.152/src/lib.rs
    59
        clippy::unused_self,
    60
        clippy::use_self,
    61
        clippy::wildcard_imports
  • serde_derive_state 0.4.10/src/lib.rs
    51
        clippy::unused_self,
    52
        clippy::use_self,
    53
        clippy::wildcard_imports
  • serde_json 1.0.91/src/lib.rs
    354
        clippy::unseparated_literal_suffix,
    355
        clippy::use_self,
    356
        clippy::zero_prefixed_literal,
  • serde_json_experimental 1.0.29-rc1/src/lib.rs
    342
        stutter,
    343
        use_self,
    344
    // not practical
  • serde_json_lenient 0.1.4/src/lib.rs
    355
        clippy::unseparated_literal_suffix,
    356
        clippy::use_self,
    357
        clippy::zero_prefixed_literal,
  • serde_json_v8 0.1.1/src/lib.rs
    313
        single_match_else,
    314
        use_self,
    315
        zero_prefixed_literal,
  • serde_jsonrc 0.1.0/src/lib.rs
    326
        single_match_else,
    327
        use_self,
    328
        zero_prefixed_literal,
  • serde_partiql 1.1.65/src/lib.rs
    347
        clippy::unseparated_literal_suffix,
    348
        clippy::use_self,
    349
        clippy::zero_prefixed_literal,
  • serde_test 1.0.152/src/lib.rs
    162
            use_debug,
    163
            use_self
    164
        )
  • signalo_filters 0.6.0/src/classify/mod.rs
    7
    #![allow(clippy::use_self)]
    8
    #![allow(clippy::wildcard_imports)]
  • smolprng 0.1.5/src/lib.rs
    8
    #![allow(clippy::suboptimal_flops)]
    9
    #![allow(clippy::use_self)]
    10
    #![allow(clippy::must_use_candidate)]
  • soa_derive_internal 0.12.0/src/lib.rs
    3
    #![allow(clippy::needless_return, clippy::redundant_field_names)]
    4
    #![allow(clippy::use_self, clippy::too_many_lines, clippy::missing_panics_doc)]
  • spdx-rs 0.5.2/src/lib.rs
    11
        clippy::missing_const_for_fn,
    12
        clippy::use_self
    13
    )]
  • ssimulacra2 0.3.0/src/lib.rs
    14
    #![allow(clippy::struct_excessive_bools)]
    15
    #![allow(clippy::use_self)]
    16
    #![warn(clippy::clone_on_ref_ptr)]
  • statehub-api 0.0.13/src/v0/error.rs
    6
    #![allow(clippy::use_self)]
  • statehub-location 0.5.2/src/aws.rs
    6
    // derive(juniper::GraphQLEnum) triggers this lint
    7
    #![allow(clippy::use_self)]
  • statehub-location 0.5.2/src/azure.rs
    6
    // derive(juniper::GraphQLEnum) triggers this lint
    7
    #![allow(clippy::use_self)]
  • syn-impersonated 0.1.18/src/lib.rs
    276
        clippy::unseparated_literal_suffix,
    277
        clippy::use_self,
    278
        clippy::used_underscore_binding,
  • syn-next 1.0.0-rc4/src/lib.rs
    271
        clippy::unseparated_literal_suffix,
    272
        clippy::use_self,
    273
        clippy::used_underscore_binding
  • syn-pub-items 0.15.30/src/lib.rs
    259
            unseparated_literal_suffix,
    260
            use_self,
    261
            used_underscore_binding,
  • tendermint-p2p 0.28.0/src/error.rs
    4
    // TODO(soares): Update flex-error accordingly to address this.
    5
    #![allow(clippy::use_self)]
  • test-fuzz-internal 3.0.5/src/serde_format.rs
    1
    #![allow(clippy::use_self)]
  • time-macros-impl 0.1.2/src/lib.rs
    46
        clippy::suspicious_arithmetic_impl,
    47
        clippy::use_self,
    48
        clippy::wildcard_imports,
  • token_server 0.1.15/src/token_server/errors.rs
    3
    // macro expansion, thus suppress it for this entire file
    4
    #![allow(clippy::use_self)]
  • tough 0.12.5/src/schema/key.rs
    1
    #![allow(clippy::use_self)]
  • trust-dns-proto 0.22.0/src/rr/dns_class.rs
    8
    //! class of DNS operations, in general always IN for internet
    9
    #![allow(clippy::use_self)]
  • trust-dns-proto 0.22.0/src/rr/dnssec/algorithm.rs
    9
    //   this issue in rustc would help narrow the statement: https://github.com/rust-lang/rust/issues/62398
    10
    #![allow(deprecated, clippy::use_self)]
  • trust-dns-proto 0.22.0/src/rr/dnssec/digest_type.rs
    8
    #![allow(clippy::use_self)]
  • trust-dns-proto 0.22.0/src/rr/dnssec/nsec3.rs
    18
    //! NSEC3 related record types
    19
    #![allow(clippy::use_self)]
  • trust-dns-proto 0.22.0/src/rr/dnssec/rdata/key.rs
    17
    //! public key record data for signing zone records
    18
    #![allow(clippy::use_self)]
  • trust-dns-proto 0.22.0/src/rr/dnssec/rdata/tsig.rs
    8
    //! TSIG for secret key authentication of transaction
    9
    #![allow(clippy::use_self)]
  • trust-dns-proto 0.22.0/src/rr/rdata/caa.rs
    21
    //! ```
    22
    #![allow(clippy::use_self)]
  • trust-dns-proto 0.22.0/src/rr/rdata/opt.rs
    17
    //! option record for passing protocol options between the client and server
    18
    #![allow(clippy::use_self)]
  • trust-dns-proto 0.22.0/src/rr/rdata/sshfp.rs
    8
    //! SSHFP records for SSH public key fingerprints
    9
    #![allow(clippy::use_self)]
  • trust-dns-proto 0.22.0/src/rr/rdata/svcb.rs
    8
    //! SVCB records, see [draft-ietf-dnsop-svcb-https-03 SVCB and HTTPS RRs for DNS, February 2021](https://datatracker.ietf.org/doc/html/draft-ietf-dnsop-svcb-https-03)
    9
    #![allow(clippy::use_self)]
  • trust-dns-resolver 0.22.0/src/config.rs
    8
    //! Configuration for a resolver
    9
    #![allow(clippy::use_self)]
  • trust-dns-server 0.22.0/src/authority/zone_type.rs
    8
    #![allow(deprecated, clippy::use_self)]
  • ttfb 1.6.0/src/lib.rs
    51
    // allow: required because of derive macro.. :(
    52
    #![allow(clippy::use_self)]
    53
    #![deny(missing_docs)]
  • ttfb 1.6.0/src/main.rs
    41
    // allow: required because of derive macro.. :(
    42
    #![allow(clippy::use_self)]
    43
    // Not needed here. We only need this for the library!
  • tuftool 0.8.2/src/main.rs
    8
        // Identifiers like Command::Create are clearer than Self::Create regardless of context
    9
        clippy::use_self,
    10
        // Caused by interacting with tough::schema::*._extra
  • twitch-tui 2.0.2/src/handlers/app.rs
    1
    #![allow(clippy::use_self)]
  • twitch-tui 2.0.2/src/handlers/config.rs
    1
    #![allow(clippy::use_self)]
  • twitchchat 0.14.8/src/lib.rs
    3
        clippy::redundant_pub_crate,
    4
        clippy::use_self
    5
    )]
  • uu_uniq 0.0.17/src/uniq.rs
    8
    // TODO remove this when https://github.com/rust-lang/rust-clippy/issues/6902 is fixed
    9
    #![allow(clippy::use_self)]
  • uv_patch_packed_simd 0.3.5/src/lib.rs
    222
             // See https://github.com/rust-lang/rust-clippy/issues/3410
    223
             clippy::use_self
    224
    )]
  • video-resize 0.1.1/src/lib.rs
    14
    #![allow(clippy::struct_excessive_bools)]
    15
    #![allow(clippy::use_self)]
    16
    #![warn(clippy::clone_on_ref_ptr)]
  • vru-cancel 0.1.0/src/lib.rs
    9
    // nursery
    10
    #![allow(clippy::use_self)]
  • wambo 0.3.1/src/main.rs
    44
    // required because the produced code by `derive_more` doesn't follow this rule
    45
    #![allow(clippy::use_self)]
    46
    #![deny(missing_docs)]
  • wasmer-types 3.2.0-alpha.1/src/compilation/target.rs
    7
    // See https://github.com/rust-lang/rust-clippy/issues/6902
    8
    #![allow(clippy::use_self)]
  • wolfengine 3.0.2/src/system/algorithm/raft/raft_srv.rs
    7
    #![allow(clippy::similar_names)]
    8
    #![allow(clippy::use_self)]
    9
    #![allow(clippy::wildcard_imports)]
  • wolfengine 3.0.2/src/system/compression/lzma.rs
    1
    #![allow(clippy::expl_impl_clone_on_copy)]
    2
    #![allow(clippy::use_self)]
  • wolfengine 3.0.2/src/system/os/vigem_client.rs
    5
    // #![allow(clippy::ptr_as_ptr)]
    6
    #![allow(clippy::use_self)]
    7
    #![allow(clippy::expl_impl_clone_on_copy)]
  • yapay-sdk-rust 0.3.3/src/lib.rs
    89
        clippy::redundant_closure,
    90
        clippy::use_self,
    91
        clippy::used_underscore_binding
  • yuv2rgb 0.0.2/src/lib.rs
    17
    #![allow(clippy::struct_excessive_bools)]
    18
    #![allow(clippy::use_self)]
    19
    #![warn(clippy::clone_on_ref_ptr)]
  • yuvxyb 0.3.0/src/lib.rs
    14
    #![allow(clippy::struct_excessive_bools)]
    15
    #![allow(clippy::use_self)]
    16
    #![warn(clippy::clone_on_ref_ptr)]
  • zenith-rs 0.1.0/src/bid.rs
    1
    #![allow(clippy::use_self)]
  • zkp-primefield 0.2.0/src/ops.rs
    1
    // Using `Self` makes things less readable here.
    2
    #![allow(clippy::use_self)]
  • zspell 0.3.3/src/lib.rs
    90
    #![warn(clippy::disallowed_types)]
    91
    #![allow(clippy::use_self)] // disabled because strum doesn't enforce it
    92
    #![allow(clippy::match_same_arms)]