aboutsummaryrefslogtreecommitdiffstats
path: root/src/term.rs
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2019-11-10 08:06:41 -0500
committerJesse Luehrs <doy@tozt.net>2019-11-10 08:08:18 -0500
commit5ba8dac7ca4e39713228a9571265b857aabd8c41 (patch)
tree817ee3280c17f16aedb9c13a6eb26b8527a4e3f2 /src/term.rs
parent168a91a9ddc331cd3b8e5c32f7701f2b0973b147 (diff)
downloadvt100-rust-5ba8dac7ca4e39713228a9571265b857aabd8c41.tar.gz
vt100-rust-5ba8dac7ca4e39713228a9571265b857aabd8c41.zip
simplify
Diffstat (limited to 'src/term.rs')
-rw-r--r--src/term.rs18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/term.rs b/src/term.rs
index 074f177..54dfa1d 100644
--- a/src/term.rs
+++ b/src/term.rs
@@ -3,12 +3,6 @@
#[derive(Default, Debug)]
pub struct ClearScreen;
-impl ClearScreen {
- pub fn new() -> Self {
- Self::default()
- }
-}
-
impl std::fmt::Display for ClearScreen {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
f.write_str("\x1b[H\x1b[J")
@@ -18,12 +12,6 @@ impl std::fmt::Display for ClearScreen {
#[derive(Default, Debug)]
pub struct CRLF;
-impl CRLF {
- pub fn new() -> Self {
- Self::default()
- }
-}
-
impl std::fmt::Display for CRLF {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
f.write_str("\r\n")
@@ -58,12 +46,6 @@ impl std::fmt::Display for MoveTo {
#[derive(Default, Debug)]
pub struct ClearAttrs;
-impl ClearAttrs {
- pub fn new() -> Self {
- Self::default()
- }
-}
-
impl std::fmt::Display for ClearAttrs {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
f.write_str("\x1b[m")