From 1b770e34a130d7dcec11d1f1dc5173cecb31c749 Mon Sep 17 00:00:00 2001 From: Miguel Ojeda Date: Mon, 12 Apr 2021 10:10:50 +0200 Subject: [PATCH] Remove the only #[derive(Debug)] instance we have Signed-off-by: Miguel Ojeda --- rust/module.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/module.rs b/rust/module.rs index fd20c23aa69d8a..adea4422054be7 100644 --- a/rust/module.rs +++ b/rust/module.rs @@ -65,7 +65,7 @@ fn expect_byte_string(it: &mut token_stream::IntoIter) -> String { try_byte_string(it).expect("Expected byte string") } -#[derive(Debug, Clone, PartialEq)] +#[derive(Clone, PartialEq)] enum ParamType { Ident(String), Array { vals: String, max_length: usize },