pub trait IComponent: IComponentClone {
// Required method
fn as_any(&self) -> &dyn Any;
}Required Methods§
Trait Implementations§
Source§impl Clone for Box<dyn IComponent>
impl Clone for Box<dyn IComponent>
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more