aboutsummaryrefslogtreecommitdiffstats
path: root/src/async.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/async.rs')
-rw-r--r--src/async.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/async.rs b/src/async.rs
index 92a4f30..0a858c8 100644
--- a/src/async.rs
+++ b/src/async.rs
@@ -2,12 +2,12 @@ use futures_lite::io::AsyncWriteExt as _;
use super::private::TextmodeImpl as _;
-pub struct Textmode {
+pub struct Output {
cur: vt100::Parser,
next: vt100::Parser,
}
-impl super::private::TextmodeImpl for Textmode {
+impl super::private::TextmodeImpl for Output {
fn cur(&self) -> &vt100::Parser {
&self.cur
}
@@ -25,9 +25,9 @@ impl super::private::TextmodeImpl for Textmode {
}
}
-impl super::TextmodeExt for Textmode {}
+impl super::Textmode for Output {}
-impl Textmode {
+impl Output {
pub async fn new() -> std::io::Result<Self> {
let (rows, cols) = match terminal_size::terminal_size() {
Some((terminal_size::Width(w), terminal_size::Height(h))) => {