derive Clone for OutputFormat in cli-output (#32138)
This commit is contained in:
parent
26be1a3a0c
commit
11f331764e
|
@ -59,7 +59,7 @@ static CHECK_MARK: Emoji = Emoji("✅ ", "");
|
|||
static CROSS_MARK: Emoji = Emoji("❌ ", "");
|
||||
static WARNING: Emoji = Emoji("⚠️", "!");
|
||||
|
||||
#[derive(PartialEq, Eq, Debug)]
|
||||
#[derive(Clone, Debug, PartialEq, Eq)]
|
||||
pub enum OutputFormat {
|
||||
Display,
|
||||
Json,
|
||||
|
|
Loading…
Reference in New Issue