diff options
Diffstat (limited to 'src/term/color.rs')
-rw-r--r-- | src/term/color.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/term/color.rs b/src/term/color.rs index 0284bee9..d25f2f3d 100644 --- a/src/term/color.rs +++ b/src/term/color.rs @@ -13,6 +13,7 @@ pub const COUNT: usize = 268; /// the configured foreground color, item 257 is the configured background /// color, item 258 is the cursor foreground color, item 259 is the cursor /// background color. Following that are 8 positions for dim colors. +#[derive(Copy, Clone)] pub struct List([Rgb; COUNT]); impl<'a> From<&'a Colors> for List { |