aboutsummaryrefslogtreecommitdiffstats
path: root/src/private.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/private.rs')
-rw-r--r--src/private.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/private.rs b/src/private.rs
index a925a27..6bb37a9 100644
--- a/src/private.rs
+++ b/src/private.rs
@@ -1,4 +1,4 @@
-pub trait TextmodeImpl {
+pub trait Output {
fn cur(&self) -> &vt100::Parser;
fn cur_mut(&mut self) -> &mut vt100::Parser;
fn next(&self) -> &vt100::Parser;
@@ -15,7 +15,7 @@ pub trait TextmodeImpl {
}
}
-pub trait InputImpl {
+pub trait Input {
fn buf(&self) -> &[u8];
fn buf_mut(&mut self) -> &mut [u8];
fn buf_mut_vec(&mut self) -> &mut Vec<u8>;