1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
use crate::style::{Style, StyleCursor};
use std::fmt::{Debug, Display, Error, Formatter};
use term::{self, Terminal};
pub struct Row {
text: String,
styles: Vec<Style>,
}
impl Row {
pub fn new(chars: &[char], styles: &[Style]) -> Row {
assert_eq!(chars.len(), styles.len());
Row {
text: chars.iter().cloned().collect(),
styles: styles.to_vec(),
}
}
pub fn write_to<T: Terminal + ?Sized>(&self, term: &mut T) -> term::Result<()> {
let mut cursor = StyleCursor::new(term)?;
for (character, &style) in self.text.trim_end().chars().zip(&self.styles) {
cursor.set_style(style)?;
write!(cursor.term(), "{}", character)?;
}
Ok(())
}
}
impl Display for Row {
fn fmt(&self, fmt: &mut Formatter<'_>) -> Result<(), Error> {
Display::fmt(self.text.trim_end(), fmt)
}
}
impl Debug for Row {
fn fmt(&self, fmt: &mut Formatter<'_>) -> Result<(), Error> {
write!(fmt, "\"")?;
Display::fmt(self.text.trim_end(), fmt)?;
write!(fmt, "\"")
}
}