aboutsummaryrefslogtreecommitdiffstats
path: root/src/cell.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/cell.rs')
-rw-r--r--src/cell.rs10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/cell.rs b/src/cell.rs
index 240ddf9..b7ddd26 100644
--- a/src/cell.rs
+++ b/src/cell.rs
@@ -3,7 +3,7 @@ use unicode_width::UnicodeWidthChar as _;
const CODEPOINTS_IN_CELL: usize = 6;
/// Represents a single terminal cell.
-#[derive(Clone, Debug, Default, Eq)]
+#[derive(Clone, Debug, Eq)]
pub struct Cell {
contents: [char; CODEPOINTS_IN_CELL],
len: u8,
@@ -25,6 +25,14 @@ impl PartialEq<Self> for Cell {
}
impl Cell {
+ pub(crate) fn new() -> Self {
+ Self {
+ contents: Default::default(),
+ len: 0,
+ attrs: crate::attrs::Attrs::default(),
+ }
+ }
+
#[inline]
fn len(&self) -> usize {
usize::from(self.len & 0x0f)