From e42302988abb6dcc47b13ea63c1dc45ed6725491 Mon Sep 17 00:00:00 2001 From: Vladan Popovic Date: Sat, 26 Nov 2022 18:58:30 +0100 Subject: [PATCH] derive Debug for commands --- src/command.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/command.rs b/src/command.rs index cfebef1..ce95655 100644 --- a/src/command.rs +++ b/src/command.rs @@ -1,5 +1,6 @@ use std::time::Duration; +#[derive(Debug)] pub struct Command { pub text: String, pub timeout: Duration,