From a08b285cf7fb7e24635f93eb8205480097785ca9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christoph=20Gro=C3=9F?= Date: Mon, 6 Aug 2018 14:52:23 +0200 Subject: [PATCH] removed display trait --- src/interface/mod.rs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/interface/mod.rs b/src/interface/mod.rs index 9469644..31f9ff7 100644 --- a/src/interface/mod.rs +++ b/src/interface/mod.rs @@ -21,12 +21,6 @@ pub(crate) trait Command { } -pub trait Displays { - fn width(self) -> u8; - fn height(self) -> u8; -} - - //TODO: add LUT trait with set_fast_lut and set_manual_lut and set_normal_lut or sth like that?