• bacon 2.5.0/src/cli.rs
    93
        let mut result = Ok(());
    94
        #[allow(clippy::while_let_loop)]
    95
        loop {
  • baking 2.0.1/src/cli.rs
    91
        let mut result = Ok(());
    92
        #[allow(clippy::while_let_loop)]
    93
        loop {
  • click 0.6.2/src/command_processor.rs
    91
        let mut alias_stack = vec![expa];
    92
        #[allow(clippy::while_let_loop)] // needed due to borrow restrictions
    93
        loop {
  • combine 4.6.6/src/stream/mod.rs
    508
    #[allow(clippy::while_let_loop)]
    509
    fn str_uncons_while<'a, F>(slice: &mut &'a str, mut chars: Chars<'a>, mut f: F) -> &'a str
  • domain 0.7.1/src/rdata/rfc4034.rs
    134
        /// Returns the key tag for this DNSKEY data.
    135
        #[allow(clippy::while_let_loop)] // I find this clearer with a loop.
    136
        pub fn key_tag(&self) -> u16
  • drone-stm32 0.8.3/src/thr/request.rs
    21
    impl<T: ThrTrigger, U: IntToken<T>> ThrRequest<T> for U {
    22
      #[cfg_attr(feature = "cargo-clippy", allow(while_let_loop))]
    23
      fn exec<F>(&self, f: F)
  • erg_parser 0.6.3/parse.rs
    2342
            };
    2343
            #[allow(clippy::while_let_loop)]
    2344
            loop {
  • fyrox-ui 0.20.0/src/file_browser.rs
    952
            Ok(mut watcher) => {
    953
                #[allow(clippy::while_let_loop)]
    954
                let watcher_conversion_thread = std::thread::spawn(move || loop {
  • graphannis 2.4.2/src/annis/db/exec/indexjoin.rs
    170
                                    // skip all RHS candidates that have the same node ID
    171
                                    #[allow(clippy::while_let_loop)]
    172
                                    loop {
  • graphannis 2.4.2/src/annis/db/exec/parallel/indexjoin.rs
    170
                                                // skip all RHS candidates that have the same node ID
    171
                                                #[allow(clippy::while_let_loop)]
    172
                                                loop {
  • guido_rbx_xml 0.12.5/src/types/color_sequence.rs
    50
            // loop instead of while-let.
    51
            #[allow(clippy::while_let_loop)]
    52
            loop {
  • guido_rbx_xml 0.12.5/src/types/number_sequence.rs
    43
            // loop instead of while-let.
    44
            #[allow(clippy::while_let_loop)]
    45
            loop {
  • ibc-relayer 0.21.0/src/event/monitor.rs
    327
        /// Event monitor loop
    328
        #[allow(clippy::while_let_loop)]
    329
        #[instrument(
  • impral 0.1.6/src/lexer/tokenizer.rs
    366
        #[allow(clippy::while_let_loop)]
    367
        loop {
  • magic-wormhole 0.6.0/src/forwarding.rs
    395
                }
    396
                #[allow(clippy::while_let_loop)]
    397
                loop {
    841
                }
    842
                #[allow(clippy::while_let_loop)]
    843
                loop {
  • ntex-h2 0.2.1/src/connection.rs
    711
        #[allow(clippy::while_let_loop)]
    712
        loop {
  • printpdf 0.5.3/src/extgstate.rs
    1514
        #[cfg_attr(feature = "cargo-clippy", allow(never_loop))]
    1515
        #[cfg_attr(feature = "cargo-clippy", allow(while_let_loop))]
    1516
        #[cfg_attr(feature = "cargo-clippy", allow(needless_return))]
  • rbx_xml 0.12.4/src/types/color_sequence.rs
    50
            // loop instead of while-let.
    51
            #[allow(clippy::while_let_loop)]
    52
            loop {
  • rbx_xml 0.12.4/src/types/number_sequence.rs
    43
            // loop instead of while-let.
    44
            #[allow(clippy::while_let_loop)]
    45
            loop {
  • rg3d-ui 0.15.0/src/file_browser.rs
    946
            Ok(mut watcher) => {
    947
                #[allow(clippy::while_let_loop)]
    948
                let watcher_conversion_thread = std::thread::spawn(move || loop {
  • rmx 0.1.6/src/traverse.rs
    109
    #[allow(clippy::unnecessary_wraps)]
    110
    #[allow(clippy::while_let_loop)]
    111
    pub fn walk(path: &OsStr) -> Result<()> {
  • rustop 1.1.2/src/rustop.rs
    1019
                // argument or another option.
    1020
                #[allow(clippy::while_let_loop)]
    1021
                loop {
  • signal-handler 0.1.0/src/handler/tokio.rs
    56
                    #[allow(clippy::while_let_loop)]
    57
                    loop {
  • toml-parse 0.2.11/src/struc/mod.rs
    392
        /// Merges `Value::Comment` with `Value` below it.
    393
        #[allow(clippy::while_let_loop)]
    394
        pub fn combine_comments(&mut self) {
    548
        /// Merges `Value::Comment` with `Value` below it.
    549
        #[allow(clippy::while_let_loop)]
    550
        pub fn combine_comments(&mut self) {
  • unnest 0.3.1/src/lib.rs
    138
        #[test]
    139
        #[allow(clippy::while_let_loop)]
    140
        fn some_or_break() {
    172
        #[test]
    173
        #[allow(clippy::while_let_loop)]
    174
        fn ok_or_break() {
  • wlambda 0.8.1/src/vval.rs
    3892
                            let mut ret = VVal::None;
    3893
                            #[allow(clippy::while_let_loop)]
    3894
                            loop {
  • aptos-scratchpad 0.2.7/src/sparse_merkle/mod.rs
    69
    // See https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=795cd4f459f1d4a0005a99650726834b
    70
    #![allow(clippy::while_let_loop)]
  • binfarce 0.2.1/src/lib.rs
    10
    #![allow(clippy::single_match)]
    11
    #![allow(clippy::while_let_loop)]
    12
    #![allow(clippy::single_char_pattern)]
  • cretonne-codegen 0.13.2/src/lib.rs
    10
    // Produces only a false positive:
    11
                    while_let_loop,
    12
    // Produces many false positives, but did produce some valid lints, now fixed:
  • hippotat 1.1.7/client/client.rs
    8
    #![allow(clippy::useless_format)]
    9
    #![allow(clippy::while_let_loop)]
  • hippotat 1.1.7/server/server.rs
    8
    #![allow(clippy::useless_format)]
    9
    #![allow(clippy::while_let_loop)]
  • image 0.24.5/src/codecs/gif.rs
    26
    //! ```
    27
    #![allow(clippy::while_let_loop)]
  • otter-daemon 1.2.1/sse.rs
    5
    #![allow(clippy::while_let_loop)]
    6
    #![allow(clippy::blocks_in_if_conditions)]
  • ux-dx 0.2.1/src/lib.rs
    53
        clippy::map_entry,
    54
        clippy::while_let_loop,
    55
        clippy::redundant_clone,