From 70d6bf661fa89524c72a3ad8ca8027bf9c34000c Mon Sep 17 00:00:00 2001 From: ondra05 Date: Sat, 2 Jul 2022 12:55:10 +0200 Subject: [PATCH] No need for the associated type :D --- ablescript/src/host_interface.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/ablescript/src/host_interface.rs b/ablescript/src/host_interface.rs index 740ce6e..d8db023 100644 --- a/ablescript/src/host_interface.rs +++ b/ablescript/src/host_interface.rs @@ -1,7 +1,5 @@ /// Host Environment Interface pub trait HostInterface { - type Data; - /// Print a string fn print(&mut self, string: &str, new_line: bool) -> std::io::Result<()>; @@ -19,8 +17,6 @@ pub trait HostInterface { #[derive(Clone, Copy, Default)] pub struct Standard; impl HostInterface for Standard { - type Data = (); - fn print(&mut self, string: &str, new_line: bool) -> std::io::Result<()> { use std::io::Write;