pub trait PropsData: Any + Debug + Send + Sync {
    fn clone_props(&self) -> Box<dyn PropsData + 'static, Global>;
    fn as_any(&self) -> &(dyn Any + 'static);
}

Required Methods

Implementations on Foreign Types

Implementors