Trait oxygengine_user_interface::PropsData [−][src]
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
fn clone_props(&self) -> Box<dyn PropsData + 'static, Global>
Implementations on Foreign Types
Implementors
impl<T> PropsData for DataBinding<T> where
T: 'static + Debug + Default + Send + Sync,
DataBinding<T>: Clone,