• cbor-diag 0.1.11/src/encode/bytes.rs
    39
                    value,
    40
                    #[allow(clippy::match_overlapping_arm)]
    41
                    match value {
  • conjure-runtime 4.2.0/src/host_metrics.rs
    100
            *self.last_update.lock() = Instant::now();
    101
            #[allow(clippy::match_overlapping_arm)]
    102
            let timer = match status.as_u16() {
  • ethrpc 0.0.2/src/jsonrpc.rs
    216
        fn from(code: i32) -> Self {
    217
            #[allow(clippy::match_overlapping_arm)]
    218
            match code {
  • proc-macro0 1.0.40-dev.1/src/fallback.rs
    736
            for b in bytes {
    737
                #[allow(clippy::match_overlapping_arm)]
    738
                match *b {
  • proc-macro2 1.0.50/src/fallback.rs
    929
            for b in bytes {
    930
                #[allow(clippy::match_overlapping_arm)]
    931
                match *b {
  • rgb-emu 0.1.1/src/bus.rs
    17
        pub fn read_byte(&self, address: u16) -> u8 {
    18
            #[allow(clippy::match_overlapping_arm)]
    19
            match address {
  • rgb-emu 0.1.1/src/cpu.rs
    257
        pub fn decode(&mut self, opcode: u8) -> Instruction {
    258
            #[allow(clippy::match_overlapping_arm)]
    259
            match opcode {
  • rosbag 0.6.1/src/record_types/utils.rs
    19
        for (i, b) in rec.iter().enumerate() {
    20
            #[allow(clippy::match_overlapping_arm)]
    21
            match *b {
  • rudano 0.1.1/src/de.rs
    622
                // Note that the ranges overlap and the order matters.
    623
                #[allow(clippy::match_overlapping_arm)]
    624
                match n {
  • s2n-quic-core 0.16.0/src/packet/number/packet_number_len.rs
    163
        pub fn from_varint(value: VarInt) -> Option<Self> {
    164
            #[allow(clippy::match_overlapping_arm)]
    165
            match *value {
  • s2n-quic-core 0.16.0/src/varint/tests.rs
    256
                // actual results match
    257
                #[allow(clippy::match_overlapping_arm)]
    258
                let expected = match v {
  • safe-proc-macro2 1.0.36/src/fallback.rs
    876
            for b in bytes {
    877
                #[allow(clippy::match_overlapping_arm)]
    878
                match *b {
  • sentry-cloudflare 0.1.2/src/protocol.rs
    340
    impl From<u16> for SpanStatus {
    341
        #[allow(clippy::match_overlapping_arm)]
    342
        fn from(status: u16) -> Self {
  • sise-atom 0.5.0/src/lib.rs
    205
        for &chr in string {
    206
            #[allow(clippy::match_overlapping_arm)]
    207
            match chr {
    229
        for &chr in string.as_bytes() {
    230
            #[allow(clippy::match_overlapping_arm)]
    231
            match chr {
  • syn-serde 0.2.3/src/token_stream.rs
    153
        #[allow(clippy::match_overlapping_arm)]
    154
        pub(crate) fn byte_string(bytes: &[u8]) -> Self {
  • kiro-editor 0.4.3/src/lib.rs
    6
    #![allow(clippy::unused_io_amount)]
    7
    #![allow(clippy::match_overlapping_arm)]
    8
    #![allow(clippy::useless_let_if_seq)]