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:
parent
b8b4759d45
commit
15c8e3bf28
@ -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,
|
||||||
|
@ -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;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user