From 588f049290d3c9a23baeb2777ce3fa744a798b65 Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Fri, 23 May 2025 14:15:38 -0700 Subject: [PATCH] [position] Remove display module --- position/src/display.rs | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 position/src/display.rs diff --git a/position/src/display.rs b/position/src/display.rs deleted file mode 100644 index 37621a8..0000000 --- a/position/src/display.rs +++ /dev/null @@ -1,15 +0,0 @@ -// Eryn Wells - -use std::fmt; - -pub(crate) trait ASCIIDisplay { - fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result; -} - -pub(crate) trait UnicodeDisplay { - fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result; -} - -pub(crate) trait FENDisplay { - fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result; -}