reactive_graph_std_string_model/component/
string_number_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::ResultNumberU64;
6
7properties!(StringNumberOperationProperties, (LHS, "lhs", ""));
8
9component_ty!(
10    COMPONENT_STRING_NUMBER_OPERATION,
11    NAMESPACE_STRING,
12    COMPONENT_NAME_STRING_NUMBER_OPERATION,
13    "string_number_operation"
14);
15
16entity_model!(
17    StringNumberOperation,
18    set lhs string
19);
20impl ResultNumberU64 for StringNumberOperation {}