• cala 0.9.0/src/window.rs
    56
        /// Wait for the GPU to request a new frame.
    57
        #[allow(clippy::useless_let_if_seq)] // Clippy doesn't understand
    58
        pub async fn new<P: pix::el::Pixel>(color: P) -> Frame
  • cargo-lipo 3.2.0/src/meta.rs
    16
    impl<'a> Meta<'a> {
    17
        #[allow(clippy::useless_let_if_seq)] // multiple variables are initialized
    18
        pub(crate) fn new(
  • depman 0.8.0/src/parser/parsers/javascriptnpm.rs
    130
        #[allow(clippy::useless_let_if_seq)]
    131
        pub async fn fetch_dep_info(name: &str) -> Result<DepInfo, Box<dyn std::error::Error>> {
  • fyrox-core 0.23.0/src/math/mod.rs
    316
    #[inline]
    317
    #[allow(clippy::useless_let_if_seq)]
    318
    pub fn classify_plane(normal: Vector3<f32>) -> PlaneClass {
  • goblin 0.6.0/src/pe/section_table.rs
    105
        #[allow(clippy::useless_let_if_seq)]
    106
        pub fn set_name_offset(&mut self, mut idx: usize) -> error::Result<()> {
  • h3o 0.3.0/src/index/cell.rs
    457
        // Given that hexagons are way more common than pentagons, worth it.
    458
        #[allow(clippy::useless_let_if_seq)]
    459
        pub fn children_count(self, resolution: Resolution) -> u64 {
  • hoard-rs 1.3.0/src/config.rs
    129
    #[allow(clippy::useless_let_if_seq)]
    130
    fn load_or_build(path: &Path) -> Result<HoardConfig, Error> {
  • hreq 0.8.0/src/tls.rs
    145
        /// [`complete_io`]: https://docs.rs/rustls/latest/rustls/trait.Session.html#method.complete_io
    146
        #[allow(clippy::useless_let_if_seq)]
    147
        fn poll_tls(&mut self, cx: &mut Context, poll_for_read: bool) -> Poll<io::Result<()>> {
  • iced-x86 1.18.0/src/decoder.rs
    1427
    	// SAFETY: `instruction` must be non-null, writable and aligned (`ptr::write()`) and not aliased
    1428
    	#[allow(clippy::useless_let_if_seq)]
    1429
    	unsafe fn decode_out_ptr(&mut self, instruction: *mut Instruction) {
  • iced-x86 1.18.0/src/formatter/fast.rs
    817
    	#[allow(clippy::let_unit_value)]
    818
    	#[allow(clippy::useless_let_if_seq)]
    819
    	pub fn format(&mut self, instruction: &Instruction, output: &mut String) {
  • koibumi-core 0.0.8/src/content/broadcast.rs
    170
    #[allow(clippy::useless_let_if_seq)]
    171
    impl ReadFrom for Broadcast {
  • koibumi-core 0.0.8/src/content/msg.rs
    194
    #[allow(clippy::useless_let_if_seq)]
    195
    impl ReadFrom for Msg {
  • leetcode-cli 0.3.12/src/cache/mod.rs
    141
        /// Get question
    142
        #[allow(clippy::useless_let_if_seq)]
    143
        pub async fn get_question(&self, rfid: i32) -> Result<Question, Error> {
  • nydus-storage 0.6.0/src/backend/registry.rs
    698
    impl Registry {
    699
        #[allow(clippy::useless_let_if_seq)]
    700
        pub fn new(config: &RegistryConfig, id: Option<&str>) -> Result<Registry> {
  • rg3d-core 0.19.0/src/math/mod.rs
    267
    #[inline]
    268
    #[allow(clippy::useless_let_if_seq)]
    269
    pub fn classify_plane(normal: Vector3<f32>) -> PlaneClass {
  • ritual 0.0.0/src/processor.rs
    199
    #[allow(clippy::useless_let_if_seq)]
    200
    pub fn process(workspace: &mut Workspace, config: &Config, step_names: &[String]) -> Result<()> {
  • roughenough 1.2.0-draft5/src/config/mod.rs
    144
    ///
    145
    #[allow(clippy::useless_let_if_seq)]
    146
    pub fn is_valid_config(cfg: &dyn ServerConfig) -> bool {
  • rustdoc-stripper 0.1.18/src/regenerate.rs
    86
    #[allow(clippy::useless_let_if_seq)]
    87
    fn get_corresponding_type(
  • rustdoc-stripper 0.1.18/src/strip.rs
    330
    #[allow(clippy::useless_let_if_seq)]
    331
    fn build_event_inner(
  • serpent 0.5.1/src/lib.rs
    100
    #[allow(clippy::useless_let_if_seq)]
    101
    fn round_inverse_bitslice(i: usize, b_i_next: Block128, k: Subkeys, b_output: &mut Block128) {
  • up-rs 0.13.3/src/tasks/git/status.rs
    153
    /// shows submodule status information.
    154
    #[allow(clippy::too_many_lines, clippy::useless_let_if_seq)]
    155
    fn status_short(repo: &Repository, statuses: &git2::Statuses) -> String {
  • visual-odometry-rs 0.1.0/src/math/so3.rs
    59
    /// Goes from so3 parameterization to SO3 element (rotation).
    60
    #[allow(clippy::useless_let_if_seq)]
    61
    pub fn exp(w: Vec3) -> UnitQuaternion<Float> {
  • vivisect 0.1.11/src/pe/section_table.rs
    108
        #[allow(clippy::useless_let_if_seq)]
    109
        pub fn set_name_offset(&mut self, mut idx: usize) -> error::Result<()> {
  • xlang_struct 0.1.0/src/lib.rs
    1195
    impl std::fmt::Display for AccessClass {
    1196
        #[allow(clippy::useless_let_if_seq)]
    1197
        fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
  • yuvxyb 0.3.0/src/yuv_rgb.rs
    177
    #[allow(clippy::useless_let_if_seq)]
    178
    fn get_scale_offset<const TO_FLOAT: bool>(
  • almel 1.4.7/src/prompt.rs
    30
    ) {
    31
        #![allow(clippy::useless_let_if_seq)]
    32
        let style;
  • amadeus-derive 0.4.3/src/lib.rs
    24
    	clippy::too_many_lines,
    25
    	clippy::useless_let_if_seq
    26
    )]
  • async-graphql 5.0.5/src/lib.rs
    175
    #![allow(clippy::cognitive_complexity)]
    176
    #![allow(clippy::useless_let_if_seq)]
    177
    #![warn(missing_docs)]
  • cbor-diag 0.1.11/src/parse/binary.rs
    1
    #![allow(clippy::useless_let_if_seq)]
    2
    use std::{convert::TryFrom, str};
  • cbor-diag 0.1.11/src/parse/diag.rs
    1
    #![allow(clippy::needless_pass_by_value, clippy::useless_let_if_seq)]
  • cretonne-codegen 0.13.2/src/lib.rs
    31
                    redundant_field_names,
    32
                    useless_let_if_seq,
    33
                    len_without_is_empty))]
  • cxx 1.0.88/src/lib.rs
    395
        clippy::transmute_undefined_repr, // clippy bug: https://github.com/rust-lang/rust-clippy/issues/8417
    396
        clippy::useless_let_if_seq,
    397
        clippy::wrong_self_convention
  • cxxbridge-macro 1.0.88/src/lib.rs
    26
        clippy::toplevel_ref_arg,
    27
        clippy::useless_let_if_seq,
    28
        // clippy bug: https://github.com/rust-lang/rust-clippy/issues/6983
  • derive_builder_core 0.12.0/src/setter.rs
    1
    #![allow(clippy::useless_let_if_seq)]
    2
    use std::borrow::Cow;
  • derive_builder_core_fork_arti 0.11.2/src/setter.rs
    1
    #![allow(clippy::useless_let_if_seq)]
    2
    use std::borrow::Cow;
  • directx_math 0.2.2/src/lib.rs
    81
    #![allow(clippy::needless_range_loop)]
    82
    #![allow(clippy::useless_let_if_seq)]
    83
    #![allow(clippy::needless_bool)]
  • dnssector 0.2.12/src/lib.rs
    13
    #![allow(clippy::unreadable_literal)]
    14
    #![allow(clippy::useless_let_if_seq)]
    15
    #![allow(clippy::wrong_self_convention)]
  • flattiverse_connector 36.1.1/src/lib.rs
    4
    #![allow(clippy::new_ret_no_self)]
    5
    #![allow(clippy::useless_let_if_seq)]
  • iced-x86 1.18.0/src/decoder/handlers/evex.rs
    4
    #![allow(clippy::useless_let_if_seq)]
  • iced-x86 1.18.0/src/decoder/handlers/legacy.rs
    4
    #![allow(clippy::never_loop)]
    5
    #![allow(clippy::useless_let_if_seq)]
  • iced-x86 1.18.0/src/decoder/handlers/vex.rs
    4
    #![allow(clippy::useless_let_if_seq)]
  • imageproc 0.23.0/src/lib.rs
    15
        clippy::needless_range_loop,
    16
        clippy::useless_let_if_seq,
    17
        clippy::match_wild_err_arm,
  • imageproc-patched 0.22.0-unofficial.1-foresterre/src/lib.rs
    15
        clippy::needless_range_loop,
    16
        clippy::useless_let_if_seq,
    17
        clippy::match_wild_err_arm,
  • kiro-editor 0.4.3/src/lib.rs
    7
    #![allow(clippy::match_overlapping_arm)]
    8
    #![allow(clippy::useless_let_if_seq)]
    9
    #![allow(clippy::cognitive_complexity)]
  • win_etw_logger 0.1.2/src/lib.rs
    6
    #![allow(clippy::unreadable_literal)]
    7
    #![allow(clippy::useless_let_if_seq)]