this should make clippy happy
All checks were successful
Rust/spacepackets/pipeline/head This commit looks good

This commit is contained in:
2022-08-16 11:12:47 +02:00
parent 3b11af8d4a
commit 35073a45a5
5 changed files with 15 additions and 15 deletions

View File

@ -103,7 +103,7 @@ pub mod zc {
}
}
#[derive(PartialEq, Serialize, Deserialize, Copy, Clone, Debug)]
#[derive(PartialEq, Eq, Serialize, Deserialize, Copy, Clone, Debug)]
pub struct PusTmSecondaryHeader<'slice> {
pus_version: PusVersion,
pub sc_time_ref_status: u8,
@ -197,7 +197,7 @@ impl<'slice> TryFrom<zc::PusTmSecHeader<'slice>> for PusTmSecondaryHeader<'slice
/// [postcard](https://docs.rs/postcard/latest/postcard/).
///
/// There is no spare bytes support yet.
#[derive(PartialEq, Serialize, Deserialize, Debug, Copy, Clone)]
#[derive(PartialEq, Eq, Serialize, Deserialize, Debug, Copy, Clone)]
pub struct PusTm<'slice> {
pub sp_header: SpHeader,
pub sec_header: PusTmSecondaryHeader<'slice>,