1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
use clap::Parser;

pub mod replay;

#[derive(Debug, Parser)]
pub enum RustcoalescenceArgs {
    Simulate(CommandArgs),
    Replay(CommandArgs),
}

#[derive(Debug, Parser)]
pub struct CommandArgs {
    #[arg(allow_hyphen_values = true)]
    args: Vec<String>,
}

impl CommandArgs {
    pub fn into_config_string(self) -> String {
        let config = self.args.join(" ");
        std::mem::drop(self);
        config
    }
}