39 |
value,
|
40 |
#[allow(clippy::match_overlapping_arm)]
|
41 |
match value {
|
100 |
*self.last_update.lock() = Instant::now();
|
101 |
#[allow(clippy::match_overlapping_arm)]
|
102 |
let timer = match status.as_u16() {
|
216 |
fn from(code: i32) -> Self {
|
217 |
#[allow(clippy::match_overlapping_arm)]
|
218 |
match code {
|
736 |
for b in bytes {
|
737 |
#[allow(clippy::match_overlapping_arm)]
|
738 |
match *b {
|
929 |
for b in bytes {
|
930 |
#[allow(clippy::match_overlapping_arm)]
|
931 |
match *b {
|
17 |
pub fn read_byte(&self, address: u16) -> u8 {
|
18 |
#[allow(clippy::match_overlapping_arm)]
|
19 |
match address {
|
257 |
pub fn decode(&mut self, opcode: u8) -> Instruction {
|
258 |
#[allow(clippy::match_overlapping_arm)]
|
259 |
match opcode {
|
19 |
for (i, b) in rec.iter().enumerate() {
|
20 |
#[allow(clippy::match_overlapping_arm)]
|
21 |
match *b {
|
622 |
// Note that the ranges overlap and the order matters.
|
623 |
#[allow(clippy::match_overlapping_arm)]
|
624 |
match n {
|
163 |
pub fn from_varint(value: VarInt) -> Option<Self> {
|
164 |
#[allow(clippy::match_overlapping_arm)]
|
165 |
match *value {
|
256 |
// actual results match
|
257 |
#[allow(clippy::match_overlapping_arm)]
|
258 |
let expected = match v {
|
876 |
for b in bytes {
|
877 |
#[allow(clippy::match_overlapping_arm)]
|
878 |
match *b {
|
340 |
impl From<u16> for SpanStatus {
|
341 |
#[allow(clippy::match_overlapping_arm)]
|
342 |
fn from(status: u16) -> Self {
|
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 {
|
153 |
#[allow(clippy::match_overlapping_arm)]
|
154 |
pub(crate) fn byte_string(bytes: &[u8]) -> Self {
|
6 |
#![allow(clippy::unused_io_amount)]
|
7 |
#![allow(clippy::match_overlapping_arm)]
|
8 |
#![allow(clippy::useless_let_if_seq)]
|