From 4ead14a3153b34941570e87d67064e4aa93fa01a Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Fri, 12 Mar 2021 11:26:45 -0500 Subject: naming --- src/private.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/private.rs') 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; -- cgit v1.2.3-54-g00ecf