derive Clone for OutputFormat in cli-output (#32138)

This commit is contained in:
hana 2023-06-14 15:22:23 -07:00 committed by GitHub
parent 26be1a3a0c
commit 11f331764e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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,