From fe9acce4fdd450141f6552fc3b3c3266dbeae999 Mon Sep 17 00:00:00 2001 From: "Simeon H.K. Fitch" Date: Tue, 4 Jun 2024 14:40:53 -0400 Subject: [PATCH] Made `ArgInfo` `Debug` --- src/arginfo.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/arginfo.rs b/src/arginfo.rs index 528ff7b..c052fb9 100644 --- a/src/arginfo.rs +++ b/src/arginfo.rs @@ -26,7 +26,9 @@ impl From for ArgType { } } + /// Metadata about supported arguments. +#[derive(Debug)] pub struct ArgInfo { /// The key used to identify the argument pub key: String,