You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
And I want to read and modify the variable in a polling_action node
server.add_polling_action(2000, move || {
let address_space = address_space.write();
let value = address_space.get_variable_value(&car_call_request).unwrap().value.unwrap();
}
I am stuck at this point because the elements in the array are inaccessible.
I followed the guide and created a simple OPC-UA server with one of the variables being an array
And I want to read and modify the variable in a
polling_action
nodeI am stuck at this point because the elements in the array are inaccessible.
I understand that the array is an enum that has a Box as the component (
Array(Box<Array>)
).Is there any way to get the elements out of the array?
The text was updated successfully, but these errors were encountered: