reactive_graph_reactive_service_api/property/
creator.rs1use reactive_graph_reactive_model_api::ReactiveInstance;
2
3pub trait TypedReactivePropertyCreator<IdType, ReactiveInstanceType>
4where
5 IdType: Clone,
6 ReactiveInstanceType: ReactiveInstance<IdType>,
7{
8 type Target;
9 fn create(&self);
10}