From 78dc8c704cfa071aa02b6ab729cdb8fb7d5014d9 Mon Sep 17 00:00:00 2001 From: Alek Ratzloff Date: Wed, 14 Aug 2019 12:36:24 -0400 Subject: [PATCH] Add Debug derive to ObjectStyle (#192) --- crossterm_style/src/objectstyle.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crossterm_style/src/objectstyle.rs b/crossterm_style/src/objectstyle.rs index bd63ee0..29acb91 100644 --- a/crossterm_style/src/objectstyle.rs +++ b/crossterm_style/src/objectstyle.rs @@ -7,7 +7,7 @@ use std::fmt::Display; use super::Attribute; /// Struct that contains the style properties that can be applied to a displayable object. -#[derive(Clone)] +#[derive(Debug, Clone)] pub struct ObjectStyle { pub fg_color: Option, pub bg_color: Option,