more clippy fixes

This commit is contained in:
Robin Müller 2023-05-14 16:08:12 +02:00
parent 9b63ea3585
commit 541311d15d
Signed by: muellerr
GPG Key ID: A649FB78196E3849

View File

@ -479,6 +479,8 @@ impl VerificationReporterCore {
)) ))
} }
// Not public, too many arguments is acceptable for this case.
#[allow(clippy::too_many_arguments)]
fn sendable_failure_no_step<'src_data, State: Copy>( fn sendable_failure_no_step<'src_data, State: Copy>(
&mut self, &mut self,
src_data_buf: &'src_data mut [u8], src_data_buf: &'src_data mut [u8],
@ -824,6 +826,8 @@ impl VerificationReporterCore {
Ok(()) Ok(())
} }
// Internal helper function, too many arguments is acceptable for this case.
#[allow(clippy::too_many_arguments)]
fn create_pus_verif_success_tm<'src_data>( fn create_pus_verif_success_tm<'src_data>(
&mut self, &mut self,
src_data_buf: &'src_data mut [u8], src_data_buf: &'src_data mut [u8],
@ -858,6 +862,8 @@ impl VerificationReporterCore {
)) ))
} }
// Internal helper function, too many arguments is acceptable for this case.
#[allow(clippy::too_many_arguments)]
fn create_pus_verif_fail_tm<'src_data>( fn create_pus_verif_fail_tm<'src_data>(
&mut self, &mut self,
src_data_buf: &'src_data mut [u8], src_data_buf: &'src_data mut [u8],