cargo clippy

This commit is contained in:
2025-11-15 07:54:29 +00:00
parent 01743c3c75
commit 0b68d803e8
6 changed files with 9 additions and 12 deletions

View File

@@ -15,7 +15,9 @@ use crate::action_raw::RawAction;
#[derive(Clone, Copy, Debug, Deserialize_repr)]
#[repr(u8)]
#[derive(Eq, PartialEq)]
#[derive(Default)]
pub enum ActionType {
#[default]
Unknown = 0,
CopyPath = 100,
FileTransfer = 101,
@@ -32,11 +34,6 @@ pub enum ActionType {
FetchTree = 112,
}
impl Default for ActionType {
fn default() -> Self {
Self::Unknown
}
}
// ---
// --- BuildStepId