reactive_graph_std_string_model/component/
string_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::ResultString;
6
7properties!(StringOperationProperties, (LHS, "lhs", ""));
8
9component_ty!(COMPONENT_STRING_OPERATION, NAMESPACE_STRING, COMPONENT_NAME_STRING_OPERATION, "string_operation");
10
11entity_model!(
12    StringOperation,
13    set lhs string
14);
15impl ResultString for StringOperation {}