reactive_graph_std_result_model/component/result_object.rs
1use crate::NAMESPACE_RESULT;
2use reactive_graph_graph::component_model;
3use reactive_graph_graph::component_ty;
4use reactive_graph_graph::properties;
5
6properties!(ResultObjectProperties, (RESULT, "result", {}));
7
8component_ty!(COMPONENT_RESULT_OBJECT, NAMESPACE_RESULT, COMPONENT_NAME_RESULT_OBJECT, "result_object");
9
10component_model!(
11 ResultObject,
12 get result object
13);