diff --git a/src/renderer/context_element.rs b/src/renderer/context_element.rs index 68008e0..f69fcd3 100644 --- a/src/renderer/context_element.rs +++ b/src/renderer/context_element.rs @@ -12,7 +12,7 @@ pub trait ContextElement: + Walkable + Renderable + Loopable - + CloneIntoBoxedContextElement + // + CloneIntoBoxedContextElement + CompareContextElement + FromContextElement { @@ -62,15 +62,15 @@ pub trait CompareContextElement: CastToAny { fn partial_compare(&self, other: &dyn ContextElement) -> Option; } -pub trait CloneIntoBoxedContextElement { - fn clone_to_box(&self) -> Box; -} +// pub trait CloneIntoBoxedContextElement { +// fn clone_to_box(&self) -> Box; +// } -impl CloneIntoBoxedContextElement for C { - fn clone_to_box(&self) -> Box { - Box::new(self.clone()) - } -} +// impl CloneIntoBoxedContextElement for C { +// fn clone_to_box(&self) -> Box { +// Box::new(self.clone()) +// } +// } impl CastToAny for C { fn to_any(&self) -> &dyn Any { @@ -100,7 +100,7 @@ impl FromContextElement for C { } } -pub trait IntoContextElement: Debug + Walkable + CloneIntoBoxedContextElement { +pub trait IntoContextElement: Debug + Walkable /* + CloneIntoBoxedContextElement*/ { fn into_context_element( &self, renderer: &DustRenderer, diff --git a/src/renderer/mod.rs b/src/renderer/mod.rs index a168830..799cba4 100644 --- a/src/renderer/mod.rs +++ b/src/renderer/mod.rs @@ -10,7 +10,7 @@ mod renderer; mod tree_walking; mod walking; -pub use context_element::CloneIntoBoxedContextElement; +// pub use context_element::CloneIntoBoxedContextElement; pub use context_element::CompareContextElement; pub use context_element::ContextElement; pub use context_element::IntoContextElement;