reactive_graph_std_result_model/component/
result_any.rs

1use crate::NAMESPACE_RESULT;
2use reactive_graph_graph::component_model;
3use reactive_graph_graph::component_ty;
4use reactive_graph_graph::properties;
5
6properties!(ResultAnyProperties, (RESULT, "result", {}));
7
8component_ty!(COMPONENT_RESULT_ANY, NAMESPACE_RESULT, COMPONENT_NAME_RESULT_ANY, "result_any");
9
10component_model!(
11    ResultAny,
12    get result value
13);