reactive_graph_std_result_model/component/
result_array.rs

1use serde_json::Value;
2
3use crate::NAMESPACE_RESULT;
4use reactive_graph_graph::component_model;
5use reactive_graph_graph::component_ty;
6use reactive_graph_graph::properties;
7
8properties!(ResultArrayProperties, (RESULT, "result", Value::Array(Vec::new())));
9
10component_ty!(COMPONENT_RESULT_ARRAY, NAMESPACE_RESULT, COMPONENT_NAME_RESULT_ARRAY, "result_array");
11
12component_model!(
13    ResultArray,
14    get result array
15);