• autograph 0.1.1/src/device/engine.rs
    742
            'outer: while end <= BLOCKS {
    743
                #[allow(clippy::mut_range_bound)]
    744
                for i in block..end {
  • flattiverse_connector 36.1.1/src/performance_test.rs
    53
            loop {
    54
                #[allow(clippy::mut_range_bound)]
    55
                for _ in result..planned_phase {
    113
            loop {
    114
                #[allow(clippy::mut_range_bound)]
    115
                for _ in result..planned_phase {
  • jotty 0.3.1/src/engine/job.rs
    132
    /// This function can be recursively called until a InnerJobType::Single is reached
    133
    #[allow(clippy::mut_range_bound)]
    134
    #[allow(clippy::boxed_local)]
  • pipeawesome2 0.1.3/src/motion.rs
    287
            // It might already have been read into the buffer
    288
            #[allow(clippy::mut_range_bound)]
    289
            for overflow_pos in start_from..overflow.overflow.len() {
  • rust-sc2 1.1.2/src/unit.rs
    1222
    	/// [`real_air_range`]: Self::real_air_range
    1223
    	#[allow(clippy::mut_range_bound)]
    1224
    	pub fn calculate_weapon_stats(&self, target: CalcTarget) -> (f32, f32) {
  • tiny_id 0.1.5/src/lcm.rs
    8
    /// fancy, just use a loop to keep cutting the number down to size.
    9
    #[allow(clippy::mut_range_bound)]
    10
    fn factorize(mut n: u32) -> Vec<u32> {