reactive_graph_std_string_model/component/
string_bool_operation.rs

1use crate::NAMESPACE_STRING;
2use reactive_graph_graph::component_ty;
3use reactive_graph_graph::properties;
4use reactive_graph_reactive_model_api::entity_model;
5use reactive_graph_std_result_model::ResultBoolean;
6
7properties!(StringBoolOperationProperties, (LHS, "lhs", ""));
8
9component_ty!(
10    COMPONENT_STRING_BOOL_OPERATION,
11    NAMESPACE_STRING,
12    COMPONENT_NAME_STRING_BOOL_OPERATION,
13    "string_bool_operation"
14);
15
16entity_model!(
17    StringBoolOperation,
18    set lhs string
19);
20impl ResultBoolean for StringBoolOperation {}