reactive_graph_reactive_service_api/property/
name.rs

1use crate::TypedReactivePropertyImpl;
2use reactive_graph_reactive_model_api::ReactiveInstance;
3
4pub trait TypedReactivePropertyName {
5    fn property_name(&self) -> String;
6}
7
8impl<IdType, ReactiveInstanceType, Target> TypedReactivePropertyName for TypedReactivePropertyImpl<IdType, ReactiveInstanceType, Target>
9where
10    IdType: Clone,
11    ReactiveInstanceType: ReactiveInstance<IdType>,
12{
13    fn property_name(&self) -> String {
14        self.property_name.clone()
15    }
16}