diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-04-07 08:56:08 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-04-07 08:56:08 +0800 |
| commit | 8092d24fc44f06506d45acd9fa934b009fd07899 (patch) | |
| tree | fd539ba982239d2d182fe064c0e7d9a53043d4a6 /mingling_core | |
| parent | 7b25db6cb2f2df2c45589e842f153de457191a64 (diff) | |
Add Debug and Clone traits to Flag struct
Diffstat (limited to 'mingling_core')
| -rw-r--r-- | mingling_core/src/program/flag.rs | 1 |
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>, } |
