summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-04-07 08:56:08 +0800
committer魏曹先生 <1992414357@qq.com>2026-04-07 08:56:08 +0800
commit8092d24fc44f06506d45acd9fa934b009fd07899 (patch)
treefd539ba982239d2d182fe064c0e7d9a53043d4a6
parent7b25db6cb2f2df2c45589e842f153de457191a64 (diff)
Add Debug and Clone traits to Flag struct
-rw-r--r--mingling_core/src/program/flag.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/mingling_core/src/program/flag.rs b/mingling_core/src/program/flag.rs
index 41e8060..ed89c2a 100644
--- a/mingling_core/src/program/flag.rs
+++ b/mingling_core/src/program/flag.rs
@@ -41,6 +41,7 @@ use crate::{Program, ProgramCollect};
/// println!("Flag: {}", arg);
/// }
/// ```
+#[derive(Debug, Clone)]
pub struct Flag {
vec: Vec<&'static str>,
}