reactive_graph_std_result_model/component/
result_string.rs

1use crate::NAMESPACE_RESULT;
2use reactive_graph_graph::component_model;
3use reactive_graph_graph::component_ty;
4use reactive_graph_graph::properties;
5
6properties!(ResultStringProperties, (RESULT, "result", ""));
7
8component_ty!(COMPONENT_RESULT_STRING, NAMESPACE_RESULT, COMPONENT_NAME_RESULT_STRING, "result_string");
9
10component_model!(
11    ResultString,
12    get result string
13);