From a81e9b4258748f883a5df76fdb1138a26efd25ae Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Mon, 20 Aug 2018 16:30:59 -0700 Subject: [PATCH] I guess we're doing this again... --- types/src/object.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/types/src/object.rs b/types/src/object.rs index 8f17050..d8f9517 100644 --- a/types/src/object.rs +++ b/types/src/object.rs @@ -25,6 +25,11 @@ pub enum ObjectPtr { Ptr(Box), } +pub trait Object : + fmt::Display, + +{ } + #[derive(Debug, PartialEq)] pub enum Object { Bool(bool),