reactive_graph_std_result_model/component/
result_boolean.rs

1use crate::NAMESPACE_RESULT;
2use reactive_graph_graph::component_model;
3use reactive_graph_graph::component_ty;
4use reactive_graph_graph::properties;
5
6properties!(ResultBooleanProperties, (RESULT, "result", false));
7
8component_ty!(COMPONENT_RESULT_BOOLEAN, NAMESPACE_RESULT, COMPONENT_NAME_RESULT_BOOLEAN, "result_boolean");
9
10component_model!(
11    ResultBoolean,
12    get result bool
13);