• actori-web 2.0.0/src/middleware/defaultheaders.rs
    66
        {
    67
            #[allow(clippy::match_wild_err_arm)]
    68
            match HeaderName::try_from(key) {
  • arranged 0.1.2/src/ranged.rs
    48
            TRange: ~const IRange + ~const IRangeFrom + ~const IRangeTo, {
    49
            #[allow(clippy::match_wild_err_arm)]
    50
            // TODO: Replace with `const` `expect()` once it exists
  • arrayfire 3.8.0/src/core/error.rs
    75
    /// ```
    76
    #[allow(clippy::match_wild_err_arm)]
    77
    pub fn register_error_handler(cb_value: Callback) {
    87
    #[allow(non_snake_case)]
    88
    #[allow(clippy::match_wild_err_arm)]
    89
    pub fn HANDLE_ERROR(error_code: AfError) {
  • arrayfire 3.8.0/src/graphics/mod.rs
    214
        /// Window Object
    215
        #[allow(clippy::match_wild_err_arm)]
    216
        pub fn new(width: i32, height: i32, title: String) -> Self {
  • arrayfire 3.8.0/src/image/mod.rs
    303
    /// An Array with pixel values loaded from the image
    304
    #[allow(clippy::match_wild_err_arm)]
    305
    pub fn load_image<T>(filename: String, is_color: bool) -> Array<T>
    344
    /// An Array with pixel values loaded from the image
    345
    #[allow(clippy::match_wild_err_arm)]
    346
    pub fn load_image_native<T>(filename: String) -> Array<T>
    373
    /// - `input` is the Array to be stored into the image file
    374
    #[allow(clippy::match_wild_err_arm)]
    375
    pub fn save_image<T>(filename: String, input: &Array<T>)
    404
    /// - `input` is the Array to be saved. Should be U8 for saving 8-bit image, U16 for 16-bit image, and F32 for 32-bit image.
    405
    #[allow(clippy::match_wild_err_arm)]
    406
    pub fn save_image_native<T>(filename: String, input: &Array<T>)
  • askama_shared 0.12.2/src/lib.rs
    260
    #[allow(clippy::match_wild_err_arm)]
    261
    pub fn get_template_source(tpl_path: &Path) -> std::result::Result<String, CompileError> {
  • broker-tokio 0.2.16/src/task/queue.rs
    163
            // match all errors here...
    164
            #[allow(clippy::match_wild_err_arm)]
    165
            let mut lock = match self.remote_queue.lock() {
    264
            loop {
    265
                #[allow(clippy::match_wild_err_arm)]
    266
                let mut lock = match self.remote_queue.lock() {
  • conquer-once 0.3.2/src/cell.rs
    217
        fn take_inner(&mut self, ignore_panic: bool) -> Option<T> {
    218
            #[allow(clippy::match_wild_err_arm)]
    219
            match self.state.load(Ordering::Relaxed) {
  • cretonne-codegen 0.13.2/src/cursor.rs
    753
            // XXX Is there a way to describe this error to the user?
    754
            #[cfg_attr(feature = "cargo-clippy", allow(match_wild_err_arm))]
    755
            match self.isa
  • duckdb 0.6.1/src/statement.rs
    579
            // second row should be Err
    580
            #[allow(clippy::match_wild_err_arm)]
    581
            match rows.next().unwrap() {
  • endless-web 2.0.0/src/middleware/defaultheaders.rs
    66
        {
    67
            #[allow(clippy::match_wild_err_arm)]
    68
            match HeaderName::try_from(key) {
  • eternal 0.3.2/src/web/middleware/defaultheaders.rs
    66
        {
    67
            #[allow(clippy::match_wild_err_arm)]
    68
            match HeaderName::try_from(key) {
  • glib 0.16.7/src/source_futures.rs
    84
            };
    85
            #[allow(clippy::match_wild_err_arm)]
    86
            match res {
    295
            };
    296
            #[allow(clippy::match_wild_err_arm)]
    297
            match res {
  • libafl 0.9.0/src/bolts/launcher.rs
    227
        #[cfg(all(feature = "std", any(windows, not(feature = "fork"))))]
    228
        #[allow(unused_mut, clippy::match_wild_err_arm)]
    229
        pub fn launch(&mut self) -> Result<(), Error> {
  • lol_html 0.3.2/src/selectors_vm/compiler.rs
    459
                    |input, should_match, state, local_name, attr_matcher| {
    460
                        #[allow(clippy::match_wild_err_arm)]
    461
                        let multi_step_res = match instr.try_exec_without_attrs(state, &local_name) {
  • lorawan-device 0.8.0/src/state_machines/session.rs
    145
    impl Idle {
    146
        #[allow(clippy::match_wild_err_arm)]
    147
        fn prepare_buffer<R: radio::PhyRxTx + Timings, C: CryptoFactory + Default, const N: usize>(
  • mycelium_core 0.1.1/src/lib.rs
    437
        #[allow(clippy::match_wild_err_arm)]
    438
        fn with_config(config: Config) -> std::io::Result<Db> {
  • ndarray 0.15.6/src/impl_constructors.rs
    13
    #![allow(clippy::match_wild_err_arm)]
    14
    #[cfg(feature = "std")]
    258
    #[cfg(not(debug_assertions))]
    259
    #[allow(clippy::match_wild_err_arm)]
    260
    macro_rules! size_of_shape_checked_unwrap {
  • ntex 0.6.3/src/web/middleware/defaultheaders.rs
    63
        {
    64
            #[allow(clippy::match_wild_err_arm)]
    65
            match HeaderName::try_from(key) {
  • ntex 0.6.3/src/web/test.rs
    1135
                #[allow(clippy::match_wild_err_arm)]
    1136
                match res {
  • requiem-web 2.0.0/src/middleware/defaultheaders.rs
    66
        {
    67
            #[allow(clippy::match_wild_err_arm)]
    68
            match HeaderName::try_from(key) {
  • rtop 0.1.4/src/rtop/app.rs
    135
                    if cfg!(target_os = "macos") {
    136
                        #[allow(clippy::match_wild_err_arm)]
    137
                        match core_name.parse::<u32>() {
    142
                        let (_,s) = core_name.split_at_mut(3);
    143
                        #[allow(clippy::match_wild_err_arm)]
    144
                        match s.parse::<u32>() {
  • rusqlite 0.28.0/src/statement.rs
    1173
            // second row should be Err
    1174
            #[allow(clippy::match_wild_err_arm)]
    1175
            match rows.next().unwrap() {
    1207
            // second row should be Err
    1208
            #[allow(clippy::match_wild_err_arm)]
    1209
            match rows.next().unwrap() {
  • rusqlite-ic 0.28.1/src/statement.rs
    1173
            // second row should be Err
    1174
            #[allow(clippy::match_wild_err_arm)]
    1175
            match rows.next().unwrap() {
    1207
            // second row should be Err
    1208
            #[allow(clippy::match_wild_err_arm)]
    1209
            match rows.next().unwrap() {
  • rusqlite-le 0.24.2/src/statement.rs
    1101
            // second row should be Err
    1102
            #[allow(clippy::match_wild_err_arm)]
    1103
            match rows.next().unwrap() {
    1135
            // second row should be Err
    1136
            #[allow(clippy::match_wild_err_arm)]
    1137
            match rows.next().unwrap() {
  • safe_core 0.43.1/src/immutable_data.rs
    359
        #[allow(clippy::match_wild_err_arm)]
    360
        async fn gen_data_then_map_create_and_retrieve(
  • scrappy 0.0.2/src/middleware/defaultheaders.rs
    66
        {
    67
            #[allow(clippy::match_wild_err_arm)]
    68
            match HeaderName::try_from(key) {
  • solana 0.18.0-pre1/src/banking_stage.rs
    423
        #[allow(clippy::match_wild_err_arm)]
    424
        fn record_transactions(
  • solana-core 1.14.13/src/banking_stage.rs
    1323
        #[allow(clippy::match_wild_err_arm)]
    1324
        fn record_transactions(
  • tinyvec 1.6.0/src/arrayvec.rs
    486
      #[must_use]
    487
      #[allow(clippy::match_wild_err_arm)]
    488
      pub fn from_array_len(data: A, len: usize) -> Self {
  • tinyvec 1.6.0/src/slicevec.rs
    258
      #[must_use]
    259
      #[allow(clippy::match_wild_err_arm)]
    260
      pub fn from_slice_len(data: &'s mut [T], len: usize) -> Self {
  • tinyvec 1.6.0/src/tinyvec.rs
    776
      #[must_use]
    777
      #[allow(clippy::match_wild_err_arm)]
    778
      pub fn from_array_len(data: A, len: usize) -> Self {
  • wamp_async 0.3.1/src/client.rs
    597
            let new_status = self.core_res.recv().now_or_never();
    598
            #[allow(clippy::match_wild_err_arm)]
    599
            match new_status {
  • warpgrapher 0.11.2/src/engine/config.rs
    2092
        #[allow(clippy::match_wild_err_arm)]
    2093
        #[test]
    2194
        #[allow(clippy::match_wild_err_arm)]
    2195
        #[test]
    2226
        #[allow(clippy::match_wild_err_arm)]
    2227
        #[test]
    2244
        #[allow(clippy::match_wild_err_arm)]
    2245
        #[test]
    2262
        #[allow(clippy::match_wild_err_arm)]
    2263
        #[test]
  • fathom_web3 1.1.0/src/lib.rs
    7
        clippy::let_unit_value,
    8
        clippy::match_wild_err_arm
    9
    )]
  • ic-web3 0.1.7/src/lib.rs
    7
        clippy::let_unit_value,
    8
        clippy::match_wild_err_arm
    9
    )]
  • imageproc 0.23.0/src/lib.rs
    16
        clippy::useless_let_if_seq,
    17
        clippy::match_wild_err_arm,
    18
        clippy::needless_doctest_main,
  • imageproc-patched 0.22.0-unofficial.1-foresterre/src/lib.rs
    16
        clippy::useless_let_if_seq,
    17
        clippy::match_wild_err_arm,
    18
        clippy::needless_doctest_main,
  • juniper_codegen 0.15.9/src/derive_input_object.rs
    1
    #![allow(clippy::match_wild_err_arm)]
    2
    use crate::{
  • ord_subset 3.1.1/tests/lib.rs
    1
    #![cfg_attr(feature = "cargo-clippy", allow(float_cmp, match_wild_err_arm))]
    2
    extern crate ord_subset;
  • orphan-crippler 0.1.5/src/lib.rs
    35
    #![warn(clippy::pedantic)]
    36
    #![allow(clippy::match_wild_err_arm)]
    37
    #![allow(clippy::single_match_else)]
  • pink-web3 0.19.4/src/lib.rs
    7
        clippy::let_unit_value,
    8
        clippy::match_wild_err_arm
    9
    )]
  • valico 3.6.1/tests/dsl/helpers.rs
    1
    #![allow(clippy::match_wild_err_arm)]
  • web3 0.18.0/src/lib.rs
    7
        clippy::let_unit_value,
    8
        clippy::match_wild_err_arm
    9
    )]
  • web3_etz 0.8.0/src/lib.rs
    7
        clippy::let_unit_value,
    8
        clippy::match_wild_err_arm
    9
    )]
  • web3_fe 0.1.0/src/lib.rs
    7
        clippy::let_unit_value,
    8
        clippy::match_wild_err_arm
    9
    )]