aboutsummaryrefslogtreecommitdiffstats
path: root/src/row.rs
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2019-11-05 01:33:53 -0500
committerJesse Luehrs <doy@tozt.net>2019-11-05 01:33:53 -0500
commitf7de5f52ff1ae465f09a648cffb81192b6aecf45 (patch)
treee4d5374fb024300a48066e60f95ce8c9869cf9d0 /src/row.rs
parent4b4a9c18e4c55a2ba6558ef614292db9c18ab88a (diff)
downloadvt100-rust-f7de5f52ff1ae465f09a648cffb81192b6aecf45.tar.gz
vt100-rust-f7de5f52ff1ae465f09a648cffb81192b6aecf45.zip
add Clone and Debug to Screen
Diffstat (limited to 'src/row.rs')
-rw-r--r--src/row.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/row.rs b/src/row.rs
index 38b8eb3..220cc0c 100644
--- a/src/row.rs
+++ b/src/row.rs
@@ -1,6 +1,6 @@
use std::convert::TryInto as _;
-#[derive(Clone)]
+#[derive(Clone, Debug)]
pub struct Row {
cells: Vec<crate::cell::Cell>,
wrapped: bool,