Get rid of the CloneIntoBoxedContextElement trait for now because I don't know if its still going to be necessary with this overhaul.

This commit is contained in:
Tom Alexander 2020-05-31 18:31:49 -04:00
parent b8b4759d45
commit 15c8e3bf28
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE
2 changed files with 11 additions and 11 deletions

View File

@ -12,7 +12,7 @@ pub trait ContextElement:
+ Walkable + Walkable
+ Renderable + Renderable
+ Loopable + Loopable
+ CloneIntoBoxedContextElement // + CloneIntoBoxedContextElement
+ CompareContextElement + CompareContextElement
+ FromContextElement + FromContextElement
{ {
@ -62,15 +62,15 @@ pub trait CompareContextElement: CastToAny {
fn partial_compare(&self, other: &dyn ContextElement) -> Option<Ordering>; fn partial_compare(&self, other: &dyn ContextElement) -> Option<Ordering>;
} }
pub trait CloneIntoBoxedContextElement { // pub trait CloneIntoBoxedContextElement {
fn clone_to_box(&self) -> Box<dyn IntoContextElement>; // fn clone_to_box(&self) -> Box<dyn IntoContextElement>;
} // }
impl<C: 'static + IntoContextElement + Clone> CloneIntoBoxedContextElement for C { // impl<C: 'static + IntoContextElement + Clone> CloneIntoBoxedContextElement for C {
fn clone_to_box(&self) -> Box<dyn IntoContextElement> { // fn clone_to_box(&self) -> Box<dyn IntoContextElement> {
Box::new(self.clone()) // Box::new(self.clone())
} // }
} // }
impl<C: 'static + ContextElement> CastToAny for C { impl<C: 'static + ContextElement> CastToAny for C {
fn to_any(&self) -> &dyn Any { fn to_any(&self) -> &dyn Any {
@ -100,7 +100,7 @@ impl<C: ContextElement> FromContextElement for C {
} }
} }
pub trait IntoContextElement: Debug + Walkable + CloneIntoBoxedContextElement { pub trait IntoContextElement: Debug + Walkable /* + CloneIntoBoxedContextElement*/ {
fn into_context_element( fn into_context_element(
&self, &self,
renderer: &DustRenderer, renderer: &DustRenderer,

View File

@ -10,7 +10,7 @@ mod renderer;
mod tree_walking; mod tree_walking;
mod walking; mod walking;
pub use context_element::CloneIntoBoxedContextElement; // pub use context_element::CloneIntoBoxedContextElement;
pub use context_element::CompareContextElement; pub use context_element::CompareContextElement;
pub use context_element::ContextElement; pub use context_element::ContextElement;
pub use context_element::IntoContextElement; pub use context_element::IntoContextElement;