diff --git a/client/src/builder.rs b/client/src/builder.rs index a6674d1ea..ad3af556c 100644 --- a/client/src/builder.rs +++ b/client/src/builder.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use std::path::PathBuf; diff --git a/client/src/callbacks.rs b/client/src/callbacks.rs index 0e08ad4f6..867d47772 100644 --- a/client/src/callbacks.rs +++ b/client/src/callbacks.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! Provides callback traits and concrete implementations that the client can use to register for notifications //! with the client api. diff --git a/client/src/client.rs b/client/src/client.rs index ca9e4d190..bf3608b70 100644 --- a/client/src/client.rs +++ b/client/src/client.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! Client setup and session creation. diff --git a/client/src/comms/mod.rs b/client/src/comms/mod.rs index c2dda4af8..47cb96fbd 100644 --- a/client/src/comms/mod.rs +++ b/client/src/comms/mod.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! Client side communications diff --git a/client/src/comms/tcp_transport.rs b/client/src/comms/tcp_transport.rs index d33e27960..6a03c5b21 100644 --- a/client/src/comms/tcp_transport.rs +++ b/client/src/comms/tcp_transport.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! The OPC UA TCP transport client module. The transport is responsible for establishing a connection //! with the server and processing requests. diff --git a/client/src/comms/transport.rs b/client/src/comms/transport.rs index 18cbe7b35..f2d1ca6fd 100644 --- a/client/src/comms/transport.rs +++ b/client/src/comms/transport.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock /// A trait common to all transport implementations pub(crate) trait Transport { diff --git a/client/src/config.rs b/client/src/config.rs index 8b59d934d..a2323e470 100644 --- a/client/src/config.rs +++ b/client/src/config.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! Client configuration data. diff --git a/client/src/lib.rs b/client/src/lib.rs index a1bd5e229..75073df9b 100644 --- a/client/src/lib.rs +++ b/client/src/lib.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! The OPC UA Client module contains the functionality necessary for a client to connect to an OPC UA server, //! authenticate itself, send messages, receive responses, get values, browse the address space and diff --git a/client/src/message_queue.rs b/client/src/message_queue.rs index ff65fa372..d52845543 100644 --- a/client/src/message_queue.rs +++ b/client/src/message_queue.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use std::{collections::HashMap, sync::mpsc::SyncSender}; diff --git a/client/src/session/services.rs b/client/src/session/services.rs index 5c19c44db..43382c095 100644 --- a/client/src/session/services.rs +++ b/client/src/session/services.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use std::{convert::TryFrom, sync::mpsc::SyncSender}; diff --git a/client/src/session/session.rs b/client/src/session/session.rs index 42da484d9..4b59b75d2 100644 --- a/client/src/session/session.rs +++ b/client/src/session/session.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! Session functionality for the current open client connection. This module contains functions //! to call for all typically synchronous operations during an OPC UA session. @@ -963,10 +963,10 @@ impl Session { } let request = CloseSessionRequest { delete_subscriptions: true, - request_header: self.make_request_header() + request_header: self.make_request_header(), }; let response = self.send_request(request)?; - if let SupportedMessage::CloseSessionResponse(_) = response { + if let SupportedMessage::CloseSessionResponse(_) = response { let mut subscription_state = trace_write_lock_unwrap!(self.subscription_state); if let Some(subscription_ids) = subscription_state.subscription_ids() { for subscription_id in subscription_ids { diff --git a/client/src/session/session_state.rs b/client/src/session/session_state.rs index cccf0ff13..ecc0af720 100644 --- a/client/src/session/session_state.rs +++ b/client/src/session/session_state.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use std::{ sync::{ diff --git a/client/src/session_retry_policy.rs b/client/src/session_retry_policy.rs index 87fae23cb..f43826fe3 100644 --- a/client/src/session_retry_policy.rs +++ b/client/src/session_retry_policy.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use chrono::Duration; diff --git a/client/src/subscription.rs b/client/src/subscription.rs index 368936b8c..0aeccfdb2 100644 --- a/client/src/subscription.rs +++ b/client/src/subscription.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! Provides subscription and monitored item tracking. //! diff --git a/client/src/subscription_state.rs b/client/src/subscription_state.rs index 2d00c7b29..b5d264dbe 100644 --- a/client/src/subscription_state.rs +++ b/client/src/subscription_state.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use std::collections::HashMap; diff --git a/console-logging/src/lib.rs b/console-logging/src/lib.rs index 8df88393e..4584fa24f 100644 --- a/console-logging/src/lib.rs +++ b/console-logging/src/lib.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock #[macro_use] extern crate log; diff --git a/core/src/comms/chunker.rs b/core/src/comms/chunker.rs index 4baa865f4..15241a6a0 100644 --- a/core/src/comms/chunker.rs +++ b/core/src/comms/chunker.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! Contains code for turning messages into chunks and chunks into messages. diff --git a/core/src/comms/message_chunk.rs b/core/src/comms/message_chunk.rs index b434d687f..c803050bb 100644 --- a/core/src/comms/message_chunk.rs +++ b/core/src/comms/message_chunk.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! A message chunk is a message or a portion of a message, optionally encrypted & signed, which //! has been split for transmission. diff --git a/core/src/comms/message_chunk_info.rs b/core/src/comms/message_chunk_info.rs index 408f16685..c32ba72a9 100644 --- a/core/src/comms/message_chunk_info.rs +++ b/core/src/comms/message_chunk_info.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use std::io::Cursor; diff --git a/core/src/comms/message_writer.rs b/core/src/comms/message_writer.rs index cb0dfd1f2..8862eb890 100644 --- a/core/src/comms/message_writer.rs +++ b/core/src/comms/message_writer.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use std::io::{Cursor, Write}; diff --git a/core/src/comms/mod.rs b/core/src/comms/mod.rs index 9047ac98d..f90a66b39 100644 --- a/core/src/comms/mod.rs +++ b/core/src/comms/mod.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! Contains all code related to sending / receiving messages from a transport //! and turning those messages into and out of chunks. diff --git a/core/src/comms/secure_channel.rs b/core/src/comms/secure_channel.rs index cdd906813..12d2ee6e3 100644 --- a/core/src/comms/secure_channel.rs +++ b/core/src/comms/secure_channel.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use std::{ io::{Cursor, Write}, diff --git a/core/src/comms/security_header.rs b/core/src/comms/security_header.rs index b4b9ae431..5438e1ef1 100644 --- a/core/src/comms/security_header.rs +++ b/core/src/comms/security_header.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use std::io::{Read, Write}; diff --git a/core/src/comms/tcp_codec.rs b/core/src/comms/tcp_codec.rs index 32b0771e8..3a10c7271 100644 --- a/core/src/comms/tcp_codec.rs +++ b/core/src/comms/tcp_codec.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! The codec is an implementation of a tokio Encoder/Decoder which can be used to read //! data from the socket in terms of frames which in our case are any of the following: diff --git a/core/src/comms/tcp_types.rs b/core/src/comms/tcp_types.rs index f6e334ad0..3c9c78c5a 100644 --- a/core/src/comms/tcp_types.rs +++ b/core/src/comms/tcp_types.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! Contains the implementation of various UA over TCP types. diff --git a/core/src/comms/url.rs b/core/src/comms/url.rs index 6d5a4c1d9..8e90b08f3 100644 --- a/core/src/comms/url.rs +++ b/core/src/comms/url.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! Provides functions for parsing Urls from strings. diff --git a/core/src/config.rs b/core/src/config.rs index 713b79b74..850bc66b0 100644 --- a/core/src/config.rs +++ b/core/src/config.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use std::fs::File; use std::io::{Read, Write}; diff --git a/core/src/handle.rs b/core/src/handle.rs index 5ef2601dc..f5c126627 100644 --- a/core/src/handle.rs +++ b/core/src/handle.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use std::u32; diff --git a/core/src/lib.rs b/core/src/lib.rs index 55e59e8ae..1a40f470c 100644 --- a/core/src/lib.rs +++ b/core/src/lib.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! The OPC UA Core module holds functionality that is common to server and clients that make use of OPC UA. //! It contains message chunking, cryptography / pki, communications and standard handshake messages. diff --git a/core/src/runtime.rs b/core/src/runtime.rs index d4e1e04a7..e34bd1e8b 100644 --- a/core/src/runtime.rs +++ b/core/src/runtime.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use std::{ collections::BTreeSet, diff --git a/core/src/supported_message.rs b/core/src/supported_message.rs index 7415055b4..33617e9c8 100644 --- a/core/src/supported_message.rs +++ b/core/src/supported_message.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated by tools/schema/gen_supported_message.js // DO NOT EDIT THIS FILE diff --git a/crypto/src/aeskey.rs b/crypto/src/aeskey.rs index eb86d391b..a47950506 100644 --- a/crypto/src/aeskey.rs +++ b/crypto/src/aeskey.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! Symmetric encryption / decryption wrapper. use opcua_types::status_code::StatusCode; diff --git a/crypto/src/certificate_store.rs b/crypto/src/certificate_store.rs index 8bd3cb2be..ff37f2df5 100644 --- a/crypto/src/certificate_store.rs +++ b/crypto/src/certificate_store.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! The certificate store holds and retrieves private keys and certificates from disk. It is responsible //! for checking certificates supplied by the remote end to see if they are valid and trusted or not. diff --git a/crypto/src/hash.rs b/crypto/src/hash.rs index 35bc5caab..636e84370 100644 --- a/crypto/src/hash.rs +++ b/crypto/src/hash.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! Hashing functions used for producing and verifying digital signatures diff --git a/crypto/src/lib.rs b/crypto/src/lib.rs index 2bb908b22..278a7bb8d 100644 --- a/crypto/src/lib.rs +++ b/crypto/src/lib.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! Crypto related functionality. It is used for establishing //! trust between a client and server via certificate exchange and validation. It also used for diff --git a/crypto/src/pkey.rs b/crypto/src/pkey.rs index 2f389d673..e6cb34e65 100644 --- a/crypto/src/pkey.rs +++ b/crypto/src/pkey.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! Asymmetric encryption / decryption, signing / verification wrapper. use std::{ diff --git a/crypto/src/random.rs b/crypto/src/random.rs index 3d4058519..059b1ed7f 100644 --- a/crypto/src/random.rs +++ b/crypto/src/random.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! Module contains functions for creating cryptographically strong random bytes. diff --git a/crypto/src/security_policy.rs b/crypto/src/security_policy.rs index 5886ae6fb..05904a141 100644 --- a/crypto/src/security_policy.rs +++ b/crypto/src/security_policy.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! Security policy is the symmetric, asymmetric encryption / decryption + signing / verification //! algorithms to use and enforce for the current session. diff --git a/crypto/src/thumbprint.rs b/crypto/src/thumbprint.rs index 2878ccb7d..a26824aa0 100644 --- a/crypto/src/thumbprint.rs +++ b/crypto/src/thumbprint.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! Functionality for holding a message digest. use opcua_types::ByteString; diff --git a/crypto/src/user_identity.rs b/crypto/src/user_identity.rs index 38d9fbacc..9b2df54a2 100644 --- a/crypto/src/user_identity.rs +++ b/crypto/src/user_identity.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! Functions related to encrypting / decrypting passwords in a UserNameIdentityToken. //! diff --git a/crypto/src/x509.rs b/crypto/src/x509.rs index 161f8030e..12574740a 100644 --- a/crypto/src/x509.rs +++ b/crypto/src/x509.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // X509 certificate wrapper. diff --git a/docs/cross-compile.md b/docs/cross-compile.md index 97b00cbee..b59cced02 100644 --- a/docs/cross-compile.md +++ b/docs/cross-compile.md @@ -43,7 +43,7 @@ A [bug](https://github.com/locka99/opcua/issues/24) was raised asking how to cro 1. Install cross-compile utilities as shown [here](https://github.com/sodiumoxide/sodiumoxide) 2. Follow malbarbo's answer [here](https://stackoverflow.com/questions/37375712/cross-compile-rust-openssl-for-raspberry-pi-2) -Raspberry Pi is the target architecture and I used Linux Subsystem for Windows with Debian to work +Raspberry Pi is the target architecture. I used Linux Subsystem for Windows with Debian to work through the steps. #### Install toolchain for ARM7 diff --git a/samples/chess-server/src/game.rs b/samples/chess-server/src/game.rs index 5fd824f59..3ea45f443 100644 --- a/samples/chess-server/src/game.rs +++ b/samples/chess-server/src/game.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use uci::Engine; diff --git a/samples/chess-server/src/main.rs b/samples/chess-server/src/main.rs index 77e5bdaf2..5e0a35ffe 100644 --- a/samples/chess-server/src/main.rs +++ b/samples/chess-server/src/main.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use std::env; use std::path::PathBuf; diff --git a/samples/demo-server/src/control.rs b/samples/demo-server/src/control.rs index 98e9ae706..2b0c53137 100644 --- a/samples/demo-server/src/control.rs +++ b/samples/demo-server/src/control.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use opcua_server::prelude::*; diff --git a/samples/demo-server/src/historical.rs b/samples/demo-server/src/historical.rs index 3b66b8f2a..e027f51ab 100644 --- a/samples/demo-server/src/historical.rs +++ b/samples/demo-server/src/historical.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! Implementations of HistoricalDataProvider and HistoricalEventProvider use std::sync::{Arc, RwLock}; diff --git a/samples/demo-server/src/machine.rs b/samples/demo-server/src/machine.rs index b2d0106ee..e5a35bcb7 100644 --- a/samples/demo-server/src/machine.rs +++ b/samples/demo-server/src/machine.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use std::sync::{ atomic::{AtomicU16, AtomicU32, Ordering}, diff --git a/samples/demo-server/src/main.rs b/samples/demo-server/src/main.rs index 45767bbf5..2b6ca0c7b 100644 --- a/samples/demo-server/src/main.rs +++ b/samples/demo-server/src/main.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! This is a demo server for OPC UA. It demonstrates most of the features of OPC UA for Rust. //! diff --git a/samples/demo-server/src/methods.rs b/samples/demo-server/src/methods.rs index b2616617c..89cc757f3 100644 --- a/samples/demo-server/src/methods.rs +++ b/samples/demo-server/src/methods.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! A sample method diff --git a/samples/demo-server/src/scalar.rs b/samples/demo-server/src/scalar.rs index 71fc3d4e6..78476a858 100644 --- a/samples/demo-server/src/scalar.rs +++ b/samples/demo-server/src/scalar.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use rand::distributions::Alphanumeric; use rand::Rng; diff --git a/samples/discovery-client/src/main.rs b/samples/discovery-client/src/main.rs index abee7b455..4cd81cbf2 100644 --- a/samples/discovery-client/src/main.rs +++ b/samples/discovery-client/src/main.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! This is a sample that calls find servers on a OPC UA discovery server use std::str::FromStr; diff --git a/samples/event-client/src/main.rs b/samples/event-client/src/main.rs index 19ad4570a..4faeed38e 100644 --- a/samples/event-client/src/main.rs +++ b/samples/event-client/src/main.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! This OPC UA client will subscribe to events and print them out when it receives them //! diff --git a/samples/modbus-server/src/config.rs b/samples/modbus-server/src/config.rs index a664aacc6..b10104dea 100644 --- a/samples/modbus-server/src/config.rs +++ b/samples/modbus-server/src/config.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use std::{fs::File, io::Read, path::Path}; diff --git a/samples/modbus-server/src/main.rs b/samples/modbus-server/src/main.rs index 09949c4be..711b71f99 100644 --- a/samples/modbus-server/src/main.rs +++ b/samples/modbus-server/src/main.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! This is a OPC UA server that is a MODBUS master - in MODBUS parlance the master is the thing //! requesting information from a slave device. diff --git a/samples/modbus-server/src/master.rs b/samples/modbus-server/src/master.rs index 345063e5c..2452e5765 100644 --- a/samples/modbus-server/src/master.rs +++ b/samples/modbus-server/src/master.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use std::{ sync::{Arc, RwLock}, diff --git a/samples/modbus-server/src/opcua.rs b/samples/modbus-server/src/opcua.rs index 133d2eb11..dea53da23 100644 --- a/samples/modbus-server/src/opcua.rs +++ b/samples/modbus-server/src/opcua.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use std::{ f32, f64, i16, i32, i64, i8, diff --git a/samples/modbus-server/src/slave.rs b/samples/modbus-server/src/slave.rs index e8beb9bc3..2c0bc610a 100644 --- a/samples/modbus-server/src/slave.rs +++ b/samples/modbus-server/src/slave.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use futures::future::{self, FutureResult}; use std::{ diff --git a/samples/mqtt-client/src/main.rs b/samples/mqtt-client/src/main.rs index 99eab07a8..9f5c05f95 100644 --- a/samples/mqtt-client/src/main.rs +++ b/samples/mqtt-client/src/main.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! This is a sample OPC UA Client that connects to the specified server, fetches some //! values before exiting. diff --git a/samples/simple-client/src/main.rs b/samples/simple-client/src/main.rs index 44e42256f..b519aaf6d 100644 --- a/samples/simple-client/src/main.rs +++ b/samples/simple-client/src/main.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! This simple OPC UA client will do the following: //! diff --git a/samples/simple-server/src/main.rs b/samples/simple-server/src/main.rs index 4fc6c39b1..d113e780b 100644 --- a/samples/simple-server/src/main.rs +++ b/samples/simple-server/src/main.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! This is a simple server for OPC UA. Our sample creates a server with the default settings //! adds some variables to the address space and the listeners for connections. It also has diff --git a/samples/web-client/src/main.rs b/samples/web-client/src/main.rs index 6bd61a0d8..deaafccd6 100644 --- a/samples/web-client/src/main.rs +++ b/samples/web-client/src/main.rs @@ -1,7 +1,7 @@ // OPCUA for Rust // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock #[macro_use] extern crate serde_derive; diff --git a/server/src/address_space/address_space.rs b/server/src/address_space/address_space.rs index 6fd7af336..4567baba2 100644 --- a/server/src/address_space/address_space.rs +++ b/server/src/address_space/address_space.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! Implementation of `AddressSpace`. use std::collections::HashMap; diff --git a/server/src/address_space/base.rs b/server/src/address_space/base.rs index 570dd097f..1ab0ffda0 100644 --- a/server/src/address_space/base.rs +++ b/server/src/address_space/base.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use opcua_types::{status_code::StatusCode, *}; diff --git a/server/src/address_space/data_type.rs b/server/src/address_space/data_type.rs index 2ad6f5daf..cbcdc2ee3 100644 --- a/server/src/address_space/data_type.rs +++ b/server/src/address_space/data_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! Contains the implementation of `Method` and `MethodBuilder`. diff --git a/server/src/address_space/generated/mod.rs b/server/src/address_space/generated/mod.rs index cfc7c453a..e16b85552 100644 --- a/server/src/address_space/generated/mod.rs +++ b/server/src/address_space/generated/mod.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated by tools/schema/gen_address_space.js // DO NOT EDIT THIS FILE @@ -8,6 +8,24 @@ use crate::address_space::types::AddressSpace; +mod nodeset_10; +mod nodeset_11; +mod nodeset_12_1; +mod nodeset_12_2; +mod nodeset_12_3; +mod nodeset_12_4; +mod nodeset_13; +mod nodeset_14_1; +mod nodeset_14_10; +mod nodeset_14_11; +mod nodeset_14_2; +mod nodeset_14_3; +mod nodeset_14_4; +mod nodeset_14_5; +mod nodeset_14_6; +mod nodeset_14_7; +mod nodeset_14_8; +mod nodeset_14_9; mod nodeset_3_1; mod nodeset_3_2; mod nodeset_4_1; @@ -19,6 +37,13 @@ mod nodeset_4_6; mod nodeset_4_7; mod nodeset_4_8; mod nodeset_5_1; +mod nodeset_5_10; +mod nodeset_5_11; +mod nodeset_5_12; +mod nodeset_5_13; +mod nodeset_5_14; +mod nodeset_5_15; +mod nodeset_5_16; mod nodeset_5_2; mod nodeset_5_3; mod nodeset_5_4; @@ -27,37 +52,12 @@ mod nodeset_5_6; mod nodeset_5_7; mod nodeset_5_8; mod nodeset_5_9; -mod nodeset_5_10; -mod nodeset_5_11; -mod nodeset_5_12; -mod nodeset_5_13; -mod nodeset_5_14; -mod nodeset_5_15; -mod nodeset_5_16; mod nodeset_8; +mod nodeset_999; mod nodeset_9_1; mod nodeset_9_2; mod nodeset_9_3; mod nodeset_9_4; -mod nodeset_10; -mod nodeset_11; -mod nodeset_12_1; -mod nodeset_12_2; -mod nodeset_12_3; -mod nodeset_12_4; -mod nodeset_13; -mod nodeset_14_1; -mod nodeset_14_2; -mod nodeset_14_3; -mod nodeset_14_4; -mod nodeset_14_5; -mod nodeset_14_6; -mod nodeset_14_7; -mod nodeset_14_8; -mod nodeset_14_9; -mod nodeset_14_10; -mod nodeset_14_11; -mod nodeset_999; /// Populates the address space with all defined node sets pub fn populate_address_space(address_space: &mut AddressSpace) { diff --git a/server/src/address_space/generated/nodeset_10.rs b/server/src/address_space/generated/nodeset_10.rs index 3131e2a25..6c05a747a 100644 --- a/server/src/address_space/generated/nodeset_10.rs +++ b/server/src/address_space/generated/nodeset_10.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.NodeSet2.Part10.xml by tools/schema/gen_address_space.js // DO NOT EDIT THIS FILE @@ -9,8 +9,11 @@ use std::{convert::TryFrom, str::FromStr}; #[allow(unused_imports)] use crate::{ - address_space::{EventNotifier, types::*}, - prelude::{DataTypeId, ExtensionObject, LocalizedText, NodeId, ReferenceTypeId, service_types::Argument, UAString, Variant, VariantTypeId} + address_space::{types::*, EventNotifier}, + prelude::{ + service_types::Argument, DataTypeId, ExtensionObject, LocalizedText, NodeId, + ReferenceTypeId, UAString, Variant, VariantTypeId, + }, }; #[allow(unused_variables)] @@ -121,11 +124,26 @@ fn add_object_1(address_space: &mut AddressSpace) { let name = "FinalResultData"; let node_id = NodeId::new(0, 3850); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 58), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2391), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2391), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_2(address_space: &mut AddressSpace) { @@ -133,11 +151,26 @@ fn add_object_2(address_space: &mut AddressSpace) { let name = "Halted"; let node_id = NodeId::new(0, 2406); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2407), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2307), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2391), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2407), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2307), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2391), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_3(address_space: &mut AddressSpace) { @@ -145,11 +178,26 @@ fn add_object_3(address_space: &mut AddressSpace) { let name = "Ready"; let node_id = NodeId::new(0, 2400); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2401), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2307), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2391), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2401), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2307), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2391), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_4(address_space: &mut AddressSpace) { @@ -157,11 +205,26 @@ fn add_object_4(address_space: &mut AddressSpace) { let name = "Running"; let node_id = NodeId::new(0, 2402); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2403), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2307), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2391), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2403), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2307), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2391), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_5(address_space: &mut AddressSpace) { @@ -169,11 +232,26 @@ fn add_object_5(address_space: &mut AddressSpace) { let name = "Suspended"; let node_id = NodeId::new(0, 2404); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2405), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2307), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2391), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2405), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2307), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2391), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_6(address_space: &mut AddressSpace) { @@ -181,11 +259,26 @@ fn add_object_6(address_space: &mut AddressSpace) { let name = "HaltedToReady"; let node_id = NodeId::new(0, 2408); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2409), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2310), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2391), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2409), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2310), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2391), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_7(address_space: &mut AddressSpace) { @@ -193,11 +286,26 @@ fn add_object_7(address_space: &mut AddressSpace) { let name = "ReadyToRunning"; let node_id = NodeId::new(0, 2410); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2411), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2310), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2391), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2411), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2310), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2391), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_8(address_space: &mut AddressSpace) { @@ -205,11 +313,26 @@ fn add_object_8(address_space: &mut AddressSpace) { let name = "RunningToHalted"; let node_id = NodeId::new(0, 2412); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2413), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2310), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2391), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2413), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2310), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2391), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_9(address_space: &mut AddressSpace) { @@ -217,11 +340,26 @@ fn add_object_9(address_space: &mut AddressSpace) { let name = "RunningToReady"; let node_id = NodeId::new(0, 2414); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2415), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2310), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2391), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2415), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2310), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2391), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_10(address_space: &mut AddressSpace) { @@ -229,11 +367,26 @@ fn add_object_10(address_space: &mut AddressSpace) { let name = "RunningToSuspended"; let node_id = NodeId::new(0, 2416); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2417), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2310), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2391), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2417), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2310), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2391), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_11(address_space: &mut AddressSpace) { @@ -241,11 +394,26 @@ fn add_object_11(address_space: &mut AddressSpace) { let name = "SuspendedToRunning"; let node_id = NodeId::new(0, 2418); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2419), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2310), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2391), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2419), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2310), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2391), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_12(address_space: &mut AddressSpace) { @@ -253,11 +421,26 @@ fn add_object_12(address_space: &mut AddressSpace) { let name = "SuspendedToHalted"; let node_id = NodeId::new(0, 2420); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2421), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2310), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2391), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2421), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2310), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2391), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_13(address_space: &mut AddressSpace) { @@ -265,11 +448,26 @@ fn add_object_13(address_space: &mut AddressSpace) { let name = "SuspendedToReady"; let node_id = NodeId::new(0, 2422); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2423), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2310), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2391), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2423), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2310), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2391), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_14(address_space: &mut AddressSpace) { @@ -277,11 +475,26 @@ fn add_object_14(address_space: &mut AddressSpace) { let name = "ReadyToHalted"; let node_id = NodeId::new(0, 2424); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2425), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2310), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2391), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2425), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2310), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2391), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_15(address_space: &mut AddressSpace) { @@ -289,11 +502,26 @@ fn add_object_15(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 896); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 894), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8247), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 894), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8247), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_16(address_space: &mut AddressSpace) { @@ -301,11 +529,26 @@ fn add_object_16(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 15397); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15396), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 15398), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15396), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 15398), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_17(address_space: &mut AddressSpace) { @@ -313,11 +556,26 @@ fn add_object_17(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 895); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 894), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8882), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 894), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8882), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_18(address_space: &mut AddressSpace) { @@ -325,11 +583,26 @@ fn add_object_18(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 15401); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15396), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 15402), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15396), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 15402), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_19(address_space: &mut AddressSpace) { @@ -337,10 +610,21 @@ fn add_object_19(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15381); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 894), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 894), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_20(address_space: &mut AddressSpace) { @@ -348,10 +632,21 @@ fn add_object_20(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15405); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15396), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15396), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_objecttype_21(address_space: &mut AddressSpace) { @@ -359,38 +654,161 @@ fn add_objecttype_21(address_space: &mut AddressSpace) { let name = "ProgramStateMachineType"; let node_id = NodeId::new(0, 2391); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 3830), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3835), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2392), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2393), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2394), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2395), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2396), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2397), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2398), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2399), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3850), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2406), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2400), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2402), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2404), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2408), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2410), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2412), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2414), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2416), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2418), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2420), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2422), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2424), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2426), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2427), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2428), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2429), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2430), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2771), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 3830), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3835), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2392), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2393), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2394), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2395), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2396), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2397), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2398), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2399), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3850), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2406), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2400), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2402), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2404), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2408), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2410), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2412), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2414), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2416), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2418), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2420), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2422), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2424), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2426), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2427), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2428), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2429), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2430), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2771), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_22(address_space: &mut AddressSpace) { @@ -398,10 +816,21 @@ fn add_objecttype_22(address_space: &mut AddressSpace) { let name = "ProgramTransitionEventType"; let node_id = NodeId::new(0, 2378); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2379), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2311), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2379), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2311), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_23(address_space: &mut AddressSpace) { @@ -409,10 +838,21 @@ fn add_objecttype_23(address_space: &mut AddressSpace) { let name = "AuditProgramTransitionEventType"; let node_id = NodeId::new(0, 11856); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11875), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2315), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11875), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2315), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_24(address_space: &mut AddressSpace) { @@ -420,10 +860,21 @@ fn add_objecttype_24(address_space: &mut AddressSpace) { let name = "ProgramTransitionAuditEventType"; let node_id = NodeId::new(0, 3806); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 3825), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2315), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 3825), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2315), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_datatype_25(address_space: &mut AddressSpace) { @@ -431,9 +882,14 @@ fn add_datatype_25(address_space: &mut AddressSpace) { let name = "ProgramDiagnosticDataType"; let node_id = NodeId::new(0, 894); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_26(address_space: &mut AddressSpace) { @@ -441,9 +897,14 @@ fn add_datatype_26(address_space: &mut AddressSpace) { let name = "ProgramDiagnostic2DataType"; let node_id = NodeId::new(0, 15396); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_variable_27(address_space: &mut AddressSpace) { @@ -451,14 +912,38 @@ fn add_variable_27(address_space: &mut AddressSpace) { let name = "CurrentState"; let value = Variant::Empty; let node_id = NodeId::new(0, 3830); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 3831), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 3833), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2760), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2391), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 3831), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3833), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2760), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2391), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_28(address_space: &mut AddressSpace) { @@ -466,12 +951,28 @@ fn add_variable_28(address_space: &mut AddressSpace) { let name = "Id"; let value = Variant::Empty; let node_id = NodeId::new(0, 3831); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 3830), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3830), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_29(address_space: &mut AddressSpace) { @@ -480,11 +981,26 @@ fn add_variable_29(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 3833); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 3830), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3830), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_30(address_space: &mut AddressSpace) { @@ -492,15 +1008,43 @@ fn add_variable_30(address_space: &mut AddressSpace) { let name = "LastTransition"; let value = Variant::Empty; let node_id = NodeId::new(0, 3835); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 3836), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 3838), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 3839), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2767), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2391), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 3836), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3838), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3839), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2767), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2391), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_31(address_space: &mut AddressSpace) { @@ -508,12 +1052,28 @@ fn add_variable_31(address_space: &mut AddressSpace) { let name = "Id"; let value = Variant::Empty; let node_id = NodeId::new(0, 3836); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 3835), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3835), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_32(address_space: &mut AddressSpace) { @@ -522,11 +1082,26 @@ fn add_variable_32(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 3838); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 3835), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3835), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_33(address_space: &mut AddressSpace) { @@ -534,12 +1109,28 @@ fn add_variable_33(address_space: &mut AddressSpace) { let name = "TransitionTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 3839); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 3835), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3835), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_34(address_space: &mut AddressSpace) { @@ -548,10 +1139,21 @@ fn add_variable_34(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2392); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2391), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2391), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_35(address_space: &mut AddressSpace) { @@ -560,11 +1162,26 @@ fn add_variable_35(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2393); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2391), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2391), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_36(address_space: &mut AddressSpace) { @@ -573,11 +1190,26 @@ fn add_variable_36(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2394); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2391), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2391), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_37(address_space: &mut AddressSpace) { @@ -586,11 +1218,26 @@ fn add_variable_37(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2395); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 6), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2391), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2391), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_38(address_space: &mut AddressSpace) { @@ -599,10 +1246,21 @@ fn add_variable_38(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2396); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2391), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2391), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_39(address_space: &mut AddressSpace) { @@ -611,10 +1269,21 @@ fn add_variable_39(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2397); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2391), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2391), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_40(address_space: &mut AddressSpace) { @@ -623,10 +1292,21 @@ fn add_variable_40(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2398); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2391), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2391), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_41(address_space: &mut AddressSpace) { @@ -634,24 +1314,95 @@ fn add_variable_41(address_space: &mut AddressSpace) { let name = "ProgramDiagnostic"; let value = Variant::Empty; let node_id = NodeId::new(0, 2399); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15396), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 3840), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3841), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3842), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3843), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 3844), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3845), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3846), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3847), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15038), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15040), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3848), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3849), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15383), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2391), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 15396), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 3840), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3841), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3842), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3843), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3844), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3845), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3846), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3847), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15038), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15040), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3848), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3849), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15383), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2391), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_42(address_space: &mut AddressSpace) { @@ -659,12 +1410,28 @@ fn add_variable_42(address_space: &mut AddressSpace) { let name = "CreateSessionId"; let value = Variant::Empty; let node_id = NodeId::new(0, 3840); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2399), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2399), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_43(address_space: &mut AddressSpace) { @@ -672,12 +1439,28 @@ fn add_variable_43(address_space: &mut AddressSpace) { let name = "CreateClientName"; let value = Variant::Empty; let node_id = NodeId::new(0, 3841); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2399), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2399), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_44(address_space: &mut AddressSpace) { @@ -685,12 +1468,28 @@ fn add_variable_44(address_space: &mut AddressSpace) { let name = "InvocationCreationTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 3842); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2399), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2399), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_45(address_space: &mut AddressSpace) { @@ -698,12 +1497,28 @@ fn add_variable_45(address_space: &mut AddressSpace) { let name = "LastTransitionTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 3843); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2399), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2399), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_46(address_space: &mut AddressSpace) { @@ -711,12 +1526,28 @@ fn add_variable_46(address_space: &mut AddressSpace) { let name = "LastMethodCall"; let value = Variant::Empty; let node_id = NodeId::new(0, 3844); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2399), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2399), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_47(address_space: &mut AddressSpace) { @@ -724,12 +1555,28 @@ fn add_variable_47(address_space: &mut AddressSpace) { let name = "LastMethodSessionId"; let value = Variant::Empty; let node_id = NodeId::new(0, 3845); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2399), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2399), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_48(address_space: &mut AddressSpace) { @@ -737,12 +1584,35 @@ fn add_variable_48(address_space: &mut AddressSpace) { let name = "LastMethodInputArguments"; let value = Variant::Empty; let node_id = NodeId::new(0, 3846); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2399), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2399), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_49(address_space: &mut AddressSpace) { @@ -750,12 +1620,35 @@ fn add_variable_49(address_space: &mut AddressSpace) { let name = "LastMethodOutputArguments"; let value = Variant::Empty; let node_id = NodeId::new(0, 3847); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2399), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2399), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_50(address_space: &mut AddressSpace) { @@ -763,12 +1656,35 @@ fn add_variable_50(address_space: &mut AddressSpace) { let name = "LastMethodInputValues"; let value = Variant::Empty; let node_id = NodeId::new(0, 15038); - let node = Variable::new_data_value(&node_id, name, name, DataTypeId::Boolean, Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2399), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + DataTypeId::Boolean, + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2399), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_51(address_space: &mut AddressSpace) { @@ -776,12 +1692,35 @@ fn add_variable_51(address_space: &mut AddressSpace) { let name = "LastMethodOutputValues"; let value = Variant::Empty; let node_id = NodeId::new(0, 15040); - let node = Variable::new_data_value(&node_id, name, name, DataTypeId::Boolean, Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2399), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + DataTypeId::Boolean, + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2399), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_52(address_space: &mut AddressSpace) { @@ -789,12 +1728,28 @@ fn add_variable_52(address_space: &mut AddressSpace) { let name = "LastMethodCallTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 3848); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2399), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2399), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_53(address_space: &mut AddressSpace) { @@ -802,12 +1757,28 @@ fn add_variable_53(address_space: &mut AddressSpace) { let name = "LastMethodReturnStatus"; let value = Variant::Empty; let node_id = NodeId::new(0, 3849); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2399), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2399), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_54(address_space: &mut AddressSpace) { @@ -816,11 +1787,26 @@ fn add_variable_54(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2407); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2406), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2406), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_55(address_space: &mut AddressSpace) { @@ -829,11 +1815,26 @@ fn add_variable_55(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2401); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2400), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2400), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_56(address_space: &mut AddressSpace) { @@ -842,11 +1843,26 @@ fn add_variable_56(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2403); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2402), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2402), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_57(address_space: &mut AddressSpace) { @@ -855,11 +1871,26 @@ fn add_variable_57(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2405); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2404), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2404), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_58(address_space: &mut AddressSpace) { @@ -868,11 +1899,26 @@ fn add_variable_58(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2409); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2408), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2408), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_59(address_space: &mut AddressSpace) { @@ -881,11 +1927,26 @@ fn add_variable_59(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2411); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2410), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2410), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_60(address_space: &mut AddressSpace) { @@ -894,11 +1955,26 @@ fn add_variable_60(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2413); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2412), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2412), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_61(address_space: &mut AddressSpace) { @@ -907,11 +1983,26 @@ fn add_variable_61(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2415); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2414), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2414), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_62(address_space: &mut AddressSpace) { @@ -920,11 +2011,26 @@ fn add_variable_62(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2417); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2416), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2416), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_63(address_space: &mut AddressSpace) { @@ -933,11 +2039,26 @@ fn add_variable_63(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2419); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2418), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2418), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_64(address_space: &mut AddressSpace) { @@ -946,11 +2067,26 @@ fn add_variable_64(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2421); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2420), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2420), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_65(address_space: &mut AddressSpace) { @@ -959,11 +2095,26 @@ fn add_variable_65(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2423); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2422), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2422), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_66(address_space: &mut AddressSpace) { @@ -972,11 +2123,26 @@ fn add_variable_66(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2425); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2424), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2424), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_67(address_space: &mut AddressSpace) { @@ -984,12 +2150,28 @@ fn add_variable_67(address_space: &mut AddressSpace) { let name = "IntermediateResult"; let value = Variant::Empty; let node_id = NodeId::new(0, 2379); - let node = Variable::new_data_value(&node_id, name, name, DataTypeId::Boolean, None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2378), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, DataTypeId::Boolean, None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2378), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_68(address_space: &mut AddressSpace) { @@ -998,11 +2180,26 @@ fn add_variable_68(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11875); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11856), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11856), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_69(address_space: &mut AddressSpace) { @@ -1010,13 +2207,33 @@ fn add_variable_69(address_space: &mut AddressSpace) { let name = "Transition"; let value = Variant::Empty; let node_id = NodeId::new(0, 3825); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 3826), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2767), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 3806), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 3826), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2767), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3806), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_70(address_space: &mut AddressSpace) { @@ -1024,12 +2241,28 @@ fn add_variable_70(address_space: &mut AddressSpace) { let name = "Id"; let value = Variant::Empty; let node_id = NodeId::new(0, 3826); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 3825), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3825), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_71(address_space: &mut AddressSpace) { @@ -1037,12 +2270,28 @@ fn add_variable_71(address_space: &mut AddressSpace) { let name = "CreateSessionId"; let value = Variant::Empty; let node_id = NodeId::new(0, 2381); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2380), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2380), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_72(address_space: &mut AddressSpace) { @@ -1050,12 +2299,28 @@ fn add_variable_72(address_space: &mut AddressSpace) { let name = "CreateClientName"; let value = Variant::Empty; let node_id = NodeId::new(0, 2382); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2380), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2380), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_73(address_space: &mut AddressSpace) { @@ -1063,12 +2328,28 @@ fn add_variable_73(address_space: &mut AddressSpace) { let name = "InvocationCreationTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 2383); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2380), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2380), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_74(address_space: &mut AddressSpace) { @@ -1076,12 +2357,28 @@ fn add_variable_74(address_space: &mut AddressSpace) { let name = "LastTransitionTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 2384); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2380), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2380), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_75(address_space: &mut AddressSpace) { @@ -1089,12 +2386,28 @@ fn add_variable_75(address_space: &mut AddressSpace) { let name = "LastMethodCall"; let value = Variant::Empty; let node_id = NodeId::new(0, 2385); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2380), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2380), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_76(address_space: &mut AddressSpace) { @@ -1102,12 +2415,28 @@ fn add_variable_76(address_space: &mut AddressSpace) { let name = "LastMethodSessionId"; let value = Variant::Empty; let node_id = NodeId::new(0, 2386); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2380), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2380), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_77(address_space: &mut AddressSpace) { @@ -1115,12 +2444,35 @@ fn add_variable_77(address_space: &mut AddressSpace) { let name = "LastMethodInputArguments"; let value = Variant::Empty; let node_id = NodeId::new(0, 2387); - let node = Variable::new_data_value(&node_id, name, name, DataTypeId::Boolean, Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2380), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + DataTypeId::Boolean, + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2380), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_78(address_space: &mut AddressSpace) { @@ -1128,12 +2480,35 @@ fn add_variable_78(address_space: &mut AddressSpace) { let name = "LastMethodOutputArguments"; let value = Variant::Empty; let node_id = NodeId::new(0, 2388); - let node = Variable::new_data_value(&node_id, name, name, DataTypeId::Boolean, Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2380), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + DataTypeId::Boolean, + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2380), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_79(address_space: &mut AddressSpace) { @@ -1141,12 +2516,28 @@ fn add_variable_79(address_space: &mut AddressSpace) { let name = "LastMethodCallTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 2389); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2380), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2380), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_80(address_space: &mut AddressSpace) { @@ -1154,12 +2545,28 @@ fn add_variable_80(address_space: &mut AddressSpace) { let name = "LastMethodReturnStatus"; let value = Variant::Empty; let node_id = NodeId::new(0, 2390); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 299), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2380), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 299), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2380), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_81(address_space: &mut AddressSpace) { @@ -1167,12 +2574,28 @@ fn add_variable_81(address_space: &mut AddressSpace) { let name = "CreateSessionId"; let value = Variant::Empty; let node_id = NodeId::new(0, 15384); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15383), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15383), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_82(address_space: &mut AddressSpace) { @@ -1180,12 +2603,28 @@ fn add_variable_82(address_space: &mut AddressSpace) { let name = "CreateClientName"; let value = Variant::Empty; let node_id = NodeId::new(0, 15385); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15383), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15383), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_83(address_space: &mut AddressSpace) { @@ -1193,12 +2632,28 @@ fn add_variable_83(address_space: &mut AddressSpace) { let name = "InvocationCreationTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 15386); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15383), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15383), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_84(address_space: &mut AddressSpace) { @@ -1206,12 +2661,28 @@ fn add_variable_84(address_space: &mut AddressSpace) { let name = "LastTransitionTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 15387); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15383), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15383), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_85(address_space: &mut AddressSpace) { @@ -1219,12 +2690,28 @@ fn add_variable_85(address_space: &mut AddressSpace) { let name = "LastMethodCall"; let value = Variant::Empty; let node_id = NodeId::new(0, 15388); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15383), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15383), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_86(address_space: &mut AddressSpace) { @@ -1232,12 +2719,28 @@ fn add_variable_86(address_space: &mut AddressSpace) { let name = "LastMethodSessionId"; let value = Variant::Empty; let node_id = NodeId::new(0, 15389); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15383), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15383), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_87(address_space: &mut AddressSpace) { @@ -1245,12 +2748,35 @@ fn add_variable_87(address_space: &mut AddressSpace) { let name = "LastMethodInputArguments"; let value = Variant::Empty; let node_id = NodeId::new(0, 15390); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15383), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15383), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_88(address_space: &mut AddressSpace) { @@ -1258,12 +2784,35 @@ fn add_variable_88(address_space: &mut AddressSpace) { let name = "LastMethodOutputArguments"; let value = Variant::Empty; let node_id = NodeId::new(0, 15391); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15383), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15383), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_89(address_space: &mut AddressSpace) { @@ -1271,12 +2820,35 @@ fn add_variable_89(address_space: &mut AddressSpace) { let name = "LastMethodInputValues"; let value = Variant::Empty; let node_id = NodeId::new(0, 15392); - let node = Variable::new_data_value(&node_id, name, name, DataTypeId::Boolean, Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15383), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + DataTypeId::Boolean, + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15383), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_90(address_space: &mut AddressSpace) { @@ -1284,12 +2856,35 @@ fn add_variable_90(address_space: &mut AddressSpace) { let name = "LastMethodOutputValues"; let value = Variant::Empty; let node_id = NodeId::new(0, 15393); - let node = Variable::new_data_value(&node_id, name, name, DataTypeId::Boolean, Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15383), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + DataTypeId::Boolean, + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15383), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_91(address_space: &mut AddressSpace) { @@ -1297,12 +2892,28 @@ fn add_variable_91(address_space: &mut AddressSpace) { let name = "LastMethodCallTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 15394); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15383), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15383), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_92(address_space: &mut AddressSpace) { @@ -1310,12 +2921,28 @@ fn add_variable_92(address_space: &mut AddressSpace) { let name = "LastMethodReturnStatus"; let value = Variant::Empty; let node_id = NodeId::new(0, 15395); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15383), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15383), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variabletype_93(address_space: &mut AddressSpace) { @@ -1323,19 +2950,66 @@ fn add_variabletype_93(address_space: &mut AddressSpace) { let name = "ProgramDiagnosticType"; let node_id = NodeId::new(0, 2380); let node = VariableType::new(&node_id, name, name, NodeId::new(0, 894), false, -1); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2381), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2382), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2383), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2384), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2385), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2386), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2387), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2388), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2389), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2390), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2381), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2382), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2383), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2384), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2385), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2386), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2387), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2388), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2389), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2390), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variabletype_94(address_space: &mut AddressSpace) { @@ -1343,21 +3017,76 @@ fn add_variabletype_94(address_space: &mut AddressSpace) { let name = "ProgramDiagnostic2Type"; let node_id = NodeId::new(0, 15383); let node = VariableType::new(&node_id, name, name, NodeId::new(0, 15396), false, -1); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15384), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15385), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15386), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15387), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15388), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15389), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15390), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15391), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15392), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15393), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15394), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15395), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15384), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15385), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15386), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15387), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15388), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15389), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15390), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15391), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15392), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15393), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15394), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15395), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_95(address_space: &mut AddressSpace) { @@ -1365,10 +3094,21 @@ fn add_method_95(address_space: &mut AddressSpace) { let name = "Start"; let node_id = NodeId::new(0, 2426); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11508), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2391), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11508), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2391), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_96(address_space: &mut AddressSpace) { @@ -1376,10 +3116,21 @@ fn add_method_96(address_space: &mut AddressSpace) { let name = "Suspend"; let node_id = NodeId::new(0, 2427); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11508), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2391), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11508), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2391), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_97(address_space: &mut AddressSpace) { @@ -1387,10 +3138,21 @@ fn add_method_97(address_space: &mut AddressSpace) { let name = "Resume"; let node_id = NodeId::new(0, 2428); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11508), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2391), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11508), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2391), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_98(address_space: &mut AddressSpace) { @@ -1398,10 +3160,21 @@ fn add_method_98(address_space: &mut AddressSpace) { let name = "Halt"; let node_id = NodeId::new(0, 2429); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11508), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2391), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11508), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2391), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_99(address_space: &mut AddressSpace) { @@ -1409,9 +3182,19 @@ fn add_method_99(address_space: &mut AddressSpace) { let name = "Reset"; let node_id = NodeId::new(0, 2430); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11508), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2391), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11508), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2391), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } - diff --git a/server/src/address_space/generated/nodeset_11.rs b/server/src/address_space/generated/nodeset_11.rs index 4c667c181..085e4dcff 100644 --- a/server/src/address_space/generated/nodeset_11.rs +++ b/server/src/address_space/generated/nodeset_11.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.NodeSet2.Part11.xml by tools/schema/gen_address_space.js // DO NOT EDIT THIS FILE @@ -9,8 +9,11 @@ use std::{convert::TryFrom, str::FromStr}; #[allow(unused_imports)] use crate::{ - address_space::{EventNotifier, types::*}, - prelude::{DataTypeId, ExtensionObject, LocalizedText, NodeId, ReferenceTypeId, service_types::Argument, UAString, Variant, VariantTypeId} + address_space::{types::*, EventNotifier}, + prelude::{ + service_types::Argument, DataTypeId, ExtensionObject, LocalizedText, NodeId, + ReferenceTypeId, UAString, Variant, VariantTypeId, + }, }; #[allow(unused_variables)] @@ -116,26 +119,101 @@ fn add_object_1(address_space: &mut AddressSpace) { let name = "HistoryServerCapabilities"; let node_id = NodeId::new(0, 11192); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11193), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11242), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11273), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11274), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11196), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11197), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11198), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11199), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11200), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11281), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11282), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11283), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11502), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11275), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11201), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19091), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2268), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - (&NodeId::new(0, 2330), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11193), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11242), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11273), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11274), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11196), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11197), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11198), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11199), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11200), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11281), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11282), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11283), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11502), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11275), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11201), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19091), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2268), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 2330), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_2(address_space: &mut AddressSpace) { @@ -143,10 +221,21 @@ fn add_object_2(address_space: &mut AddressSpace) { let name = "AggregateFunctions"; let node_id = NodeId::new(0, 11201); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 61), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11192), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 61), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11192), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_3(address_space: &mut AddressSpace) { @@ -154,15 +243,46 @@ fn add_object_3(address_space: &mut AddressSpace) { let name = "AggregateConfiguration"; let node_id = NodeId::new(0, 3059); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11168), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11169), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11170), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11171), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11187), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2318), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11168), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11169), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11170), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11171), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11187), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2318), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_4(address_space: &mut AddressSpace) { @@ -170,11 +290,26 @@ fn add_object_4(address_space: &mut AddressSpace) { let name = "AggregateFunctions"; let node_id = NodeId::new(0, 11876); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 61), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2318), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 61), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2318), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_5(address_space: &mut AddressSpace) { @@ -182,11 +317,26 @@ fn add_object_5(address_space: &mut AddressSpace) { let name = "HA Configuration"; let node_id = NodeId::new(0, 11202); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11203), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 11208), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2318), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11203), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11208), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2318), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_6(address_space: &mut AddressSpace) { @@ -194,14 +344,41 @@ fn add_object_6(address_space: &mut AddressSpace) { let name = "AggregateConfiguration"; let node_id = NodeId::new(0, 11203); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11204), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11205), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11206), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11207), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11187), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11202), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11204), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11205), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11206), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11207), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11187), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11202), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_7(address_space: &mut AddressSpace) { @@ -209,11 +386,26 @@ fn add_object_7(address_space: &mut AddressSpace) { let name = "AggregateFunctions"; let node_id = NodeId::new(0, 11172); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 61), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2330), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 61), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2330), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_8(address_space: &mut AddressSpace) { @@ -221,11 +413,26 @@ fn add_object_8(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 893); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 891), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8244), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 891), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8244), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_9(address_space: &mut AddressSpace) { @@ -233,11 +440,26 @@ fn add_object_9(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 892); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 891), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8879), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 891), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8879), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_10(address_space: &mut AddressSpace) { @@ -245,10 +467,21 @@ fn add_object_10(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15382); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 891), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 891), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_objecttype_11(address_space: &mut AddressSpace) { @@ -256,20 +489,71 @@ fn add_objecttype_11(address_space: &mut AddressSpace) { let name = "HistoricalDataConfigurationType"; let node_id = NodeId::new(0, 2318); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 3059), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 11876), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2323), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2324), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2325), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2326), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2327), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2328), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11499), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11500), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19092), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 3059), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11876), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2323), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2324), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2325), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2326), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2327), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2328), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11499), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11500), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19092), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_12(address_space: &mut AddressSpace) { @@ -277,25 +561,96 @@ fn add_objecttype_12(address_space: &mut AddressSpace) { let name = "HistoryServerCapabilitiesType"; let node_id = NodeId::new(0, 2330); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2331), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2332), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11268), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11269), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2334), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2335), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2336), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2337), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2338), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11278), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11279), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11280), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11501), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11270), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11172), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19094), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2331), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2332), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11268), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11269), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2334), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2335), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2336), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2337), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2338), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11278), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11279), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11280), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11501), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11270), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11172), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19094), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_13(address_space: &mut AddressSpace) { @@ -303,14 +658,41 @@ fn add_objecttype_13(address_space: &mut AddressSpace) { let name = "AuditHistoryEventUpdateEventType"; let node_id = NodeId::new(0, 2999); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 3025), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 3028), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 3003), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 3029), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 3030), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2104), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 3025), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3028), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3003), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3029), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3030), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2104), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_14(address_space: &mut AddressSpace) { @@ -318,13 +700,36 @@ fn add_objecttype_14(address_space: &mut AddressSpace) { let name = "AuditHistoryValueUpdateEventType"; let node_id = NodeId::new(0, 3006); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 3026), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 3031), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 3032), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 3033), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2104), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 3026), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3031), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3032), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3033), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2104), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_15(address_space: &mut AddressSpace) { @@ -332,12 +737,31 @@ fn add_objecttype_15(address_space: &mut AddressSpace) { let name = "AuditHistoryAnnotationUpdateEventType"; let node_id = NodeId::new(0, 19095); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19293), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19294), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19295), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2104), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19293), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19294), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19295), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2104), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_16(address_space: &mut AddressSpace) { @@ -345,10 +769,21 @@ fn add_objecttype_16(address_space: &mut AddressSpace) { let name = "AuditHistoryDeleteEventType"; let node_id = NodeId::new(0, 3012); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 3027), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2104), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 3027), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2104), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_17(address_space: &mut AddressSpace) { @@ -356,13 +791,36 @@ fn add_objecttype_17(address_space: &mut AddressSpace) { let name = "AuditHistoryRawModifyDeleteEventType"; let node_id = NodeId::new(0, 3014); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 3015), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 3016), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 3017), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 3034), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 3012), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 3015), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3016), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3017), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3034), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3012), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_18(address_space: &mut AddressSpace) { @@ -370,11 +828,26 @@ fn add_objecttype_18(address_space: &mut AddressSpace) { let name = "AuditHistoryAtTimeDeleteEventType"; let node_id = NodeId::new(0, 3019); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 3020), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 3021), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 3012), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 3020), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3021), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3012), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_19(address_space: &mut AddressSpace) { @@ -382,11 +855,26 @@ fn add_objecttype_19(address_space: &mut AddressSpace) { let name = "AuditHistoryEventDeleteEventType"; let node_id = NodeId::new(0, 3022); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 3023), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 3024), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 3012), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 3023), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3024), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3012), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_datatype_20(address_space: &mut AddressSpace) { @@ -394,9 +882,14 @@ fn add_datatype_20(address_space: &mut AddressSpace) { let name = "Annotation"; let node_id = NodeId::new(0, 891); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_21(address_space: &mut AddressSpace) { @@ -404,20 +897,43 @@ fn add_datatype_21(address_space: &mut AddressSpace) { let name = "ExceptionDeviationFormat"; let node_id = NodeId::new(0, 890); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 7614), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 29), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 7614), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 29), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_referencetype_22(address_space: &mut AddressSpace) { // ReferenceType let name = "HasHistoricalConfiguration"; let node_id = NodeId::new(0, 56); - let node = ReferenceType::new(&node_id, name, name, Some(LocalizedText::new("", "HistoricalConfigurationOf")), false, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 44), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let node = ReferenceType::new( + &node_id, + name, + name, + Some(LocalizedText::new("", "HistoricalConfigurationOf")), + false, + false, + ); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 44), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_variable_23(address_space: &mut AddressSpace) { @@ -426,10 +942,21 @@ fn add_variable_23(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11193); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11192), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11192), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_24(address_space: &mut AddressSpace) { @@ -438,10 +965,21 @@ fn add_variable_24(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11242); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11192), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11192), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_25(address_space: &mut AddressSpace) { @@ -450,10 +988,21 @@ fn add_variable_25(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11273); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11192), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11192), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_26(address_space: &mut AddressSpace) { @@ -462,10 +1011,21 @@ fn add_variable_26(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11274); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11192), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11192), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_27(address_space: &mut AddressSpace) { @@ -474,10 +1034,21 @@ fn add_variable_27(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11196); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11192), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11192), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_28(address_space: &mut AddressSpace) { @@ -486,10 +1057,21 @@ fn add_variable_28(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11197); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11192), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11192), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_29(address_space: &mut AddressSpace) { @@ -498,10 +1080,21 @@ fn add_variable_29(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11198); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11192), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11192), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_30(address_space: &mut AddressSpace) { @@ -510,10 +1103,21 @@ fn add_variable_30(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11199); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11192), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11192), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_31(address_space: &mut AddressSpace) { @@ -522,10 +1126,21 @@ fn add_variable_31(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11200); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11192), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11192), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_32(address_space: &mut AddressSpace) { @@ -534,10 +1149,21 @@ fn add_variable_32(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11281); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11192), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11192), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_33(address_space: &mut AddressSpace) { @@ -546,10 +1172,21 @@ fn add_variable_33(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11282); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11192), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11192), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_34(address_space: &mut AddressSpace) { @@ -558,10 +1195,21 @@ fn add_variable_34(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11283); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11192), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11192), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_35(address_space: &mut AddressSpace) { @@ -570,10 +1218,21 @@ fn add_variable_35(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11502); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11192), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11192), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_36(address_space: &mut AddressSpace) { @@ -582,10 +1241,21 @@ fn add_variable_36(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11275); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11192), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11192), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_37(address_space: &mut AddressSpace) { @@ -594,10 +1264,21 @@ fn add_variable_37(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19091); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11192), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11192), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_38(address_space: &mut AddressSpace) { @@ -605,10 +1286,23 @@ fn add_variable_38(address_space: &mut AddressSpace) { let name = "Annotations"; let value = Variant::Empty; let node_id = NodeId::new(0, 11214); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 891), Some(-2), None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 891), + Some(-2), + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + )]), + ); } fn add_variable_39(address_space: &mut AddressSpace) { @@ -617,11 +1311,26 @@ fn add_variable_39(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11168); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 3059), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3059), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_40(address_space: &mut AddressSpace) { @@ -630,11 +1339,26 @@ fn add_variable_40(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11169); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 3), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 3059), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3059), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_41(address_space: &mut AddressSpace) { @@ -643,11 +1367,26 @@ fn add_variable_41(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11170); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 3), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 3059), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3059), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_42(address_space: &mut AddressSpace) { @@ -656,11 +1395,26 @@ fn add_variable_42(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11171); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 3059), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3059), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_43(address_space: &mut AddressSpace) { @@ -669,11 +1423,26 @@ fn add_variable_43(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2323); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2318), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2318), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_44(address_space: &mut AddressSpace) { @@ -681,12 +1450,28 @@ fn add_variable_44(address_space: &mut AddressSpace) { let name = "Definition"; let value = Variant::Empty; let node_id = NodeId::new(0, 2324); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2318), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2318), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_45(address_space: &mut AddressSpace) { @@ -694,12 +1479,28 @@ fn add_variable_45(address_space: &mut AddressSpace) { let name = "MaxTimeInterval"; let value = Variant::Empty; let node_id = NodeId::new(0, 2325); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2318), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2318), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_46(address_space: &mut AddressSpace) { @@ -707,12 +1508,28 @@ fn add_variable_46(address_space: &mut AddressSpace) { let name = "MinTimeInterval"; let value = Variant::Empty; let node_id = NodeId::new(0, 2326); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2318), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2318), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_47(address_space: &mut AddressSpace) { @@ -720,12 +1537,28 @@ fn add_variable_47(address_space: &mut AddressSpace) { let name = "ExceptionDeviation"; let value = Variant::Empty; let node_id = NodeId::new(0, 2327); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2318), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2318), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_48(address_space: &mut AddressSpace) { @@ -733,12 +1566,28 @@ fn add_variable_48(address_space: &mut AddressSpace) { let name = "ExceptionDeviationFormat"; let value = Variant::Empty; let node_id = NodeId::new(0, 2328); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 890), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2318), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 890), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2318), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_49(address_space: &mut AddressSpace) { @@ -746,12 +1595,28 @@ fn add_variable_49(address_space: &mut AddressSpace) { let name = "StartOfArchive"; let value = Variant::Empty; let node_id = NodeId::new(0, 11499); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2318), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2318), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_50(address_space: &mut AddressSpace) { @@ -759,12 +1624,28 @@ fn add_variable_50(address_space: &mut AddressSpace) { let name = "StartOfOnlineArchive"; let value = Variant::Empty; let node_id = NodeId::new(0, 11500); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2318), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2318), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_51(address_space: &mut AddressSpace) { @@ -773,11 +1654,26 @@ fn add_variable_51(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19092); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2318), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2318), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_52(address_space: &mut AddressSpace) { @@ -786,10 +1682,21 @@ fn add_variable_52(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11204); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11203), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11203), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_53(address_space: &mut AddressSpace) { @@ -798,10 +1705,21 @@ fn add_variable_53(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11205); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 3), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11203), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11203), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_54(address_space: &mut AddressSpace) { @@ -810,10 +1728,21 @@ fn add_variable_54(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11206); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 3), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11203), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11203), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_55(address_space: &mut AddressSpace) { @@ -822,10 +1751,21 @@ fn add_variable_55(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11207); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11203), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11203), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_56(address_space: &mut AddressSpace) { @@ -834,10 +1774,21 @@ fn add_variable_56(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11208); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11202), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11202), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_57(address_space: &mut AddressSpace) { @@ -845,10 +1796,23 @@ fn add_variable_57(address_space: &mut AddressSpace) { let name = "HistoricalEventFilter"; let value = Variant::Empty; let node_id = NodeId::new(0, 11215); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 725), Some(-2), None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 725), + Some(-2), + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + )]), + ); } fn add_variable_58(address_space: &mut AddressSpace) { @@ -857,11 +1821,26 @@ fn add_variable_58(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2331); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2330), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2330), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_59(address_space: &mut AddressSpace) { @@ -870,11 +1849,26 @@ fn add_variable_59(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2332); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2330), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2330), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_60(address_space: &mut AddressSpace) { @@ -883,11 +1877,26 @@ fn add_variable_60(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11268); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2330), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2330), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_61(address_space: &mut AddressSpace) { @@ -896,11 +1905,26 @@ fn add_variable_61(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11269); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2330), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2330), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_62(address_space: &mut AddressSpace) { @@ -909,11 +1933,26 @@ fn add_variable_62(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2334); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2330), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2330), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_63(address_space: &mut AddressSpace) { @@ -922,11 +1961,26 @@ fn add_variable_63(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2335); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2330), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2330), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_64(address_space: &mut AddressSpace) { @@ -935,11 +1989,26 @@ fn add_variable_64(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2336); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2330), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2330), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_65(address_space: &mut AddressSpace) { @@ -948,11 +2017,26 @@ fn add_variable_65(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2337); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2330), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2330), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_66(address_space: &mut AddressSpace) { @@ -961,11 +2045,26 @@ fn add_variable_66(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2338); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2330), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2330), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_67(address_space: &mut AddressSpace) { @@ -974,11 +2073,26 @@ fn add_variable_67(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11278); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2330), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2330), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_68(address_space: &mut AddressSpace) { @@ -987,11 +2101,26 @@ fn add_variable_68(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11279); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2330), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2330), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_69(address_space: &mut AddressSpace) { @@ -1000,11 +2129,26 @@ fn add_variable_69(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11280); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2330), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2330), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_70(address_space: &mut AddressSpace) { @@ -1013,11 +2157,26 @@ fn add_variable_70(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11501); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2330), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2330), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_71(address_space: &mut AddressSpace) { @@ -1026,11 +2185,26 @@ fn add_variable_71(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11270); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2330), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2330), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_72(address_space: &mut AddressSpace) { @@ -1039,11 +2213,26 @@ fn add_variable_72(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19094); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2330), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2330), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_73(address_space: &mut AddressSpace) { @@ -1051,12 +2240,28 @@ fn add_variable_73(address_space: &mut AddressSpace) { let name = "UpdatedNode"; let value = Variant::Empty; let node_id = NodeId::new(0, 3025); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2999), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2999), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_74(address_space: &mut AddressSpace) { @@ -1064,12 +2269,35 @@ fn add_variable_74(address_space: &mut AddressSpace) { let name = "PerformInsertReplace"; let value = Variant::Empty; let node_id = NodeId::new(0, 3028); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11293), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2999), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 11293), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2999), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_75(address_space: &mut AddressSpace) { @@ -1077,12 +2305,28 @@ fn add_variable_75(address_space: &mut AddressSpace) { let name = "Filter"; let value = Variant::Empty; let node_id = NodeId::new(0, 3003); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 725), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2999), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 725), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2999), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_76(address_space: &mut AddressSpace) { @@ -1090,12 +2334,35 @@ fn add_variable_76(address_space: &mut AddressSpace) { let name = "NewValues"; let value = Variant::Empty; let node_id = NodeId::new(0, 3029); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 920), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2999), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 920), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2999), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_77(address_space: &mut AddressSpace) { @@ -1103,12 +2370,35 @@ fn add_variable_77(address_space: &mut AddressSpace) { let name = "OldValues"; let value = Variant::Empty; let node_id = NodeId::new(0, 3030); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 920), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2999), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 920), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2999), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_78(address_space: &mut AddressSpace) { @@ -1116,12 +2406,28 @@ fn add_variable_78(address_space: &mut AddressSpace) { let name = "UpdatedNode"; let value = Variant::Empty; let node_id = NodeId::new(0, 3026); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 3006), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3006), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_79(address_space: &mut AddressSpace) { @@ -1129,12 +2435,35 @@ fn add_variable_79(address_space: &mut AddressSpace) { let name = "PerformInsertReplace"; let value = Variant::Empty; let node_id = NodeId::new(0, 3031); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11293), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 3006), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 11293), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3006), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_80(address_space: &mut AddressSpace) { @@ -1142,12 +2471,35 @@ fn add_variable_80(address_space: &mut AddressSpace) { let name = "NewValues"; let value = Variant::Empty; let node_id = NodeId::new(0, 3032); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 23), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 3006), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 23), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3006), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_81(address_space: &mut AddressSpace) { @@ -1155,12 +2507,35 @@ fn add_variable_81(address_space: &mut AddressSpace) { let name = "OldValues"; let value = Variant::Empty; let node_id = NodeId::new(0, 3033); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 23), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 3006), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 23), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3006), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_82(address_space: &mut AddressSpace) { @@ -1168,12 +2543,35 @@ fn add_variable_82(address_space: &mut AddressSpace) { let name = "PerformInsertReplace"; let value = Variant::Empty; let node_id = NodeId::new(0, 19293); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11293), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19095), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 11293), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19095), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_83(address_space: &mut AddressSpace) { @@ -1181,12 +2579,35 @@ fn add_variable_83(address_space: &mut AddressSpace) { let name = "NewValues"; let value = Variant::Empty; let node_id = NodeId::new(0, 19294); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 23), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19095), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 23), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19095), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_84(address_space: &mut AddressSpace) { @@ -1194,12 +2615,35 @@ fn add_variable_84(address_space: &mut AddressSpace) { let name = "OldValues"; let value = Variant::Empty; let node_id = NodeId::new(0, 19295); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 23), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19095), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 23), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19095), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_85(address_space: &mut AddressSpace) { @@ -1207,12 +2651,28 @@ fn add_variable_85(address_space: &mut AddressSpace) { let name = "UpdatedNode"; let value = Variant::Empty; let node_id = NodeId::new(0, 3027); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 3012), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3012), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_86(address_space: &mut AddressSpace) { @@ -1221,11 +2681,26 @@ fn add_variable_86(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 3015); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 3014), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3014), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_87(address_space: &mut AddressSpace) { @@ -1233,12 +2708,28 @@ fn add_variable_87(address_space: &mut AddressSpace) { let name = "StartTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 3016); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 3014), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3014), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_88(address_space: &mut AddressSpace) { @@ -1246,12 +2737,28 @@ fn add_variable_88(address_space: &mut AddressSpace) { let name = "EndTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 3017); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 3014), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3014), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_89(address_space: &mut AddressSpace) { @@ -1259,12 +2766,35 @@ fn add_variable_89(address_space: &mut AddressSpace) { let name = "OldValues"; let value = Variant::Empty; let node_id = NodeId::new(0, 3034); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 23), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 3014), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 23), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3014), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_90(address_space: &mut AddressSpace) { @@ -1272,12 +2802,35 @@ fn add_variable_90(address_space: &mut AddressSpace) { let name = "ReqTimes"; let value = Variant::Empty; let node_id = NodeId::new(0, 3020); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 3019), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 294), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3019), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_91(address_space: &mut AddressSpace) { @@ -1285,12 +2838,35 @@ fn add_variable_91(address_space: &mut AddressSpace) { let name = "OldValues"; let value = Variant::Empty; let node_id = NodeId::new(0, 3021); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 23), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 3019), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 23), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3019), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_92(address_space: &mut AddressSpace) { @@ -1298,12 +2874,35 @@ fn add_variable_92(address_space: &mut AddressSpace) { let name = "EventIds"; let value = Variant::Empty; let node_id = NodeId::new(0, 3023); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 3022), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 15), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3022), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_93(address_space: &mut AddressSpace) { @@ -1311,12 +2910,28 @@ fn add_variable_93(address_space: &mut AddressSpace) { let name = "OldValues"; let value = Variant::Empty; let node_id = NodeId::new(0, 3024); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 920), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 3022), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 920), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3022), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_94(address_space: &mut AddressSpace) { @@ -1324,11 +2939,33 @@ fn add_variable_94(address_space: &mut AddressSpace) { let name = "EnumStrings"; let value = Variant::Empty; let node_id = NodeId::new(0, 7614); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 890), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 21), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 890), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } - diff --git a/server/src/address_space/generated/nodeset_12_1.rs b/server/src/address_space/generated/nodeset_12_1.rs index 25fd32488..9596ccd68 100644 --- a/server/src/address_space/generated/nodeset_12_1.rs +++ b/server/src/address_space/generated/nodeset_12_1.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.NodeSet2.Part12.xml by tools/schema/gen_address_space.js // DO NOT EDIT THIS FILE @@ -9,8 +9,11 @@ use std::{convert::TryFrom, str::FromStr}; #[allow(unused_imports)] use crate::{ - address_space::{EventNotifier, types::*}, - prelude::{DataTypeId, ExtensionObject, LocalizedText, NodeId, ReferenceTypeId, service_types::Argument, UAString, Variant, VariantTypeId} + address_space::{types::*, EventNotifier}, + prelude::{ + service_types::Argument, DataTypeId, ExtensionObject, LocalizedText, NodeId, + ReferenceTypeId, UAString, Variant, VariantTypeId, + }, }; #[allow(unused_variables)] @@ -122,23 +125,86 @@ fn add_object_1(address_space: &mut AddressSpace) { let name = "TrustList"; let node_id = NodeId::new(0, 13599); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13600), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13601), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13602), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13603), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13605), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 13608), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 13610), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 13613), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 13615), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 13618), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 13620), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13621), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12522), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12555), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13600), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13601), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13602), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13603), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13605), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13608), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13610), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13613), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13615), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13618), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13620), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13621), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12522), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12555), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_2(address_space: &mut AddressSpace) { @@ -146,41 +212,176 @@ fn add_object_2(address_space: &mut AddressSpace) { let name = "CertificateExpired"; let node_id = NodeId::new(0, 19450); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19451), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19452), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19453), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19454), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19455), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19456), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19458), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19459), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19460), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19461), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19464), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19465), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19466), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19467), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19476), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19478), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19480), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19482), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19483), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19484), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19485), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19487), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19505), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19509), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19518), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 20101), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 20138), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 20139), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 20141), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 20142), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13225), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12555), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19451), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19452), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19453), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19454), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19455), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19456), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19458), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19459), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19460), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19461), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19464), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19465), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19466), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19467), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19476), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19478), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19480), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19482), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19483), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19484), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19485), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19487), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19505), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19509), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19518), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20101), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20138), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20139), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20141), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20142), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13225), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12555), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_3(address_space: &mut AddressSpace) { @@ -188,41 +389,176 @@ fn add_object_3(address_space: &mut AddressSpace) { let name = "TrustListOutOfDate"; let node_id = NodeId::new(0, 20143); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 20144), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 20145), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 20146), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 20147), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 20148), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 20149), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 20151), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 20152), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 20153), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 20154), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 20157), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 20158), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 20159), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 20160), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 20169), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 20171), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 20173), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 20175), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 20176), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 20177), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 20178), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 20180), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 20198), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 20202), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 20211), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 20249), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 20286), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 20287), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 20288), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 20289), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19297), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12555), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 20144), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20145), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20146), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20147), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20148), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20149), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20151), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20152), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20153), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20154), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20157), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20158), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20159), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20160), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20169), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20171), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20173), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20175), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20176), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20177), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20178), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20180), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20198), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20202), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20211), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20249), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20286), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20287), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20288), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20289), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19297), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12555), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_4(address_space: &mut AddressSpace) { @@ -230,13 +566,36 @@ fn add_object_4(address_space: &mut AddressSpace) { let name = "DefaultApplicationGroup"; let node_id = NodeId::new(0, 13814); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13815), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 13847), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 12555), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13813), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13815), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13847), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12555), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13813), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_5(address_space: &mut AddressSpace) { @@ -244,23 +603,86 @@ fn add_object_5(address_space: &mut AddressSpace) { let name = "TrustList"; let node_id = NodeId::new(0, 13815); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13816), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13817), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13818), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13819), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13821), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 13824), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 13826), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 13829), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 13831), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 13834), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 13836), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13837), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12522), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13814), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13816), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13817), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13818), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13819), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13821), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13824), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13826), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13829), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13831), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13834), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13836), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13837), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12522), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13814), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_6(address_space: &mut AddressSpace) { @@ -268,13 +690,36 @@ fn add_object_6(address_space: &mut AddressSpace) { let name = "DefaultHttpsGroup"; let node_id = NodeId::new(0, 13848); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13849), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 13881), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 12555), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13813), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13849), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13881), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12555), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13813), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_7(address_space: &mut AddressSpace) { @@ -282,23 +727,86 @@ fn add_object_7(address_space: &mut AddressSpace) { let name = "TrustList"; let node_id = NodeId::new(0, 13849); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13850), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13851), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13852), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13853), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13855), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 13858), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 13860), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 13863), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 13865), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 13868), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 13870), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13871), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12522), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13848), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13850), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13851), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13852), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13853), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13855), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13858), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13860), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13863), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13865), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13868), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13870), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13871), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12522), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13848), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_8(address_space: &mut AddressSpace) { @@ -306,13 +814,36 @@ fn add_object_8(address_space: &mut AddressSpace) { let name = "DefaultUserTokenGroup"; let node_id = NodeId::new(0, 13882); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13883), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 13915), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 12555), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13813), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13883), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13915), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12555), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13813), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_9(address_space: &mut AddressSpace) { @@ -320,23 +851,86 @@ fn add_object_9(address_space: &mut AddressSpace) { let name = "TrustList"; let node_id = NodeId::new(0, 13883); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13884), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13885), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13886), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13887), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13889), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 13892), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 13894), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 13897), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 13899), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 13902), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 13904), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13905), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12522), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13882), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13884), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13885), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13886), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13887), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13889), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13892), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13894), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13897), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13899), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13902), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13904), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13905), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12522), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13882), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_10(address_space: &mut AddressSpace) { @@ -344,13 +938,36 @@ fn add_object_10(address_space: &mut AddressSpace) { let name = ""; let node_id = NodeId::new(0, 13916); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13917), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 13949), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 12555), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11508), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13813), &ReferenceTypeId::Organizes, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13917), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13949), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12555), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11508), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13813), + &ReferenceTypeId::Organizes, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_11(address_space: &mut AddressSpace) { @@ -358,23 +975,86 @@ fn add_object_11(address_space: &mut AddressSpace) { let name = "TrustList"; let node_id = NodeId::new(0, 13917); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13918), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13919), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13920), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13921), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13923), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 13926), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 13928), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 13931), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 13933), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 13936), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 13938), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13939), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12522), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13916), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13918), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13919), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13920), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13921), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13923), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13926), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13928), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13931), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13933), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13936), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13938), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13939), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12522), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13916), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_12(address_space: &mut AddressSpace) { @@ -382,12 +1062,31 @@ fn add_object_12(address_space: &mut AddressSpace) { let name = "CertificateGroups"; let node_id = NodeId::new(0, 13950); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13951), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 13813), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12581), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13951), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13813), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12581), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_13(address_space: &mut AddressSpace) { @@ -395,13 +1094,36 @@ fn add_object_13(address_space: &mut AddressSpace) { let name = "DefaultApplicationGroup"; let node_id = NodeId::new(0, 13951); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13952), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 13984), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 12555), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13950), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13952), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13984), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12555), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13950), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_14(address_space: &mut AddressSpace) { @@ -409,23 +1131,86 @@ fn add_object_14(address_space: &mut AddressSpace) { let name = "TrustList"; let node_id = NodeId::new(0, 13952); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13953), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13954), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13955), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13956), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13958), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 13961), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 13963), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 13966), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 13968), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 13971), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 13973), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13974), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12522), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13951), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13953), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13954), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13955), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13956), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13958), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13961), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13963), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13966), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13968), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13971), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13973), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13974), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12522), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13951), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_15(address_space: &mut AddressSpace) { @@ -433,13 +1218,36 @@ fn add_object_15(address_space: &mut AddressSpace) { let name = ""; let node_id = NodeId::new(0, 17511); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17512), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17513), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 18001), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11508), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17496), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17512), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17513), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18001), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11508), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17496), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_16(address_space: &mut AddressSpace) { @@ -447,10 +1255,21 @@ fn add_object_16(address_space: &mut AddressSpace) { let name = "KeyCredentialConfiguration"; let node_id = NodeId::new(0, 18155); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12637), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - (&NodeId::new(0, 17496), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12637), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 17496), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_17(address_space: &mut AddressSpace) { @@ -458,10 +1277,21 @@ fn add_object_17(address_space: &mut AddressSpace) { let name = "AuthorizationServices"; let node_id = NodeId::new(0, 17732); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12637), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - (&NodeId::new(0, 61), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12637), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 61), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_18(address_space: &mut AddressSpace) { @@ -469,11 +1299,26 @@ fn add_object_18(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 12680); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12554), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 12681), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12554), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 12681), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_19(address_space: &mut AddressSpace) { @@ -481,11 +1326,26 @@ fn add_object_19(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 12676); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12554), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 12677), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12554), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 12677), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_20(address_space: &mut AddressSpace) { @@ -493,10 +1353,21 @@ fn add_object_20(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15044); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12554), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12554), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_objecttype_21(address_space: &mut AddressSpace) { @@ -504,15 +1375,46 @@ fn add_objecttype_21(address_space: &mut AddressSpace) { let name = "TrustListType"; let node_id = NodeId::new(0, 12522); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12542), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19296), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 12543), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12546), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12548), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12550), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 11575), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12542), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19296), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12543), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12546), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12548), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12550), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11575), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_22(address_space: &mut AddressSpace) { @@ -520,12 +1422,31 @@ fn add_objecttype_22(address_space: &mut AddressSpace) { let name = "TrustListOutOfDateAlarmType"; let node_id = NodeId::new(0, 19297); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19446), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19447), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19448), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11753), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19446), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19447), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19448), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11753), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_23(address_space: &mut AddressSpace) { @@ -533,14 +1454,41 @@ fn add_objecttype_23(address_space: &mut AddressSpace) { let name = "CertificateGroupType"; let node_id = NodeId::new(0, 12555); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13599), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 13631), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19450), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 20143), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 23526), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13599), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13631), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19450), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20143), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 23526), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_24(address_space: &mut AddressSpace) { @@ -548,13 +1496,36 @@ fn add_objecttype_24(address_space: &mut AddressSpace) { let name = "CertificateGroupFolderType"; let node_id = NodeId::new(0, 13813); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13814), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 13848), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 13882), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 13916), &ReferenceTypeId::Organizes, ReferenceDirection::Forward), - (&NodeId::new(0, 61), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13814), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13848), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13882), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13916), + &ReferenceTypeId::Organizes, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 61), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_25(address_space: &mut AddressSpace) { @@ -562,9 +1533,14 @@ fn add_objecttype_25(address_space: &mut AddressSpace) { let name = "CertificateType"; let node_id = NodeId::new(0, 12556); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 58), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 58), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_26(address_space: &mut AddressSpace) { @@ -572,9 +1548,14 @@ fn add_objecttype_26(address_space: &mut AddressSpace) { let name = "ApplicationCertificateType"; let node_id = NodeId::new(0, 12557); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12556), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 12556), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_27(address_space: &mut AddressSpace) { @@ -582,9 +1563,14 @@ fn add_objecttype_27(address_space: &mut AddressSpace) { let name = "HttpsCertificateType"; let node_id = NodeId::new(0, 12558); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12556), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 12556), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_28(address_space: &mut AddressSpace) { @@ -592,9 +1578,14 @@ fn add_objecttype_28(address_space: &mut AddressSpace) { let name = "UserCredentialCertificateType"; let node_id = NodeId::new(0, 15181); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12556), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 12556), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_29(address_space: &mut AddressSpace) { @@ -602,9 +1593,14 @@ fn add_objecttype_29(address_space: &mut AddressSpace) { let name = "RsaMinApplicationCertificateType"; let node_id = NodeId::new(0, 12559); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12557), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 12557), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_30(address_space: &mut AddressSpace) { @@ -612,9 +1608,14 @@ fn add_objecttype_30(address_space: &mut AddressSpace) { let name = "RsaSha256ApplicationCertificateType"; let node_id = NodeId::new(0, 12560); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12557), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 12557), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_31(address_space: &mut AddressSpace) { @@ -622,9 +1623,14 @@ fn add_objecttype_31(address_space: &mut AddressSpace) { let name = "EccApplicationCertificateType"; let node_id = NodeId::new(0, 23537); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12557), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 12557), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_32(address_space: &mut AddressSpace) { @@ -632,9 +1638,14 @@ fn add_objecttype_32(address_space: &mut AddressSpace) { let name = "EccNistP256ApplicationCertificateType"; let node_id = NodeId::new(0, 23538); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 23537), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 23537), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_33(address_space: &mut AddressSpace) { @@ -642,9 +1653,14 @@ fn add_objecttype_33(address_space: &mut AddressSpace) { let name = "EccNistP384ApplicationCertificateType"; let node_id = NodeId::new(0, 23539); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 23537), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 23537), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_34(address_space: &mut AddressSpace) { @@ -652,9 +1668,14 @@ fn add_objecttype_34(address_space: &mut AddressSpace) { let name = "EccBrainpoolP256r1ApplicationCertificateType"; let node_id = NodeId::new(0, 23540); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 23537), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 23537), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_35(address_space: &mut AddressSpace) { @@ -662,9 +1683,14 @@ fn add_objecttype_35(address_space: &mut AddressSpace) { let name = "EccBrainpoolP384r1ApplicationCertificateType"; let node_id = NodeId::new(0, 23541); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 23537), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 23537), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_36(address_space: &mut AddressSpace) { @@ -672,9 +1698,14 @@ fn add_objecttype_36(address_space: &mut AddressSpace) { let name = "EccCurve25519ApplicationCertificateType"; let node_id = NodeId::new(0, 23542); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 23537), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 23537), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_37(address_space: &mut AddressSpace) { @@ -682,9 +1713,14 @@ fn add_objecttype_37(address_space: &mut AddressSpace) { let name = "EccCurve448ApplicationCertificateType"; let node_id = NodeId::new(0, 23543); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 23537), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 23537), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_38(address_space: &mut AddressSpace) { @@ -692,9 +1728,14 @@ fn add_objecttype_38(address_space: &mut AddressSpace) { let name = "TrustListUpdatedAuditEventType"; let node_id = NodeId::new(0, 12561); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2127), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2127), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_39(address_space: &mut AddressSpace) { @@ -702,18 +1743,61 @@ fn add_objecttype_39(address_space: &mut AddressSpace) { let name = "ServerConfigurationType"; let node_id = NodeId::new(0, 12581); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13950), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12708), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 12583), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 12584), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 12585), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 12616), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12734), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12731), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12775), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13950), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12708), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12583), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12584), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12585), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12616), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12734), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12731), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12775), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_40(address_space: &mut AddressSpace) { @@ -721,11 +1805,26 @@ fn add_objecttype_40(address_space: &mut AddressSpace) { let name = "CertificateUpdatedAuditEventType"; let node_id = NodeId::new(0, 12620); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13735), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13736), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2127), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13735), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13736), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2127), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_41(address_space: &mut AddressSpace) { @@ -733,11 +1832,26 @@ fn add_objecttype_41(address_space: &mut AddressSpace) { let name = "KeyCredentialConfigurationFolderType"; let node_id = NodeId::new(0, 17496); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17511), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17522), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 61), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17511), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17522), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 61), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_42(address_space: &mut AddressSpace) { @@ -745,16 +1859,51 @@ fn add_objecttype_42(address_space: &mut AddressSpace) { let name = "KeyCredentialConfigurationType"; let node_id = NodeId::new(0, 18001); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18069), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 18165), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 18004), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 18005), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17534), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 18006), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 18008), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 18069), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18165), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18004), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18005), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17534), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18006), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18008), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_43(address_space: &mut AddressSpace) { @@ -762,10 +1911,21 @@ fn add_objecttype_43(address_space: &mut AddressSpace) { let name = "KeyCredentialAuditEventType"; let node_id = NodeId::new(0, 18011); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18028), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2127), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 18028), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2127), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_44(address_space: &mut AddressSpace) { @@ -773,9 +1933,14 @@ fn add_objecttype_44(address_space: &mut AddressSpace) { let name = "KeyCredentialUpdatedAuditEventType"; let node_id = NodeId::new(0, 18029); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18011), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 18011), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_45(address_space: &mut AddressSpace) { @@ -783,9 +1948,14 @@ fn add_objecttype_45(address_space: &mut AddressSpace) { let name = "KeyCredentialDeletedAuditEventType"; let node_id = NodeId::new(0, 18047); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18011), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 18011), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_46(address_space: &mut AddressSpace) { @@ -793,12 +1963,31 @@ fn add_objecttype_46(address_space: &mut AddressSpace) { let name = "AuthorizationServiceConfigurationType"; let node_id = NodeId::new(0, 17852); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18072), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17860), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 18073), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 18072), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17860), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18073), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_datatype_47(address_space: &mut AddressSpace) { @@ -806,10 +1995,21 @@ fn add_datatype_47(address_space: &mut AddressSpace) { let name = "TrustListMasks"; let node_id = NodeId::new(0, 12552); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12553), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 29), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12553), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 29), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_datatype_48(address_space: &mut AddressSpace) { @@ -817,9 +2017,14 @@ fn add_datatype_48(address_space: &mut AddressSpace) { let name = "TrustListDataType"; let node_id = NodeId::new(0, 12554); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_variable_49(address_space: &mut AddressSpace) { @@ -827,12 +2032,28 @@ fn add_variable_49(address_space: &mut AddressSpace) { let name = "LastUpdateTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 12542); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12522), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12522), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_50(address_space: &mut AddressSpace) { @@ -840,100 +2061,208 @@ fn add_variable_50(address_space: &mut AddressSpace) { let name = "UpdateFrequency"; let value = Variant::Empty; let node_id = NodeId::new(0, 19296); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12522), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12522), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_51(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Masks"), - data_type: NodeId::new(0, 7), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Masks"), + data_type: NodeId::new(0, 7), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 12544); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12543), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12543), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_52(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("FileHandle"), - data_type: NodeId::new(0, 7), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("FileHandle"), + data_type: NodeId::new(0, 7), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 12545); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12543), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12543), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_53(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("FileHandle"), - data_type: NodeId::new(0, 7), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("FileHandle"), + data_type: NodeId::new(0, 7), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 12705); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12546), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12546), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_54(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("ApplyChangesRequired"), - data_type: NodeId::new(0, 1), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("ApplyChangesRequired"), + data_type: NodeId::new(0, 1), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 12547); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12546), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12546), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_55(address_space: &mut AddressSpace) { @@ -941,29 +2270,56 @@ fn add_variable_55(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("Certificate"), data_type: NodeId::new(0, 15), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("IsTrustedCertificate"), data_type: NodeId::new(0, 1), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 12549); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12548), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12548), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_56(address_space: &mut AddressSpace) { @@ -971,29 +2327,56 @@ fn add_variable_56(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("Thumbprint"), data_type: NodeId::new(0, 12), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("IsTrustedCertificate"), data_type: NodeId::new(0, 1), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 12551); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12550), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12550), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_57(address_space: &mut AddressSpace) { @@ -1001,12 +2384,35 @@ fn add_variable_57(address_space: &mut AddressSpace) { let name = "EnumValues"; let value = Variant::Empty; let node_id = NodeId::new(0, 12553); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7594), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12552), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 7594), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12552), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_58(address_space: &mut AddressSpace) { @@ -1014,12 +2420,28 @@ fn add_variable_58(address_space: &mut AddressSpace) { let name = "TrustListId"; let value = Variant::Empty; let node_id = NodeId::new(0, 19446); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19297), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19297), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_59(address_space: &mut AddressSpace) { @@ -1027,12 +2449,28 @@ fn add_variable_59(address_space: &mut AddressSpace) { let name = "LastUpdateTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 19447); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19297), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19297), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_60(address_space: &mut AddressSpace) { @@ -1040,12 +2478,28 @@ fn add_variable_60(address_space: &mut AddressSpace) { let name = "UpdateFrequency"; let value = Variant::Empty; let node_id = NodeId::new(0, 19448); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19297), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19297), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_61(address_space: &mut AddressSpace) { @@ -1054,11 +2508,26 @@ fn add_variable_61(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 13600); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 9), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13599), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13599), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_62(address_space: &mut AddressSpace) { @@ -1067,11 +2536,26 @@ fn add_variable_62(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 13601); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13599), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13599), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_63(address_space: &mut AddressSpace) { @@ -1080,11 +2564,26 @@ fn add_variable_63(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 13602); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13599), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13599), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_64(address_space: &mut AddressSpace) { @@ -1093,77 +2592,161 @@ fn add_variable_64(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 13603); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13599), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13599), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_65(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Mode"), - data_type: NodeId::new(0, 3), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Mode"), + data_type: NodeId::new(0, 3), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 13606); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13605), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13605), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_66(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("FileHandle"), - data_type: NodeId::new(0, 7), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("FileHandle"), + data_type: NodeId::new(0, 7), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 13607); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13605), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13605), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_67(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("FileHandle"), - data_type: NodeId::new(0, 7), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("FileHandle"), + data_type: NodeId::new(0, 7), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 13609); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13608), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13608), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_68(address_space: &mut AddressSpace) { @@ -1171,51 +2754,101 @@ fn add_variable_68(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("FileHandle"), data_type: NodeId::new(0, 7), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("Length"), data_type: NodeId::new(0, 6), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 13611); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13610), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13610), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_69(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Data"), - data_type: NodeId::new(0, 15), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Data"), + data_type: NodeId::new(0, 15), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 13612); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13610), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13610), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_70(address_space: &mut AddressSpace) { @@ -1223,73 +2856,146 @@ fn add_variable_70(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("FileHandle"), data_type: NodeId::new(0, 7), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("Data"), data_type: NodeId::new(0, 15), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 13614); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13613), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13613), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_71(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("FileHandle"), - data_type: NodeId::new(0, 7), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("FileHandle"), + data_type: NodeId::new(0, 7), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 13616); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13615), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13615), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_72(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Position"), - data_type: NodeId::new(0, 9), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Position"), + data_type: NodeId::new(0, 9), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 13617); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13615), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13615), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_73(address_space: &mut AddressSpace) { @@ -1297,29 +3003,56 @@ fn add_variable_73(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("FileHandle"), data_type: NodeId::new(0, 7), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("Position"), data_type: NodeId::new(0, 9), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 13619); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13618), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13618), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_74(address_space: &mut AddressSpace) { @@ -1327,56 +3060,118 @@ fn add_variable_74(address_space: &mut AddressSpace) { let name = "LastUpdateTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 13620); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13599), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13599), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_75(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Masks"), - data_type: NodeId::new(0, 7), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Masks"), + data_type: NodeId::new(0, 7), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 13622); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13621), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13621), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_76(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("FileHandle"), - data_type: NodeId::new(0, 7), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("FileHandle"), + data_type: NodeId::new(0, 7), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 13623); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13621), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13621), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_77(address_space: &mut AddressSpace) { @@ -1384,12 +3179,35 @@ fn add_variable_77(address_space: &mut AddressSpace) { let name = "CertificateTypes"; let value = Variant::Empty; let node_id = NodeId::new(0, 13631); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12555), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 17), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12555), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_78(address_space: &mut AddressSpace) { @@ -1397,12 +3215,28 @@ fn add_variable_78(address_space: &mut AddressSpace) { let name = "EventId"; let value = Variant::Empty; let node_id = NodeId::new(0, 19451); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19450), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19450), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_79(address_space: &mut AddressSpace) { @@ -1410,12 +3244,28 @@ fn add_variable_79(address_space: &mut AddressSpace) { let name = "EventType"; let value = Variant::Empty; let node_id = NodeId::new(0, 19452); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19450), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19450), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_80(address_space: &mut AddressSpace) { @@ -1423,12 +3273,28 @@ fn add_variable_80(address_space: &mut AddressSpace) { let name = "SourceNode"; let value = Variant::Empty; let node_id = NodeId::new(0, 19453); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19450), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19450), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_81(address_space: &mut AddressSpace) { @@ -1436,12 +3302,28 @@ fn add_variable_81(address_space: &mut AddressSpace) { let name = "SourceName"; let value = Variant::Empty; let node_id = NodeId::new(0, 19454); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19450), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19450), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_82(address_space: &mut AddressSpace) { @@ -1449,12 +3331,28 @@ fn add_variable_82(address_space: &mut AddressSpace) { let name = "Time"; let value = Variant::Empty; let node_id = NodeId::new(0, 19455); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19450), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19450), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_83(address_space: &mut AddressSpace) { @@ -1462,12 +3360,28 @@ fn add_variable_83(address_space: &mut AddressSpace) { let name = "ReceiveTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 19456); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19450), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19450), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_84(address_space: &mut AddressSpace) { @@ -1475,12 +3389,28 @@ fn add_variable_84(address_space: &mut AddressSpace) { let name = "Message"; let value = Variant::Empty; let node_id = NodeId::new(0, 19458); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19450), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19450), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_85(address_space: &mut AddressSpace) { @@ -1489,11 +3419,26 @@ fn add_variable_85(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19459); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19450), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19450), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_86(address_space: &mut AddressSpace) { @@ -1501,12 +3446,28 @@ fn add_variable_86(address_space: &mut AddressSpace) { let name = "ConditionClassId"; let value = Variant::Empty; let node_id = NodeId::new(0, 19460); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19450), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19450), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_87(address_space: &mut AddressSpace) { @@ -1514,12 +3475,28 @@ fn add_variable_87(address_space: &mut AddressSpace) { let name = "ConditionClassName"; let value = Variant::Empty; let node_id = NodeId::new(0, 19461); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19450), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19450), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_88(address_space: &mut AddressSpace) { @@ -1527,12 +3504,28 @@ fn add_variable_88(address_space: &mut AddressSpace) { let name = "ConditionName"; let value = Variant::Empty; let node_id = NodeId::new(0, 19464); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19450), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19450), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_89(address_space: &mut AddressSpace) { @@ -1540,12 +3533,28 @@ fn add_variable_89(address_space: &mut AddressSpace) { let name = "BranchId"; let value = Variant::Empty; let node_id = NodeId::new(0, 19465); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19450), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19450), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_90(address_space: &mut AddressSpace) { @@ -1554,11 +3563,26 @@ fn add_variable_90(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19466); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19450), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19450), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_91(address_space: &mut AddressSpace) { @@ -1566,13 +3590,33 @@ fn add_variable_91(address_space: &mut AddressSpace) { let name = "EnabledState"; let value = Variant::Empty; let node_id = NodeId::new(0, 19467); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19468), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 8995), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19450), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19468), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8995), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19450), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_92(address_space: &mut AddressSpace) { @@ -1581,11 +3625,26 @@ fn add_variable_92(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19468); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19467), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19467), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_93(address_space: &mut AddressSpace) { @@ -1593,13 +3652,33 @@ fn add_variable_93(address_space: &mut AddressSpace) { let name = "Quality"; let value = Variant::Empty; let node_id = NodeId::new(0, 19476); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19477), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 9002), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19450), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19477), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9002), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19450), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_94(address_space: &mut AddressSpace) { @@ -1607,12 +3686,28 @@ fn add_variable_94(address_space: &mut AddressSpace) { let name = "SourceTimestamp"; let value = Variant::Empty; let node_id = NodeId::new(0, 19477); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19476), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19476), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_95(address_space: &mut AddressSpace) { @@ -1621,12 +3716,31 @@ fn add_variable_95(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19478); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19479), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 9002), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19450), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19479), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9002), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19450), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_96(address_space: &mut AddressSpace) { @@ -1634,12 +3748,28 @@ fn add_variable_96(address_space: &mut AddressSpace) { let name = "SourceTimestamp"; let value = Variant::Empty; let node_id = NodeId::new(0, 19479); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19478), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19478), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_97(address_space: &mut AddressSpace) { @@ -1647,13 +3777,33 @@ fn add_variable_97(address_space: &mut AddressSpace) { let name = "Comment"; let value = Variant::Empty; let node_id = NodeId::new(0, 19480); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19481), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 9002), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19450), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19481), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9002), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19450), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_98(address_space: &mut AddressSpace) { @@ -1661,12 +3811,28 @@ fn add_variable_98(address_space: &mut AddressSpace) { let name = "SourceTimestamp"; let value = Variant::Empty; let node_id = NodeId::new(0, 19481); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19480), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19480), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_99(address_space: &mut AddressSpace) { @@ -1674,12 +3840,28 @@ fn add_variable_99(address_space: &mut AddressSpace) { let name = "ClientUserId"; let value = Variant::Empty; let node_id = NodeId::new(0, 19482); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19450), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19450), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_100(address_space: &mut AddressSpace) { @@ -1687,28 +3869,54 @@ fn add_variable_100(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("EventId"), data_type: NodeId::new(0, 15), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("Comment"), data_type: NodeId::new(0, 21), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 19486); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19485), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19485), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } - diff --git a/server/src/address_space/generated/nodeset_12_2.rs b/server/src/address_space/generated/nodeset_12_2.rs index fece9f17d..0a6e70c51 100644 --- a/server/src/address_space/generated/nodeset_12_2.rs +++ b/server/src/address_space/generated/nodeset_12_2.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.NodeSet2.Part12.xml by tools/schema/gen_address_space.js // DO NOT EDIT THIS FILE @@ -9,8 +9,11 @@ use std::{convert::TryFrom, str::FromStr}; #[allow(unused_imports)] use crate::{ - address_space::{EventNotifier, types::*}, - prelude::{DataTypeId, ExtensionObject, LocalizedText, NodeId, ReferenceTypeId, service_types::Argument, UAString, Variant, VariantTypeId} + address_space::{types::*, EventNotifier}, + prelude::{ + service_types::Argument, DataTypeId, ExtensionObject, LocalizedText, NodeId, + ReferenceTypeId, UAString, Variant, VariantTypeId, + }, }; #[allow(unused_variables)] @@ -122,13 +125,33 @@ fn add_variable_1(address_space: &mut AddressSpace) { let name = "AckedState"; let value = Variant::Empty; let node_id = NodeId::new(0, 19487); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19488), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 8995), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19450), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19488), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8995), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19450), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_2(address_space: &mut AddressSpace) { @@ -137,11 +160,26 @@ fn add_variable_2(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19488); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19487), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19487), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_3(address_space: &mut AddressSpace) { @@ -149,29 +187,56 @@ fn add_variable_3(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("EventId"), data_type: NodeId::new(0, 15), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("Comment"), data_type: NodeId::new(0, 21), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 19506); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19505), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19505), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_4(address_space: &mut AddressSpace) { @@ -179,13 +244,33 @@ fn add_variable_4(address_space: &mut AddressSpace) { let name = "ActiveState"; let value = Variant::Empty; let node_id = NodeId::new(0, 19509); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19510), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 8995), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19450), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19510), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8995), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19450), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_5(address_space: &mut AddressSpace) { @@ -194,11 +279,26 @@ fn add_variable_5(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19510); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19509), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19509), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_6(address_space: &mut AddressSpace) { @@ -206,12 +306,28 @@ fn add_variable_6(address_space: &mut AddressSpace) { let name = "InputNode"; let value = Variant::Empty; let node_id = NodeId::new(0, 19518); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19450), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19450), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_7(address_space: &mut AddressSpace) { @@ -220,11 +336,26 @@ fn add_variable_7(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 20101); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19450), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19450), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_8(address_space: &mut AddressSpace) { @@ -232,12 +363,28 @@ fn add_variable_8(address_space: &mut AddressSpace) { let name = "NormalState"; let value = Variant::Empty; let node_id = NodeId::new(0, 20138); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19450), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19450), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_9(address_space: &mut AddressSpace) { @@ -245,12 +392,28 @@ fn add_variable_9(address_space: &mut AddressSpace) { let name = "ExpirationDate"; let value = Variant::Empty; let node_id = NodeId::new(0, 20139); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 13), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19450), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 13), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19450), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_10(address_space: &mut AddressSpace) { @@ -258,12 +421,28 @@ fn add_variable_10(address_space: &mut AddressSpace) { let name = "CertificateType"; let value = Variant::Empty; let node_id = NodeId::new(0, 20141); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19450), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19450), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_11(address_space: &mut AddressSpace) { @@ -271,12 +450,28 @@ fn add_variable_11(address_space: &mut AddressSpace) { let name = "Certificate"; let value = Variant::Empty; let node_id = NodeId::new(0, 20142); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19450), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19450), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_12(address_space: &mut AddressSpace) { @@ -284,12 +479,28 @@ fn add_variable_12(address_space: &mut AddressSpace) { let name = "EventId"; let value = Variant::Empty; let node_id = NodeId::new(0, 20144); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20143), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20143), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_13(address_space: &mut AddressSpace) { @@ -297,12 +508,28 @@ fn add_variable_13(address_space: &mut AddressSpace) { let name = "EventType"; let value = Variant::Empty; let node_id = NodeId::new(0, 20145); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20143), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20143), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_14(address_space: &mut AddressSpace) { @@ -310,12 +537,28 @@ fn add_variable_14(address_space: &mut AddressSpace) { let name = "SourceNode"; let value = Variant::Empty; let node_id = NodeId::new(0, 20146); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20143), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20143), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_15(address_space: &mut AddressSpace) { @@ -323,12 +566,28 @@ fn add_variable_15(address_space: &mut AddressSpace) { let name = "SourceName"; let value = Variant::Empty; let node_id = NodeId::new(0, 20147); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20143), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20143), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_16(address_space: &mut AddressSpace) { @@ -336,12 +595,28 @@ fn add_variable_16(address_space: &mut AddressSpace) { let name = "Time"; let value = Variant::Empty; let node_id = NodeId::new(0, 20148); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20143), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20143), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_17(address_space: &mut AddressSpace) { @@ -349,12 +624,28 @@ fn add_variable_17(address_space: &mut AddressSpace) { let name = "ReceiveTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 20149); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20143), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20143), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_18(address_space: &mut AddressSpace) { @@ -362,12 +653,28 @@ fn add_variable_18(address_space: &mut AddressSpace) { let name = "Message"; let value = Variant::Empty; let node_id = NodeId::new(0, 20151); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20143), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20143), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_19(address_space: &mut AddressSpace) { @@ -376,11 +683,26 @@ fn add_variable_19(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 20152); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20143), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20143), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_20(address_space: &mut AddressSpace) { @@ -388,12 +710,28 @@ fn add_variable_20(address_space: &mut AddressSpace) { let name = "ConditionClassId"; let value = Variant::Empty; let node_id = NodeId::new(0, 20153); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20143), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20143), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_21(address_space: &mut AddressSpace) { @@ -401,12 +739,28 @@ fn add_variable_21(address_space: &mut AddressSpace) { let name = "ConditionClassName"; let value = Variant::Empty; let node_id = NodeId::new(0, 20154); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20143), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20143), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_22(address_space: &mut AddressSpace) { @@ -414,12 +768,28 @@ fn add_variable_22(address_space: &mut AddressSpace) { let name = "ConditionName"; let value = Variant::Empty; let node_id = NodeId::new(0, 20157); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20143), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20143), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_23(address_space: &mut AddressSpace) { @@ -427,12 +797,28 @@ fn add_variable_23(address_space: &mut AddressSpace) { let name = "BranchId"; let value = Variant::Empty; let node_id = NodeId::new(0, 20158); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20143), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20143), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_24(address_space: &mut AddressSpace) { @@ -441,11 +827,26 @@ fn add_variable_24(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 20159); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20143), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20143), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_25(address_space: &mut AddressSpace) { @@ -453,13 +854,33 @@ fn add_variable_25(address_space: &mut AddressSpace) { let name = "EnabledState"; let value = Variant::Empty; let node_id = NodeId::new(0, 20160); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 20161), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 8995), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20143), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 20161), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8995), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20143), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_26(address_space: &mut AddressSpace) { @@ -468,11 +889,26 @@ fn add_variable_26(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 20161); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20160), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20160), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_27(address_space: &mut AddressSpace) { @@ -480,13 +916,33 @@ fn add_variable_27(address_space: &mut AddressSpace) { let name = "Quality"; let value = Variant::Empty; let node_id = NodeId::new(0, 20169); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 20170), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 9002), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20143), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 20170), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9002), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20143), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_28(address_space: &mut AddressSpace) { @@ -494,12 +950,28 @@ fn add_variable_28(address_space: &mut AddressSpace) { let name = "SourceTimestamp"; let value = Variant::Empty; let node_id = NodeId::new(0, 20170); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20169), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20169), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_29(address_space: &mut AddressSpace) { @@ -508,12 +980,31 @@ fn add_variable_29(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 20171); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 20172), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 9002), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20143), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 20172), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9002), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20143), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_30(address_space: &mut AddressSpace) { @@ -521,12 +1012,28 @@ fn add_variable_30(address_space: &mut AddressSpace) { let name = "SourceTimestamp"; let value = Variant::Empty; let node_id = NodeId::new(0, 20172); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20171), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20171), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_31(address_space: &mut AddressSpace) { @@ -534,13 +1041,33 @@ fn add_variable_31(address_space: &mut AddressSpace) { let name = "Comment"; let value = Variant::Empty; let node_id = NodeId::new(0, 20173); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 20174), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 9002), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20143), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 20174), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9002), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20143), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_32(address_space: &mut AddressSpace) { @@ -548,12 +1075,28 @@ fn add_variable_32(address_space: &mut AddressSpace) { let name = "SourceTimestamp"; let value = Variant::Empty; let node_id = NodeId::new(0, 20174); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20173), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20173), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_33(address_space: &mut AddressSpace) { @@ -561,12 +1104,28 @@ fn add_variable_33(address_space: &mut AddressSpace) { let name = "ClientUserId"; let value = Variant::Empty; let node_id = NodeId::new(0, 20175); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20143), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20143), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_34(address_space: &mut AddressSpace) { @@ -574,29 +1133,56 @@ fn add_variable_34(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("EventId"), data_type: NodeId::new(0, 15), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("Comment"), data_type: NodeId::new(0, 21), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 20179); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20178), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20178), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_35(address_space: &mut AddressSpace) { @@ -604,13 +1190,33 @@ fn add_variable_35(address_space: &mut AddressSpace) { let name = "AckedState"; let value = Variant::Empty; let node_id = NodeId::new(0, 20180); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 20181), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 8995), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20143), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 20181), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8995), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20143), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_36(address_space: &mut AddressSpace) { @@ -619,11 +1225,26 @@ fn add_variable_36(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 20181); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20180), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20180), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_37(address_space: &mut AddressSpace) { @@ -631,29 +1252,56 @@ fn add_variable_37(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("EventId"), data_type: NodeId::new(0, 15), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("Comment"), data_type: NodeId::new(0, 21), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 20199); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20198), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20198), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_38(address_space: &mut AddressSpace) { @@ -661,13 +1309,33 @@ fn add_variable_38(address_space: &mut AddressSpace) { let name = "ActiveState"; let value = Variant::Empty; let node_id = NodeId::new(0, 20202); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 20203), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 8995), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20143), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 20203), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8995), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20143), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_39(address_space: &mut AddressSpace) { @@ -676,11 +1344,26 @@ fn add_variable_39(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 20203); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20202), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20202), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_40(address_space: &mut AddressSpace) { @@ -688,12 +1371,28 @@ fn add_variable_40(address_space: &mut AddressSpace) { let name = "InputNode"; let value = Variant::Empty; let node_id = NodeId::new(0, 20211); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20143), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20143), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_41(address_space: &mut AddressSpace) { @@ -702,11 +1401,26 @@ fn add_variable_41(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 20249); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20143), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20143), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_42(address_space: &mut AddressSpace) { @@ -714,12 +1428,28 @@ fn add_variable_42(address_space: &mut AddressSpace) { let name = "NormalState"; let value = Variant::Empty; let node_id = NodeId::new(0, 20286); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20143), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20143), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_43(address_space: &mut AddressSpace) { @@ -727,12 +1457,28 @@ fn add_variable_43(address_space: &mut AddressSpace) { let name = "TrustListId"; let value = Variant::Empty; let node_id = NodeId::new(0, 20287); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20143), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20143), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_44(address_space: &mut AddressSpace) { @@ -740,12 +1486,28 @@ fn add_variable_44(address_space: &mut AddressSpace) { let name = "LastUpdateTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 20288); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20143), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20143), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_45(address_space: &mut AddressSpace) { @@ -753,34 +1515,73 @@ fn add_variable_45(address_space: &mut AddressSpace) { let name = "UpdateFrequency"; let value = Variant::Empty; let node_id = NodeId::new(0, 20289); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20143), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20143), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_46(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Certificates"), - data_type: NodeId::new(0, 15), - value_rank: 1, - array_dimensions: Some(vec![0]), - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Certificates"), + data_type: NodeId::new(0, 15), + value_rank: 1, + array_dimensions: Some(vec![0]), + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 23527); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 23526), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 23526), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_47(address_space: &mut AddressSpace) { @@ -789,11 +1590,26 @@ fn add_variable_47(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 13816); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 9), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13815), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13815), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_48(address_space: &mut AddressSpace) { @@ -802,11 +1618,26 @@ fn add_variable_48(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 13817); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13815), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13815), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_49(address_space: &mut AddressSpace) { @@ -815,11 +1646,26 @@ fn add_variable_49(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 13818); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13815), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13815), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_50(address_space: &mut AddressSpace) { @@ -828,77 +1674,161 @@ fn add_variable_50(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 13819); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13815), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13815), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_51(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Mode"), - data_type: NodeId::new(0, 3), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Mode"), + data_type: NodeId::new(0, 3), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 13822); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13821), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13821), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_52(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("FileHandle"), - data_type: NodeId::new(0, 7), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("FileHandle"), + data_type: NodeId::new(0, 7), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 13823); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13821), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13821), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_53(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("FileHandle"), - data_type: NodeId::new(0, 7), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("FileHandle"), + data_type: NodeId::new(0, 7), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 13825); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13824), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13824), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_54(address_space: &mut AddressSpace) { @@ -906,51 +1836,101 @@ fn add_variable_54(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("FileHandle"), data_type: NodeId::new(0, 7), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("Length"), data_type: NodeId::new(0, 6), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 13827); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13826), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13826), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_55(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Data"), - data_type: NodeId::new(0, 15), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Data"), + data_type: NodeId::new(0, 15), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 13828); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13826), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13826), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_56(address_space: &mut AddressSpace) { @@ -958,73 +1938,146 @@ fn add_variable_56(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("FileHandle"), data_type: NodeId::new(0, 7), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("Data"), data_type: NodeId::new(0, 15), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 13830); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13829), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13829), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_57(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("FileHandle"), - data_type: NodeId::new(0, 7), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("FileHandle"), + data_type: NodeId::new(0, 7), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 13832); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13831), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13831), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_58(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Position"), - data_type: NodeId::new(0, 9), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Position"), + data_type: NodeId::new(0, 9), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 13833); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13831), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13831), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_59(address_space: &mut AddressSpace) { @@ -1032,29 +2085,56 @@ fn add_variable_59(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("FileHandle"), data_type: NodeId::new(0, 7), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("Position"), data_type: NodeId::new(0, 9), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 13835); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13834), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13834), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_60(address_space: &mut AddressSpace) { @@ -1062,56 +2142,118 @@ fn add_variable_60(address_space: &mut AddressSpace) { let name = "LastUpdateTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 13836); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13815), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13815), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_61(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Masks"), - data_type: NodeId::new(0, 7), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Masks"), + data_type: NodeId::new(0, 7), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 13838); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13837), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13837), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_62(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("FileHandle"), - data_type: NodeId::new(0, 7), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("FileHandle"), + data_type: NodeId::new(0, 7), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 13839); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13837), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13837), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_63(address_space: &mut AddressSpace) { @@ -1119,12 +2261,35 @@ fn add_variable_63(address_space: &mut AddressSpace) { let name = "CertificateTypes"; let value = Variant::Empty; let node_id = NodeId::new(0, 13847); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13814), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 17), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13814), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_64(address_space: &mut AddressSpace) { @@ -1133,11 +2298,26 @@ fn add_variable_64(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 13850); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 9), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13849), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13849), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_65(address_space: &mut AddressSpace) { @@ -1146,11 +2326,26 @@ fn add_variable_65(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 13851); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13849), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13849), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_66(address_space: &mut AddressSpace) { @@ -1159,11 +2354,26 @@ fn add_variable_66(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 13852); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13849), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13849), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_67(address_space: &mut AddressSpace) { @@ -1172,77 +2382,161 @@ fn add_variable_67(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 13853); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13849), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13849), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_68(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Mode"), - data_type: NodeId::new(0, 3), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Mode"), + data_type: NodeId::new(0, 3), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 13856); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13855), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13855), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_69(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("FileHandle"), - data_type: NodeId::new(0, 7), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("FileHandle"), + data_type: NodeId::new(0, 7), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 13857); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13855), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13855), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_70(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("FileHandle"), - data_type: NodeId::new(0, 7), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("FileHandle"), + data_type: NodeId::new(0, 7), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 13859); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13858), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13858), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_71(address_space: &mut AddressSpace) { @@ -1250,51 +2544,101 @@ fn add_variable_71(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("FileHandle"), data_type: NodeId::new(0, 7), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("Length"), data_type: NodeId::new(0, 6), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 13861); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13860), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13860), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_72(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Data"), - data_type: NodeId::new(0, 15), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Data"), + data_type: NodeId::new(0, 15), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 13862); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13860), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13860), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_73(address_space: &mut AddressSpace) { @@ -1302,73 +2646,146 @@ fn add_variable_73(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("FileHandle"), data_type: NodeId::new(0, 7), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("Data"), data_type: NodeId::new(0, 15), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 13864); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13863), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13863), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_74(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("FileHandle"), - data_type: NodeId::new(0, 7), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("FileHandle"), + data_type: NodeId::new(0, 7), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 13866); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13865), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13865), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_75(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Position"), - data_type: NodeId::new(0, 9), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Position"), + data_type: NodeId::new(0, 9), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 13867); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13865), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13865), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_76(address_space: &mut AddressSpace) { @@ -1376,29 +2793,56 @@ fn add_variable_76(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("FileHandle"), data_type: NodeId::new(0, 7), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("Position"), data_type: NodeId::new(0, 9), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 13869); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13868), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13868), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_77(address_space: &mut AddressSpace) { @@ -1406,56 +2850,118 @@ fn add_variable_77(address_space: &mut AddressSpace) { let name = "LastUpdateTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 13870); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13849), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13849), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_78(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Masks"), - data_type: NodeId::new(0, 7), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Masks"), + data_type: NodeId::new(0, 7), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 13872); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13871), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13871), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_79(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("FileHandle"), - data_type: NodeId::new(0, 7), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("FileHandle"), + data_type: NodeId::new(0, 7), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 13873); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13871), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13871), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_80(address_space: &mut AddressSpace) { @@ -1463,12 +2969,35 @@ fn add_variable_80(address_space: &mut AddressSpace) { let name = "CertificateTypes"; let value = Variant::Empty; let node_id = NodeId::new(0, 13881); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13848), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 17), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13848), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_81(address_space: &mut AddressSpace) { @@ -1477,11 +3006,26 @@ fn add_variable_81(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 13884); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 9), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13883), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13883), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_82(address_space: &mut AddressSpace) { @@ -1490,11 +3034,26 @@ fn add_variable_82(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 13885); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13883), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13883), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_83(address_space: &mut AddressSpace) { @@ -1503,11 +3062,26 @@ fn add_variable_83(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 13886); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13883), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13883), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_84(address_space: &mut AddressSpace) { @@ -1516,77 +3090,161 @@ fn add_variable_84(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 13887); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13883), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13883), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_85(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Mode"), - data_type: NodeId::new(0, 3), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Mode"), + data_type: NodeId::new(0, 3), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 13890); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13889), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13889), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_86(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("FileHandle"), - data_type: NodeId::new(0, 7), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("FileHandle"), + data_type: NodeId::new(0, 7), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 13891); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13889), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13889), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_87(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("FileHandle"), - data_type: NodeId::new(0, 7), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("FileHandle"), + data_type: NodeId::new(0, 7), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 13893); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13892), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13892), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_88(address_space: &mut AddressSpace) { @@ -1594,51 +3252,101 @@ fn add_variable_88(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("FileHandle"), data_type: NodeId::new(0, 7), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("Length"), data_type: NodeId::new(0, 6), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 13895); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13894), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13894), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_89(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Data"), - data_type: NodeId::new(0, 15), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Data"), + data_type: NodeId::new(0, 15), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 13896); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13894), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13894), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_90(address_space: &mut AddressSpace) { @@ -1646,73 +3354,146 @@ fn add_variable_90(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("FileHandle"), data_type: NodeId::new(0, 7), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("Data"), data_type: NodeId::new(0, 15), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 13898); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13897), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13897), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_91(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("FileHandle"), - data_type: NodeId::new(0, 7), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("FileHandle"), + data_type: NodeId::new(0, 7), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 13900); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13899), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13899), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_92(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Position"), - data_type: NodeId::new(0, 9), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Position"), + data_type: NodeId::new(0, 9), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 13901); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13899), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13899), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_93(address_space: &mut AddressSpace) { @@ -1720,29 +3501,56 @@ fn add_variable_93(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("FileHandle"), data_type: NodeId::new(0, 7), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("Position"), data_type: NodeId::new(0, 9), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 13903); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13902), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13902), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_94(address_space: &mut AddressSpace) { @@ -1750,56 +3558,118 @@ fn add_variable_94(address_space: &mut AddressSpace) { let name = "LastUpdateTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 13904); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13883), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13883), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_95(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Masks"), - data_type: NodeId::new(0, 7), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Masks"), + data_type: NodeId::new(0, 7), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 13906); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13905), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13905), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_96(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("FileHandle"), - data_type: NodeId::new(0, 7), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("FileHandle"), + data_type: NodeId::new(0, 7), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 13907); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13905), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13905), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_97(address_space: &mut AddressSpace) { @@ -1807,12 +3677,35 @@ fn add_variable_97(address_space: &mut AddressSpace) { let name = "CertificateTypes"; let value = Variant::Empty; let node_id = NodeId::new(0, 13915); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13882), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 17), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13882), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_98(address_space: &mut AddressSpace) { @@ -1821,11 +3714,26 @@ fn add_variable_98(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 13918); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 9), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13917), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13917), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_99(address_space: &mut AddressSpace) { @@ -1834,11 +3742,26 @@ fn add_variable_99(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 13919); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13917), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13917), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_100(address_space: &mut AddressSpace) { @@ -1847,10 +3770,24 @@ fn add_variable_100(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 13920); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13917), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13917), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } - diff --git a/server/src/address_space/generated/nodeset_12_3.rs b/server/src/address_space/generated/nodeset_12_3.rs index 92d9288ef..41eabaaab 100644 --- a/server/src/address_space/generated/nodeset_12_3.rs +++ b/server/src/address_space/generated/nodeset_12_3.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.NodeSet2.Part12.xml by tools/schema/gen_address_space.js // DO NOT EDIT THIS FILE @@ -9,8 +9,11 @@ use std::{convert::TryFrom, str::FromStr}; #[allow(unused_imports)] use crate::{ - address_space::{EventNotifier, types::*}, - prelude::{DataTypeId, ExtensionObject, LocalizedText, NodeId, ReferenceTypeId, service_types::Argument, UAString, Variant, VariantTypeId} + address_space::{types::*, EventNotifier}, + prelude::{ + service_types::Argument, DataTypeId, ExtensionObject, LocalizedText, NodeId, + ReferenceTypeId, UAString, Variant, VariantTypeId, + }, }; #[allow(unused_variables)] @@ -123,77 +126,161 @@ fn add_variable_1(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 13921); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13917), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13917), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_2(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Mode"), - data_type: NodeId::new(0, 3), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Mode"), + data_type: NodeId::new(0, 3), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 13924); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13923), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13923), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_3(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("FileHandle"), - data_type: NodeId::new(0, 7), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("FileHandle"), + data_type: NodeId::new(0, 7), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 13925); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13923), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13923), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_4(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("FileHandle"), - data_type: NodeId::new(0, 7), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("FileHandle"), + data_type: NodeId::new(0, 7), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 13927); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13926), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13926), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_5(address_space: &mut AddressSpace) { @@ -201,51 +288,101 @@ fn add_variable_5(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("FileHandle"), data_type: NodeId::new(0, 7), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("Length"), data_type: NodeId::new(0, 6), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 13929); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13928), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13928), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_6(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Data"), - data_type: NodeId::new(0, 15), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Data"), + data_type: NodeId::new(0, 15), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 13930); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13928), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13928), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_7(address_space: &mut AddressSpace) { @@ -253,73 +390,146 @@ fn add_variable_7(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("FileHandle"), data_type: NodeId::new(0, 7), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("Data"), data_type: NodeId::new(0, 15), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 13932); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13931), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13931), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_8(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("FileHandle"), - data_type: NodeId::new(0, 7), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("FileHandle"), + data_type: NodeId::new(0, 7), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 13934); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13933), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13933), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_9(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Position"), - data_type: NodeId::new(0, 9), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Position"), + data_type: NodeId::new(0, 9), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 13935); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13933), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13933), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_10(address_space: &mut AddressSpace) { @@ -327,29 +537,56 @@ fn add_variable_10(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("FileHandle"), data_type: NodeId::new(0, 7), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("Position"), data_type: NodeId::new(0, 9), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 13937); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13936), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13936), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_11(address_space: &mut AddressSpace) { @@ -357,56 +594,118 @@ fn add_variable_11(address_space: &mut AddressSpace) { let name = "LastUpdateTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 13938); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13917), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13917), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_12(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Masks"), - data_type: NodeId::new(0, 7), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Masks"), + data_type: NodeId::new(0, 7), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 13940); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13939), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13939), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_13(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("FileHandle"), - data_type: NodeId::new(0, 7), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("FileHandle"), + data_type: NodeId::new(0, 7), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 13941); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13939), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13939), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_14(address_space: &mut AddressSpace) { @@ -414,12 +713,35 @@ fn add_variable_14(address_space: &mut AddressSpace) { let name = "CertificateTypes"; let value = Variant::Empty; let node_id = NodeId::new(0, 13949); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13916), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 17), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13916), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_15(address_space: &mut AddressSpace) { @@ -428,11 +750,26 @@ fn add_variable_15(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 13953); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 9), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13952), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13952), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_16(address_space: &mut AddressSpace) { @@ -441,11 +778,26 @@ fn add_variable_16(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 13954); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13952), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13952), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_17(address_space: &mut AddressSpace) { @@ -454,11 +806,26 @@ fn add_variable_17(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 13955); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13952), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13952), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_18(address_space: &mut AddressSpace) { @@ -467,77 +834,161 @@ fn add_variable_18(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 13956); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13952), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13952), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_19(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Mode"), - data_type: NodeId::new(0, 3), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Mode"), + data_type: NodeId::new(0, 3), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 13959); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13958), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13958), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_20(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("FileHandle"), - data_type: NodeId::new(0, 7), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("FileHandle"), + data_type: NodeId::new(0, 7), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 13960); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13958), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13958), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_21(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("FileHandle"), - data_type: NodeId::new(0, 7), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("FileHandle"), + data_type: NodeId::new(0, 7), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 13962); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13961), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13961), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_22(address_space: &mut AddressSpace) { @@ -545,51 +996,101 @@ fn add_variable_22(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("FileHandle"), data_type: NodeId::new(0, 7), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("Length"), data_type: NodeId::new(0, 6), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 13964); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13963), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13963), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_23(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Data"), - data_type: NodeId::new(0, 15), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Data"), + data_type: NodeId::new(0, 15), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 13965); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13963), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13963), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_24(address_space: &mut AddressSpace) { @@ -597,73 +1098,146 @@ fn add_variable_24(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("FileHandle"), data_type: NodeId::new(0, 7), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("Data"), data_type: NodeId::new(0, 15), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 13967); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13966), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13966), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_25(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("FileHandle"), - data_type: NodeId::new(0, 7), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("FileHandle"), + data_type: NodeId::new(0, 7), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 13969); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13968), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13968), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_26(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Position"), - data_type: NodeId::new(0, 9), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Position"), + data_type: NodeId::new(0, 9), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 13970); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13968), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13968), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_27(address_space: &mut AddressSpace) { @@ -671,29 +1245,56 @@ fn add_variable_27(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("FileHandle"), data_type: NodeId::new(0, 7), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("Position"), data_type: NodeId::new(0, 9), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 13972); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13971), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13971), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_28(address_space: &mut AddressSpace) { @@ -701,56 +1302,118 @@ fn add_variable_28(address_space: &mut AddressSpace) { let name = "LastUpdateTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 13973); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13952), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13952), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_29(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Masks"), - data_type: NodeId::new(0, 7), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Masks"), + data_type: NodeId::new(0, 7), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 13975); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13974), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13974), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_30(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("FileHandle"), - data_type: NodeId::new(0, 7), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("FileHandle"), + data_type: NodeId::new(0, 7), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 13976); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13974), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13974), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_31(address_space: &mut AddressSpace) { @@ -758,12 +1421,35 @@ fn add_variable_31(address_space: &mut AddressSpace) { let name = "CertificateTypes"; let value = Variant::Empty; let node_id = NodeId::new(0, 13984); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13951), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 17), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13951), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_32(address_space: &mut AddressSpace) { @@ -771,12 +1457,35 @@ fn add_variable_32(address_space: &mut AddressSpace) { let name = "ServerCapabilities"; let value = Variant::Empty; let node_id = NodeId::new(0, 12708); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12581), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 12), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12581), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_33(address_space: &mut AddressSpace) { @@ -784,12 +1493,35 @@ fn add_variable_33(address_space: &mut AddressSpace) { let name = "SupportedPrivateKeyFormats"; let value = Variant::Empty; let node_id = NodeId::new(0, 12583); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12581), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 12), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12581), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_34(address_space: &mut AddressSpace) { @@ -798,11 +1530,26 @@ fn add_variable_34(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 12584); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12581), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12581), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_35(address_space: &mut AddressSpace) { @@ -811,11 +1558,26 @@ fn add_variable_35(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 12585); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12581), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12581), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_36(address_space: &mut AddressSpace) { @@ -823,83 +1585,141 @@ fn add_variable_36(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("CertificateGroupId"), data_type: NodeId::new(0, 17), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("CertificateTypeId"), data_type: NodeId::new(0, 17), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("Certificate"), data_type: NodeId::new(0, 15), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("IssuerCertificates"), data_type: NodeId::new(0, 15), value_rank: 1, array_dimensions: Some(vec![0]), description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("PrivateKeyFormat"), data_type: NodeId::new(0, 12), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("PrivateKey"), data_type: NodeId::new(0, 15), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 12617); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12616), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12616), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_37(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("ApplyChangesRequired"), - data_type: NodeId::new(0, 1), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("ApplyChangesRequired"), + data_type: NodeId::new(0, 1), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 12618); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12616), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12616), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_38(address_space: &mut AddressSpace) { @@ -907,97 +1727,176 @@ fn add_variable_38(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("CertificateGroupId"), data_type: NodeId::new(0, 17), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("CertificateTypeId"), data_type: NodeId::new(0, 17), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("SubjectName"), data_type: NodeId::new(0, 12), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("RegeneratePrivateKey"), data_type: NodeId::new(0, 1), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("Nonce"), data_type: NodeId::new(0, 15), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 12732); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12731), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12731), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_39(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("CertificateRequest"), - data_type: NodeId::new(0, 15), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("CertificateRequest"), + data_type: NodeId::new(0, 15), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 12733); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12731), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12731), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_40(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Certificates"), - data_type: NodeId::new(0, 15), - value_rank: 1, - array_dimensions: Some(vec![0]), - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Certificates"), + data_type: NodeId::new(0, 15), + value_rank: 1, + array_dimensions: Some(vec![0]), + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 12776); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12775), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12775), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_41(address_space: &mut AddressSpace) { @@ -1005,12 +1904,28 @@ fn add_variable_41(address_space: &mut AddressSpace) { let name = "CertificateGroup"; let value = Variant::Empty; let node_id = NodeId::new(0, 13735); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12620), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12620), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_42(address_space: &mut AddressSpace) { @@ -1018,12 +1933,28 @@ fn add_variable_42(address_space: &mut AddressSpace) { let name = "CertificateType"; let value = Variant::Empty; let node_id = NodeId::new(0, 13736); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12620), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12620), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_43(address_space: &mut AddressSpace) { @@ -1031,12 +1962,28 @@ fn add_variable_43(address_space: &mut AddressSpace) { let name = "ResourceUri"; let value = Variant::Empty; let node_id = NodeId::new(0, 17512); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17511), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17511), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_44(address_space: &mut AddressSpace) { @@ -1044,12 +1991,28 @@ fn add_variable_44(address_space: &mut AddressSpace) { let name = "ProfileUri"; let value = Variant::Empty; let node_id = NodeId::new(0, 17513); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17511), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17511), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_45(address_space: &mut AddressSpace) { @@ -1057,59 +2020,111 @@ fn add_variable_45(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("ResourceUri"), data_type: NodeId::new(0, 12), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("ProfileUri"), data_type: NodeId::new(0, 12), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("EndpointUrls"), data_type: NodeId::new(0, 12), value_rank: 1, array_dimensions: Some(vec![0]), description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 17523); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17522), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17522), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_46(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("CredentialNodeId"), - data_type: NodeId::new(0, 17), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("CredentialNodeId"), + data_type: NodeId::new(0, 17), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 17524); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17522), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17522), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_47(address_space: &mut AddressSpace) { @@ -1117,12 +2132,28 @@ fn add_variable_47(address_space: &mut AddressSpace) { let name = "ResourceUri"; let value = Variant::Empty; let node_id = NodeId::new(0, 18069); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18001), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18001), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_48(address_space: &mut AddressSpace) { @@ -1130,12 +2161,28 @@ fn add_variable_48(address_space: &mut AddressSpace) { let name = "ProfileUri"; let value = Variant::Empty; let node_id = NodeId::new(0, 18165); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18001), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18001), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_49(address_space: &mut AddressSpace) { @@ -1143,12 +2190,35 @@ fn add_variable_49(address_space: &mut AddressSpace) { let name = "EndpointUrls"; let value = Variant::Empty; let node_id = NodeId::new(0, 18004); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18001), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 12), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18001), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_50(address_space: &mut AddressSpace) { @@ -1156,12 +2226,28 @@ fn add_variable_50(address_space: &mut AddressSpace) { let name = "ServiceStatus"; let value = Variant::Empty; let node_id = NodeId::new(0, 18005); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18001), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18001), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_51(address_space: &mut AddressSpace) { @@ -1169,29 +2255,56 @@ fn add_variable_51(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("CredentialId"), data_type: NodeId::new(0, 12), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("RequestedSecurityPolicyUri"), data_type: NodeId::new(0, 12), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 17535); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17534), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17534), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_52(address_space: &mut AddressSpace) { @@ -1199,29 +2312,56 @@ fn add_variable_52(address_space: &mut AddressSpace) { let name = "OutputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("PublicKey"), data_type: NodeId::new(0, 15), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("RevisedSecurityPolicyUri"), data_type: NodeId::new(0, 17), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 17536); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17534), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17534), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_53(address_space: &mut AddressSpace) { @@ -1229,45 +2369,76 @@ fn add_variable_53(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("CredentialId"), data_type: NodeId::new(0, 12), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("CredentialSecret"), data_type: NodeId::new(0, 15), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("CertificateThumbprint"), data_type: NodeId::new(0, 12), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("SecurityPolicyUri"), data_type: NodeId::new(0, 12), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 18007); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18006), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18006), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_54(address_space: &mut AddressSpace) { @@ -1275,12 +2446,28 @@ fn add_variable_54(address_space: &mut AddressSpace) { let name = "ResourceUri"; let value = Variant::Empty; let node_id = NodeId::new(0, 18028); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18011), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18011), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_55(address_space: &mut AddressSpace) { @@ -1288,12 +2475,28 @@ fn add_variable_55(address_space: &mut AddressSpace) { let name = "ServiceUri"; let value = Variant::Empty; let node_id = NodeId::new(0, 18072); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17852), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17852), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_56(address_space: &mut AddressSpace) { @@ -1301,12 +2504,28 @@ fn add_variable_56(address_space: &mut AddressSpace) { let name = "ServiceCertificate"; let value = Variant::Empty; let node_id = NodeId::new(0, 17860); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17852), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17852), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_57(address_space: &mut AddressSpace) { @@ -1314,12 +2533,28 @@ fn add_variable_57(address_space: &mut AddressSpace) { let name = "IssuerEndpointUrl"; let value = Variant::Empty; let node_id = NodeId::new(0, 18073); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17852), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17852), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_58(address_space: &mut AddressSpace) { @@ -1327,12 +2562,31 @@ fn add_method_58(address_space: &mut AddressSpace) { let name = "OpenWithMasks"; let node_id = NodeId::new(0, 12543); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12544), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 12545), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12522), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12544), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12545), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12522), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_59(address_space: &mut AddressSpace) { @@ -1340,12 +2594,31 @@ fn add_method_59(address_space: &mut AddressSpace) { let name = "CloseAndUpdate"; let node_id = NodeId::new(0, 12546); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12705), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 12547), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12522), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12705), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12547), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12522), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_60(address_space: &mut AddressSpace) { @@ -1353,11 +2626,26 @@ fn add_method_60(address_space: &mut AddressSpace) { let name = "AddCertificate"; let node_id = NodeId::new(0, 12548); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12549), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12522), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12549), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12522), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_61(address_space: &mut AddressSpace) { @@ -1365,11 +2653,26 @@ fn add_method_61(address_space: &mut AddressSpace) { let name = "RemoveCertificate"; let node_id = NodeId::new(0, 12550); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12551), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12522), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12551), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12522), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_62(address_space: &mut AddressSpace) { @@ -1377,12 +2680,31 @@ fn add_method_62(address_space: &mut AddressSpace) { let name = "Open"; let node_id = NodeId::new(0, 13605); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13606), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13607), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13599), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13606), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13607), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13599), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_63(address_space: &mut AddressSpace) { @@ -1390,11 +2712,26 @@ fn add_method_63(address_space: &mut AddressSpace) { let name = "Close"; let node_id = NodeId::new(0, 13608); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13609), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13599), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13609), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13599), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_64(address_space: &mut AddressSpace) { @@ -1402,12 +2739,31 @@ fn add_method_64(address_space: &mut AddressSpace) { let name = "Read"; let node_id = NodeId::new(0, 13610); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13611), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13612), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13599), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13611), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13612), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13599), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_65(address_space: &mut AddressSpace) { @@ -1415,11 +2771,26 @@ fn add_method_65(address_space: &mut AddressSpace) { let name = "Write"; let node_id = NodeId::new(0, 13613); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13614), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13599), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13614), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13599), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_66(address_space: &mut AddressSpace) { @@ -1427,12 +2798,31 @@ fn add_method_66(address_space: &mut AddressSpace) { let name = "GetPosition"; let node_id = NodeId::new(0, 13615); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13616), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13617), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13599), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13616), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13617), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13599), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_67(address_space: &mut AddressSpace) { @@ -1440,11 +2830,26 @@ fn add_method_67(address_space: &mut AddressSpace) { let name = "SetPosition"; let node_id = NodeId::new(0, 13618); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13619), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13599), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13619), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13599), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_68(address_space: &mut AddressSpace) { @@ -1452,12 +2857,31 @@ fn add_method_68(address_space: &mut AddressSpace) { let name = "OpenWithMasks"; let node_id = NodeId::new(0, 13621); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13622), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13623), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13599), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13622), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13623), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13599), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_69(address_space: &mut AddressSpace) { @@ -1465,10 +2889,21 @@ fn add_method_69(address_space: &mut AddressSpace) { let name = "Disable"; let node_id = NodeId::new(0, 19483); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19450), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19450), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_70(address_space: &mut AddressSpace) { @@ -1476,10 +2911,21 @@ fn add_method_70(address_space: &mut AddressSpace) { let name = "Enable"; let node_id = NodeId::new(0, 19484); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19450), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19450), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_71(address_space: &mut AddressSpace) { @@ -1487,11 +2933,26 @@ fn add_method_71(address_space: &mut AddressSpace) { let name = "AddComment"; let node_id = NodeId::new(0, 19485); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19486), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19450), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19486), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19450), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_72(address_space: &mut AddressSpace) { @@ -1499,11 +2960,26 @@ fn add_method_72(address_space: &mut AddressSpace) { let name = "Acknowledge"; let node_id = NodeId::new(0, 19505); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19506), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19450), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19506), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19450), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_73(address_space: &mut AddressSpace) { @@ -1511,10 +2987,21 @@ fn add_method_73(address_space: &mut AddressSpace) { let name = "Disable"; let node_id = NodeId::new(0, 20176); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20143), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20143), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_74(address_space: &mut AddressSpace) { @@ -1522,10 +3009,21 @@ fn add_method_74(address_space: &mut AddressSpace) { let name = "Enable"; let node_id = NodeId::new(0, 20177); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20143), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20143), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_75(address_space: &mut AddressSpace) { @@ -1533,11 +3031,26 @@ fn add_method_75(address_space: &mut AddressSpace) { let name = "AddComment"; let node_id = NodeId::new(0, 20178); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 20179), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20143), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 20179), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20143), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_76(address_space: &mut AddressSpace) { @@ -1545,11 +3058,26 @@ fn add_method_76(address_space: &mut AddressSpace) { let name = "Acknowledge"; let node_id = NodeId::new(0, 20198); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 20199), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20143), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 20199), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20143), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_77(address_space: &mut AddressSpace) { @@ -1557,11 +3085,26 @@ fn add_method_77(address_space: &mut AddressSpace) { let name = "GetRejectedList"; let node_id = NodeId::new(0, 23526); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 23527), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12555), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 23527), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12555), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_78(address_space: &mut AddressSpace) { @@ -1569,12 +3112,31 @@ fn add_method_78(address_space: &mut AddressSpace) { let name = "Open"; let node_id = NodeId::new(0, 13821); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13822), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13823), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13815), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13822), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13823), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13815), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_79(address_space: &mut AddressSpace) { @@ -1582,11 +3144,26 @@ fn add_method_79(address_space: &mut AddressSpace) { let name = "Close"; let node_id = NodeId::new(0, 13824); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13825), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13815), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13825), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13815), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_80(address_space: &mut AddressSpace) { @@ -1594,12 +3171,31 @@ fn add_method_80(address_space: &mut AddressSpace) { let name = "Read"; let node_id = NodeId::new(0, 13826); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13827), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13828), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13815), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13827), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13828), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13815), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_81(address_space: &mut AddressSpace) { @@ -1607,11 +3203,26 @@ fn add_method_81(address_space: &mut AddressSpace) { let name = "Write"; let node_id = NodeId::new(0, 13829); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13830), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13815), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13830), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13815), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_82(address_space: &mut AddressSpace) { @@ -1619,12 +3230,31 @@ fn add_method_82(address_space: &mut AddressSpace) { let name = "GetPosition"; let node_id = NodeId::new(0, 13831); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13832), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13833), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13815), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13832), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13833), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13815), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_83(address_space: &mut AddressSpace) { @@ -1632,11 +3262,26 @@ fn add_method_83(address_space: &mut AddressSpace) { let name = "SetPosition"; let node_id = NodeId::new(0, 13834); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13835), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13815), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13835), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13815), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_84(address_space: &mut AddressSpace) { @@ -1644,12 +3289,31 @@ fn add_method_84(address_space: &mut AddressSpace) { let name = "OpenWithMasks"; let node_id = NodeId::new(0, 13837); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13838), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13839), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13815), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13838), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13839), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13815), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_85(address_space: &mut AddressSpace) { @@ -1657,12 +3321,31 @@ fn add_method_85(address_space: &mut AddressSpace) { let name = "Open"; let node_id = NodeId::new(0, 13855); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13856), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13857), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13849), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13856), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13857), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13849), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_86(address_space: &mut AddressSpace) { @@ -1670,11 +3353,26 @@ fn add_method_86(address_space: &mut AddressSpace) { let name = "Close"; let node_id = NodeId::new(0, 13858); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13859), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13849), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13859), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13849), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_87(address_space: &mut AddressSpace) { @@ -1682,12 +3380,31 @@ fn add_method_87(address_space: &mut AddressSpace) { let name = "Read"; let node_id = NodeId::new(0, 13860); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13861), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13862), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13849), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13861), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13862), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13849), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_88(address_space: &mut AddressSpace) { @@ -1695,11 +3412,26 @@ fn add_method_88(address_space: &mut AddressSpace) { let name = "Write"; let node_id = NodeId::new(0, 13863); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13864), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13849), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13864), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13849), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_89(address_space: &mut AddressSpace) { @@ -1707,12 +3439,31 @@ fn add_method_89(address_space: &mut AddressSpace) { let name = "GetPosition"; let node_id = NodeId::new(0, 13865); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13866), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13867), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13849), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13866), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13867), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13849), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_90(address_space: &mut AddressSpace) { @@ -1720,11 +3471,26 @@ fn add_method_90(address_space: &mut AddressSpace) { let name = "SetPosition"; let node_id = NodeId::new(0, 13868); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13869), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13849), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13869), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13849), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_91(address_space: &mut AddressSpace) { @@ -1732,12 +3498,31 @@ fn add_method_91(address_space: &mut AddressSpace) { let name = "OpenWithMasks"; let node_id = NodeId::new(0, 13871); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13872), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13873), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13849), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13872), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13873), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13849), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_92(address_space: &mut AddressSpace) { @@ -1745,12 +3530,31 @@ fn add_method_92(address_space: &mut AddressSpace) { let name = "Open"; let node_id = NodeId::new(0, 13889); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13890), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13891), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13883), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13890), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13891), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13883), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_93(address_space: &mut AddressSpace) { @@ -1758,11 +3562,26 @@ fn add_method_93(address_space: &mut AddressSpace) { let name = "Close"; let node_id = NodeId::new(0, 13892); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13893), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13883), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13893), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13883), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_94(address_space: &mut AddressSpace) { @@ -1770,12 +3589,31 @@ fn add_method_94(address_space: &mut AddressSpace) { let name = "Read"; let node_id = NodeId::new(0, 13894); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13895), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13896), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13883), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13895), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13896), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13883), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_95(address_space: &mut AddressSpace) { @@ -1783,11 +3621,26 @@ fn add_method_95(address_space: &mut AddressSpace) { let name = "Write"; let node_id = NodeId::new(0, 13897); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13898), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13883), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13898), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13883), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_96(address_space: &mut AddressSpace) { @@ -1795,12 +3648,31 @@ fn add_method_96(address_space: &mut AddressSpace) { let name = "GetPosition"; let node_id = NodeId::new(0, 13899); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13900), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13901), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13883), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13900), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13901), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13883), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_97(address_space: &mut AddressSpace) { @@ -1808,11 +3680,26 @@ fn add_method_97(address_space: &mut AddressSpace) { let name = "SetPosition"; let node_id = NodeId::new(0, 13902); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13903), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13883), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13903), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13883), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_98(address_space: &mut AddressSpace) { @@ -1820,12 +3707,31 @@ fn add_method_98(address_space: &mut AddressSpace) { let name = "OpenWithMasks"; let node_id = NodeId::new(0, 13905); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13906), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13907), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13883), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13906), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13907), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13883), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_99(address_space: &mut AddressSpace) { @@ -1833,12 +3739,31 @@ fn add_method_99(address_space: &mut AddressSpace) { let name = "Open"; let node_id = NodeId::new(0, 13923); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13924), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13925), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13917), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13924), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13925), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13917), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_100(address_space: &mut AddressSpace) { @@ -1846,10 +3771,24 @@ fn add_method_100(address_space: &mut AddressSpace) { let name = "Close"; let node_id = NodeId::new(0, 13926); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13927), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13917), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13927), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13917), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } - diff --git a/server/src/address_space/generated/nodeset_12_4.rs b/server/src/address_space/generated/nodeset_12_4.rs index e8152b0fb..5afbaa72d 100644 --- a/server/src/address_space/generated/nodeset_12_4.rs +++ b/server/src/address_space/generated/nodeset_12_4.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.NodeSet2.Part12.xml by tools/schema/gen_address_space.js // DO NOT EDIT THIS FILE @@ -9,8 +9,11 @@ use std::{convert::TryFrom, str::FromStr}; #[allow(unused_imports)] use crate::{ - address_space::{EventNotifier, types::*}, - prelude::{DataTypeId, ExtensionObject, LocalizedText, NodeId, ReferenceTypeId, service_types::Argument, UAString, Variant, VariantTypeId} + address_space::{types::*, EventNotifier}, + prelude::{ + service_types::Argument, DataTypeId, ExtensionObject, LocalizedText, NodeId, + ReferenceTypeId, UAString, Variant, VariantTypeId, + }, }; #[allow(unused_variables)] @@ -42,12 +45,31 @@ fn add_method_1(address_space: &mut AddressSpace) { let name = "Read"; let node_id = NodeId::new(0, 13928); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13929), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13930), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13917), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13929), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13930), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13917), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_2(address_space: &mut AddressSpace) { @@ -55,11 +77,26 @@ fn add_method_2(address_space: &mut AddressSpace) { let name = "Write"; let node_id = NodeId::new(0, 13931); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13932), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13917), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13932), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13917), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_3(address_space: &mut AddressSpace) { @@ -67,12 +104,31 @@ fn add_method_3(address_space: &mut AddressSpace) { let name = "GetPosition"; let node_id = NodeId::new(0, 13933); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13934), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13935), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13917), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13934), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13935), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13917), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_4(address_space: &mut AddressSpace) { @@ -80,11 +136,26 @@ fn add_method_4(address_space: &mut AddressSpace) { let name = "SetPosition"; let node_id = NodeId::new(0, 13936); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13937), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13917), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13937), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13917), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_5(address_space: &mut AddressSpace) { @@ -92,12 +163,31 @@ fn add_method_5(address_space: &mut AddressSpace) { let name = "OpenWithMasks"; let node_id = NodeId::new(0, 13939); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13940), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13941), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13917), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13940), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13941), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13917), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_6(address_space: &mut AddressSpace) { @@ -105,12 +195,31 @@ fn add_method_6(address_space: &mut AddressSpace) { let name = "Open"; let node_id = NodeId::new(0, 13958); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13959), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13960), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13952), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13959), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13960), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13952), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_7(address_space: &mut AddressSpace) { @@ -118,11 +227,26 @@ fn add_method_7(address_space: &mut AddressSpace) { let name = "Close"; let node_id = NodeId::new(0, 13961); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13962), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13952), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13962), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13952), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_8(address_space: &mut AddressSpace) { @@ -130,12 +254,31 @@ fn add_method_8(address_space: &mut AddressSpace) { let name = "Read"; let node_id = NodeId::new(0, 13963); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13964), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13965), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13952), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13964), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13965), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13952), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_9(address_space: &mut AddressSpace) { @@ -143,11 +286,26 @@ fn add_method_9(address_space: &mut AddressSpace) { let name = "Write"; let node_id = NodeId::new(0, 13966); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13967), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13952), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13967), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13952), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_10(address_space: &mut AddressSpace) { @@ -155,12 +313,31 @@ fn add_method_10(address_space: &mut AddressSpace) { let name = "GetPosition"; let node_id = NodeId::new(0, 13968); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13969), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13970), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13952), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13969), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13970), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13952), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_11(address_space: &mut AddressSpace) { @@ -168,11 +345,26 @@ fn add_method_11(address_space: &mut AddressSpace) { let name = "SetPosition"; let node_id = NodeId::new(0, 13971); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13972), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13952), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13972), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13952), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_12(address_space: &mut AddressSpace) { @@ -180,12 +372,31 @@ fn add_method_12(address_space: &mut AddressSpace) { let name = "OpenWithMasks"; let node_id = NodeId::new(0, 13974); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13975), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13976), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13952), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13975), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13976), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13952), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_13(address_space: &mut AddressSpace) { @@ -193,12 +404,31 @@ fn add_method_13(address_space: &mut AddressSpace) { let name = "UpdateCertificate"; let node_id = NodeId::new(0, 12616); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12617), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 12618), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12581), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12617), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12618), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12581), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_14(address_space: &mut AddressSpace) { @@ -206,10 +436,21 @@ fn add_method_14(address_space: &mut AddressSpace) { let name = "ApplyChanges"; let node_id = NodeId::new(0, 12734); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12581), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12581), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_15(address_space: &mut AddressSpace) { @@ -217,12 +458,31 @@ fn add_method_15(address_space: &mut AddressSpace) { let name = "CreateSigningRequest"; let node_id = NodeId::new(0, 12731); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12732), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 12733), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12581), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12732), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12733), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12581), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_16(address_space: &mut AddressSpace) { @@ -230,11 +490,26 @@ fn add_method_16(address_space: &mut AddressSpace) { let name = "GetRejectedList"; let node_id = NodeId::new(0, 12775); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12776), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12581), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12776), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12581), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_17(address_space: &mut AddressSpace) { @@ -242,12 +517,31 @@ fn add_method_17(address_space: &mut AddressSpace) { let name = "CreateCredential"; let node_id = NodeId::new(0, 17522); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17523), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17524), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17496), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17523), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17524), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17496), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_18(address_space: &mut AddressSpace) { @@ -255,12 +549,31 @@ fn add_method_18(address_space: &mut AddressSpace) { let name = "GetEncryptingKey"; let node_id = NodeId::new(0, 17534); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17535), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17536), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18001), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17535), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17536), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18001), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_19(address_space: &mut AddressSpace) { @@ -268,11 +581,26 @@ fn add_method_19(address_space: &mut AddressSpace) { let name = "UpdateCredential"; let node_id = NodeId::new(0, 18006); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18007), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18001), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 18007), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18001), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_20(address_space: &mut AddressSpace) { @@ -280,9 +608,19 @@ fn add_method_20(address_space: &mut AddressSpace) { let name = "DeleteCredential"; let node_id = NodeId::new(0, 18008); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18001), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18001), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } - diff --git a/server/src/address_space/generated/nodeset_13.rs b/server/src/address_space/generated/nodeset_13.rs index 4e43e198b..a5a8a5b63 100644 --- a/server/src/address_space/generated/nodeset_13.rs +++ b/server/src/address_space/generated/nodeset_13.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.NodeSet2.Part13.xml by tools/schema/gen_address_space.js // DO NOT EDIT THIS FILE @@ -9,8 +9,11 @@ use std::{convert::TryFrom, str::FromStr}; #[allow(unused_imports)] use crate::{ - address_space::{EventNotifier, types::*}, - prelude::{DataTypeId, ExtensionObject, LocalizedText, NodeId, ReferenceTypeId, service_types::Argument, UAString, Variant, VariantTypeId} + address_space::{types::*, EventNotifier}, + prelude::{ + service_types::Argument, DataTypeId, ExtensionObject, LocalizedText, NodeId, + ReferenceTypeId, UAString, Variant, VariantTypeId, + }, }; #[allow(unused_variables)] @@ -64,9 +67,14 @@ fn add_object_1(address_space: &mut AddressSpace) { let name = "Interpolative"; let node_id = NodeId::new(0, 2341); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2340), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2340), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + )]), + ); } fn add_object_2(address_space: &mut AddressSpace) { @@ -74,9 +82,14 @@ fn add_object_2(address_space: &mut AddressSpace) { let name = "Average"; let node_id = NodeId::new(0, 2342); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2340), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2340), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + )]), + ); } fn add_object_3(address_space: &mut AddressSpace) { @@ -84,9 +97,14 @@ fn add_object_3(address_space: &mut AddressSpace) { let name = "TimeAverage"; let node_id = NodeId::new(0, 2343); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2340), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2340), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + )]), + ); } fn add_object_4(address_space: &mut AddressSpace) { @@ -94,9 +112,14 @@ fn add_object_4(address_space: &mut AddressSpace) { let name = "TimeAverage2"; let node_id = NodeId::new(0, 11285); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2340), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2340), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + )]), + ); } fn add_object_5(address_space: &mut AddressSpace) { @@ -104,9 +127,14 @@ fn add_object_5(address_space: &mut AddressSpace) { let name = "Total"; let node_id = NodeId::new(0, 2344); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2340), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2340), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + )]), + ); } fn add_object_6(address_space: &mut AddressSpace) { @@ -114,9 +142,14 @@ fn add_object_6(address_space: &mut AddressSpace) { let name = "Total2"; let node_id = NodeId::new(0, 11304); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2340), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2340), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + )]), + ); } fn add_object_7(address_space: &mut AddressSpace) { @@ -124,9 +157,14 @@ fn add_object_7(address_space: &mut AddressSpace) { let name = "Minimum"; let node_id = NodeId::new(0, 2346); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2340), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2340), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + )]), + ); } fn add_object_8(address_space: &mut AddressSpace) { @@ -134,9 +172,14 @@ fn add_object_8(address_space: &mut AddressSpace) { let name = "Maximum"; let node_id = NodeId::new(0, 2347); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2340), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2340), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + )]), + ); } fn add_object_9(address_space: &mut AddressSpace) { @@ -144,9 +187,14 @@ fn add_object_9(address_space: &mut AddressSpace) { let name = "MinimumActualTime"; let node_id = NodeId::new(0, 2348); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2340), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2340), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + )]), + ); } fn add_object_10(address_space: &mut AddressSpace) { @@ -154,9 +202,14 @@ fn add_object_10(address_space: &mut AddressSpace) { let name = "MaximumActualTime"; let node_id = NodeId::new(0, 2349); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2340), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2340), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + )]), + ); } fn add_object_11(address_space: &mut AddressSpace) { @@ -164,9 +217,14 @@ fn add_object_11(address_space: &mut AddressSpace) { let name = "Range"; let node_id = NodeId::new(0, 2350); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2340), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2340), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + )]), + ); } fn add_object_12(address_space: &mut AddressSpace) { @@ -174,9 +232,14 @@ fn add_object_12(address_space: &mut AddressSpace) { let name = "Minimum2"; let node_id = NodeId::new(0, 11286); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2340), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2340), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + )]), + ); } fn add_object_13(address_space: &mut AddressSpace) { @@ -184,9 +247,14 @@ fn add_object_13(address_space: &mut AddressSpace) { let name = "Maximum2"; let node_id = NodeId::new(0, 11287); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2340), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2340), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + )]), + ); } fn add_object_14(address_space: &mut AddressSpace) { @@ -194,9 +262,14 @@ fn add_object_14(address_space: &mut AddressSpace) { let name = "MinimumActualTime2"; let node_id = NodeId::new(0, 11305); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2340), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2340), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + )]), + ); } fn add_object_15(address_space: &mut AddressSpace) { @@ -204,9 +277,14 @@ fn add_object_15(address_space: &mut AddressSpace) { let name = "MaximumActualTime2"; let node_id = NodeId::new(0, 11306); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2340), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2340), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + )]), + ); } fn add_object_16(address_space: &mut AddressSpace) { @@ -214,9 +292,14 @@ fn add_object_16(address_space: &mut AddressSpace) { let name = "Range2"; let node_id = NodeId::new(0, 11288); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2340), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2340), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + )]), + ); } fn add_object_17(address_space: &mut AddressSpace) { @@ -224,9 +307,14 @@ fn add_object_17(address_space: &mut AddressSpace) { let name = "AnnotationCount"; let node_id = NodeId::new(0, 2351); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2340), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2340), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + )]), + ); } fn add_object_18(address_space: &mut AddressSpace) { @@ -234,9 +322,14 @@ fn add_object_18(address_space: &mut AddressSpace) { let name = "Count"; let node_id = NodeId::new(0, 2352); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2340), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2340), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + )]), + ); } fn add_object_19(address_space: &mut AddressSpace) { @@ -244,9 +337,14 @@ fn add_object_19(address_space: &mut AddressSpace) { let name = "DurationInStateZero"; let node_id = NodeId::new(0, 11307); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2340), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2340), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + )]), + ); } fn add_object_20(address_space: &mut AddressSpace) { @@ -254,9 +352,14 @@ fn add_object_20(address_space: &mut AddressSpace) { let name = "DurationInStateNonZero"; let node_id = NodeId::new(0, 11308); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2340), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2340), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + )]), + ); } fn add_object_21(address_space: &mut AddressSpace) { @@ -264,9 +367,14 @@ fn add_object_21(address_space: &mut AddressSpace) { let name = "NumberOfTransitions"; let node_id = NodeId::new(0, 2355); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2340), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2340), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + )]), + ); } fn add_object_22(address_space: &mut AddressSpace) { @@ -274,9 +382,14 @@ fn add_object_22(address_space: &mut AddressSpace) { let name = "Start"; let node_id = NodeId::new(0, 2357); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2340), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2340), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + )]), + ); } fn add_object_23(address_space: &mut AddressSpace) { @@ -284,9 +397,14 @@ fn add_object_23(address_space: &mut AddressSpace) { let name = "End"; let node_id = NodeId::new(0, 2358); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2340), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2340), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + )]), + ); } fn add_object_24(address_space: &mut AddressSpace) { @@ -294,9 +412,14 @@ fn add_object_24(address_space: &mut AddressSpace) { let name = "Delta"; let node_id = NodeId::new(0, 2359); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2340), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2340), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + )]), + ); } fn add_object_25(address_space: &mut AddressSpace) { @@ -304,9 +427,14 @@ fn add_object_25(address_space: &mut AddressSpace) { let name = "StartBound"; let node_id = NodeId::new(0, 11505); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2340), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2340), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + )]), + ); } fn add_object_26(address_space: &mut AddressSpace) { @@ -314,9 +442,14 @@ fn add_object_26(address_space: &mut AddressSpace) { let name = "EndBound"; let node_id = NodeId::new(0, 11506); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2340), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2340), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + )]), + ); } fn add_object_27(address_space: &mut AddressSpace) { @@ -324,9 +457,14 @@ fn add_object_27(address_space: &mut AddressSpace) { let name = "DeltaBounds"; let node_id = NodeId::new(0, 11507); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2340), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2340), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + )]), + ); } fn add_object_28(address_space: &mut AddressSpace) { @@ -334,9 +472,14 @@ fn add_object_28(address_space: &mut AddressSpace) { let name = "DurationGood"; let node_id = NodeId::new(0, 2360); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2340), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2340), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + )]), + ); } fn add_object_29(address_space: &mut AddressSpace) { @@ -344,9 +487,14 @@ fn add_object_29(address_space: &mut AddressSpace) { let name = "DurationBad"; let node_id = NodeId::new(0, 2361); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2340), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2340), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + )]), + ); } fn add_object_30(address_space: &mut AddressSpace) { @@ -354,9 +502,14 @@ fn add_object_30(address_space: &mut AddressSpace) { let name = "PercentGood"; let node_id = NodeId::new(0, 2362); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2340), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2340), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + )]), + ); } fn add_object_31(address_space: &mut AddressSpace) { @@ -364,9 +517,14 @@ fn add_object_31(address_space: &mut AddressSpace) { let name = "PercentBad"; let node_id = NodeId::new(0, 2363); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2340), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2340), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + )]), + ); } fn add_object_32(address_space: &mut AddressSpace) { @@ -374,9 +532,14 @@ fn add_object_32(address_space: &mut AddressSpace) { let name = "WorstQuality"; let node_id = NodeId::new(0, 2364); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2340), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2340), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + )]), + ); } fn add_object_33(address_space: &mut AddressSpace) { @@ -384,9 +547,14 @@ fn add_object_33(address_space: &mut AddressSpace) { let name = "WorstQuality2"; let node_id = NodeId::new(0, 11292); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2340), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2340), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + )]), + ); } fn add_object_34(address_space: &mut AddressSpace) { @@ -394,9 +562,14 @@ fn add_object_34(address_space: &mut AddressSpace) { let name = "StandardDeviationSample"; let node_id = NodeId::new(0, 11426); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2340), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2340), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + )]), + ); } fn add_object_35(address_space: &mut AddressSpace) { @@ -404,9 +577,14 @@ fn add_object_35(address_space: &mut AddressSpace) { let name = "StandardDeviationPopulation"; let node_id = NodeId::new(0, 11427); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2340), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2340), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + )]), + ); } fn add_object_36(address_space: &mut AddressSpace) { @@ -414,9 +592,14 @@ fn add_object_36(address_space: &mut AddressSpace) { let name = "VarianceSample"; let node_id = NodeId::new(0, 11428); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2340), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2340), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + )]), + ); } fn add_object_37(address_space: &mut AddressSpace) { @@ -424,9 +607,14 @@ fn add_object_37(address_space: &mut AddressSpace) { let name = "VariancePopulation"; let node_id = NodeId::new(0, 11429); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2340), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2340), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + )]), + ); } fn add_objecttype_38(address_space: &mut AddressSpace) { @@ -434,13 +622,36 @@ fn add_objecttype_38(address_space: &mut AddressSpace) { let name = "AggregateConfigurationType"; let node_id = NodeId::new(0, 11187); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11188), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11189), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11190), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11191), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11188), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11189), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11190), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11191), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_39(address_space: &mut AddressSpace) { @@ -449,11 +660,26 @@ fn add_variable_39(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11188); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11187), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11187), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_40(address_space: &mut AddressSpace) { @@ -462,11 +688,26 @@ fn add_variable_40(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11189); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 3), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11187), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11187), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_41(address_space: &mut AddressSpace) { @@ -475,11 +716,26 @@ fn add_variable_41(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11190); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 3), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11187), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11187), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_42(address_space: &mut AddressSpace) { @@ -488,10 +744,24 @@ fn add_variable_42(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11191); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11187), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11187), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } - diff --git a/server/src/address_space/generated/nodeset_14_1.rs b/server/src/address_space/generated/nodeset_14_1.rs index 75d579f54..10236f58e 100644 --- a/server/src/address_space/generated/nodeset_14_1.rs +++ b/server/src/address_space/generated/nodeset_14_1.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.NodeSet2.Part14.xml by tools/schema/gen_address_space.js // DO NOT EDIT THIS FILE @@ -9,8 +9,11 @@ use std::{convert::TryFrom, str::FromStr}; #[allow(unused_imports)] use crate::{ - address_space::{EventNotifier, types::*}, - prelude::{DataTypeId, ExtensionObject, LocalizedText, NodeId, ReferenceTypeId, service_types::Argument, UAString, Variant, VariantTypeId} + address_space::{types::*, EventNotifier}, + prelude::{ + service_types::Argument, DataTypeId, ExtensionObject, LocalizedText, NodeId, + ReferenceTypeId, UAString, Variant, VariantTypeId, + }, }; #[allow(unused_variables)] @@ -122,13 +125,36 @@ fn add_object_1(address_space: &mut AddressSpace) { let name = "SecurityGroups"; let node_id = NodeId::new(0, 15913); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15914), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15917), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15452), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15906), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15914), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15917), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15452), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15906), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_2(address_space: &mut AddressSpace) { @@ -136,13 +162,36 @@ fn add_object_2(address_space: &mut AddressSpace) { let name = ""; let node_id = NodeId::new(0, 15453); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15454), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15457), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15452), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11508), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15452), &ReferenceTypeId::Organizes, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15454), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15457), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15452), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11508), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15452), + &ReferenceTypeId::Organizes, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_3(address_space: &mut AddressSpace) { @@ -150,16 +199,51 @@ fn add_object_3(address_space: &mut AddressSpace) { let name = ""; let node_id = NodeId::new(0, 15459); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15460), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15010), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15011), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15012), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15043), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15471), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11508), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15452), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15460), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15010), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15011), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15012), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15043), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15471), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11508), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15452), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_4(address_space: &mut AddressSpace) { @@ -167,15 +251,46 @@ fn add_object_4(address_space: &mut AddressSpace) { let name = ""; let node_id = NodeId::new(0, 14417); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 14418), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17292), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17478), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 14423), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 14419), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 14209), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11508), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 14418), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17292), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17478), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14423), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14419), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14209), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11508), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_5(address_space: &mut AddressSpace) { @@ -183,12 +298,31 @@ fn add_object_5(address_space: &mut AddressSpace) { let name = "Address"; let node_id = NodeId::new(0, 14423); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15533), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 21145), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14417), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15533), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21145), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14417), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_6(address_space: &mut AddressSpace) { @@ -196,12 +330,31 @@ fn add_object_6(address_space: &mut AddressSpace) { let name = "Status"; let node_id = NodeId::new(0, 14419); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 14420), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 14643), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14417), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 14420), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14643), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14417), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_7(address_space: &mut AddressSpace) { @@ -209,11 +362,26 @@ fn add_object_7(address_space: &mut AddressSpace) { let name = "PublishedDataSets"; let node_id = NodeId::new(0, 14434); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 14477), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14416), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 14477), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14416), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_8(address_space: &mut AddressSpace) { @@ -221,12 +389,31 @@ fn add_object_8(address_space: &mut AddressSpace) { let name = "Status"; let node_id = NodeId::new(0, 15844); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15845), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 14643), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14416), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15845), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14643), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14416), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_9(address_space: &mut AddressSpace) { @@ -234,18 +421,61 @@ fn add_object_9(address_space: &mut AddressSpace) { let name = "Diagnostics"; let node_id = NodeId::new(0, 18715); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18716), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 18717), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 18722), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 18727), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 18728), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 18729), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 18760), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19732), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14416), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 18716), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18717), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18722), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18727), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18728), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18729), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18760), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19732), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14416), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_10(address_space: &mut AddressSpace) { @@ -253,17 +483,56 @@ fn add_object_10(address_space: &mut AddressSpace) { let name = "Counters"; let node_id = NodeId::new(0, 18729); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18730), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 18735), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 18740), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 18745), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 18750), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 18755), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18715), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 18730), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18735), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18740), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18745), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18750), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18755), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18715), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_11(address_space: &mut AddressSpace) { @@ -271,15 +540,46 @@ fn add_object_11(address_space: &mut AddressSpace) { let name = "LiveValues"; let node_id = NodeId::new(0, 18760); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18761), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 18763), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 18765), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 18767), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18715), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 18761), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18763), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18765), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18767), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18715), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_12(address_space: &mut AddressSpace) { @@ -287,19 +587,66 @@ fn add_object_12(address_space: &mut AddressSpace) { let name = "PublishSubscribe"; let node_id = NodeId::new(0, 14443); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15215), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15440), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15443), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17366), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17369), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17371), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17405), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17409), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17481), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2253), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - (&NodeId::new(0, 14416), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15215), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15440), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15443), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17366), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17369), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17371), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17405), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17409), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17481), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2253), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 14416), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_13(address_space: &mut AddressSpace) { @@ -307,12 +654,31 @@ fn add_object_13(address_space: &mut AddressSpace) { let name = "SecurityGroups"; let node_id = NodeId::new(0, 15443); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15444), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15447), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15452), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 14443), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15444), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15447), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15452), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14443), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_14(address_space: &mut AddressSpace) { @@ -320,10 +686,21 @@ fn add_object_14(address_space: &mut AddressSpace) { let name = "PublishedDataSets"; let node_id = NodeId::new(0, 17371); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 14477), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 14443), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 14477), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14443), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_15(address_space: &mut AddressSpace) { @@ -331,11 +708,26 @@ fn add_object_15(address_space: &mut AddressSpace) { let name = "Status"; let node_id = NodeId::new(0, 17405); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17406), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 14643), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 14443), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17406), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14643), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14443), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_16(address_space: &mut AddressSpace) { @@ -343,17 +735,56 @@ fn add_object_16(address_space: &mut AddressSpace) { let name = "Diagnostics"; let node_id = NodeId::new(0, 17409); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17410), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17411), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17416), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17421), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17422), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17423), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17457), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19732), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 14443), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17410), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17411), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17416), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17421), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17422), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17423), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17457), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19732), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14443), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_17(address_space: &mut AddressSpace) { @@ -361,16 +792,51 @@ fn add_object_17(address_space: &mut AddressSpace) { let name = "Counters"; let node_id = NodeId::new(0, 17423); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17424), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17431), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17436), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17441), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17446), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17451), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 17409), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17424), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17431), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17436), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17441), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17446), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17451), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17409), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_18(address_space: &mut AddressSpace) { @@ -378,14 +844,41 @@ fn add_object_18(address_space: &mut AddressSpace) { let name = "LiveValues"; let node_id = NodeId::new(0, 17457); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17458), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17460), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17462), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17464), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 17409), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17458), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17460), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17462), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17464), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17409), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_19(address_space: &mut AddressSpace) { @@ -393,14 +886,41 @@ fn add_object_19(address_space: &mut AddressSpace) { let name = ""; let node_id = NodeId::new(0, 15222); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16720), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16721), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17482), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15223), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15298), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11508), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16720), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16721), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17482), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15223), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15298), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11508), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_20(address_space: &mut AddressSpace) { @@ -408,12 +928,31 @@ fn add_object_20(address_space: &mut AddressSpace) { let name = "Status"; let node_id = NodeId::new(0, 15223); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15224), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 14643), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15222), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15224), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14643), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15222), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_21(address_space: &mut AddressSpace) { @@ -421,13 +960,36 @@ fn add_object_21(address_space: &mut AddressSpace) { let name = "ExtensionFields"; let node_id = NodeId::new(0, 15481); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15482), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15485), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15489), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14509), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15482), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15485), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15489), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14509), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_22(address_space: &mut AddressSpace) { @@ -435,18 +997,61 @@ fn add_object_22(address_space: &mut AddressSpace) { let name = ""; let node_id = NodeId::new(0, 14478); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 14479), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 14482), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16842), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16881), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 14485), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16884), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16923), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 14477), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11508), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14477), &ReferenceTypeId::Organizes, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 14479), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14482), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16842), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16881), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14485), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16884), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16923), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14477), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11508), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14477), + &ReferenceTypeId::Organizes, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_23(address_space: &mut AddressSpace) { @@ -454,13 +1059,36 @@ fn add_object_23(address_space: &mut AddressSpace) { let name = ""; let node_id = NodeId::new(0, 14487); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 14489), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15221), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 14509), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11508), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14477), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 14489), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15221), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14509), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11508), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14477), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_24(address_space: &mut AddressSpace) { @@ -468,12 +1096,31 @@ fn add_object_24(address_space: &mut AddressSpace) { let name = "Address"; let node_id = NodeId::new(0, 14221); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17202), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 21145), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14209), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17202), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21145), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14209), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_25(address_space: &mut AddressSpace) { @@ -481,11 +1128,26 @@ fn add_object_25(address_space: &mut AddressSpace) { let name = "TransportSettings"; let node_id = NodeId::new(0, 17203); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17721), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14209), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17721), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14209), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_26(address_space: &mut AddressSpace) { @@ -493,20 +1155,71 @@ fn add_object_26(address_space: &mut AddressSpace) { let name = ""; let node_id = NodeId::new(0, 17310); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17311), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17204), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17486), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17314), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17214), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17318), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17319), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17321), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17322), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17558), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11508), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17311), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17204), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17486), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17314), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17214), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17318), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17319), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17321), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17322), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17558), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11508), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_27(address_space: &mut AddressSpace) { @@ -514,12 +1227,31 @@ fn add_object_27(address_space: &mut AddressSpace) { let name = "Status"; let node_id = NodeId::new(0, 17314); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17315), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 14643), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17310), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17315), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14643), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17310), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_28(address_space: &mut AddressSpace) { @@ -527,14 +1259,41 @@ fn add_object_28(address_space: &mut AddressSpace) { let name = ""; let node_id = NodeId::new(0, 17325); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17326), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17302), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17487), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17329), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17999), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11508), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17326), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17302), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17487), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17329), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17999), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11508), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_29(address_space: &mut AddressSpace) { @@ -542,12 +1301,31 @@ fn add_object_29(address_space: &mut AddressSpace) { let name = "Status"; let node_id = NodeId::new(0, 17329); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17330), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 14643), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17325), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17330), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14643), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17325), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_30(address_space: &mut AddressSpace) { @@ -555,12 +1333,31 @@ fn add_object_30(address_space: &mut AddressSpace) { let name = "Status"; let node_id = NodeId::new(0, 14600); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 14601), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 14643), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14209), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 14601), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14643), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14209), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_31(address_space: &mut AddressSpace) { @@ -568,18 +1365,61 @@ fn add_object_31(address_space: &mut AddressSpace) { let name = "Diagnostics"; let node_id = NodeId::new(0, 19241); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19242), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19243), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19248), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19253), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19254), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19255), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19286), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19786), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14209), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19242), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19243), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19248), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19253), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19254), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19255), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19286), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19786), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14209), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_32(address_space: &mut AddressSpace) { @@ -587,17 +1427,56 @@ fn add_object_32(address_space: &mut AddressSpace) { let name = "Counters"; let node_id = NodeId::new(0, 19255); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19256), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19261), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19266), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19271), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19276), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19281), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19241), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19256), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19261), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19266), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19271), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19276), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19281), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19241), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_33(address_space: &mut AddressSpace) { @@ -605,12 +1484,31 @@ fn add_object_33(address_space: &mut AddressSpace) { let name = "LiveValues"; let node_id = NodeId::new(0, 19286); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19287), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19241), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19287), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19241), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_34(address_space: &mut AddressSpace) { @@ -618,12 +1516,31 @@ fn add_object_34(address_space: &mut AddressSpace) { let name = "Status"; let node_id = NodeId::new(0, 15265); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15266), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 14643), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14232), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15266), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14643), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14232), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_35(address_space: &mut AddressSpace) { @@ -631,11 +1548,26 @@ fn add_object_35(address_space: &mut AddressSpace) { let name = "TransportSettings"; let node_id = NodeId::new(0, 17741); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17997), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17725), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17997), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17725), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_36(address_space: &mut AddressSpace) { @@ -643,11 +1575,26 @@ fn add_object_36(address_space: &mut AddressSpace) { let name = "MessageSettings"; let node_id = NodeId::new(0, 17742); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17998), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17725), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17998), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17725), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_37(address_space: &mut AddressSpace) { @@ -655,14 +1602,41 @@ fn add_object_37(address_space: &mut AddressSpace) { let name = ""; let node_id = NodeId::new(0, 17743); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17744), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17745), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17490), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17749), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15298), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11508), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17744), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17745), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17490), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17749), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15298), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11508), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_38(address_space: &mut AddressSpace) { @@ -670,12 +1644,31 @@ fn add_object_38(address_space: &mut AddressSpace) { let name = "Status"; let node_id = NodeId::new(0, 17749); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17750), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 14643), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17743), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17750), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14643), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17743), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_39(address_space: &mut AddressSpace) { @@ -683,18 +1676,61 @@ fn add_object_39(address_space: &mut AddressSpace) { let name = "Diagnostics"; let node_id = NodeId::new(0, 17812); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17813), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17814), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17819), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17824), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17825), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17826), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17858), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19834), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17725), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17813), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17814), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17819), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17824), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17825), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17826), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17858), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19834), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17725), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_40(address_space: &mut AddressSpace) { @@ -702,20 +1738,71 @@ fn add_object_40(address_space: &mut AddressSpace) { let name = "Counters"; let node_id = NodeId::new(0, 17826); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17827), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17832), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17837), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17842), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17847), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17853), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17859), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17874), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17900), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17812), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17827), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17832), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17837), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17842), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17847), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17853), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17859), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17874), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17900), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17812), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_41(address_space: &mut AddressSpace) { @@ -723,13 +1810,36 @@ fn add_object_41(address_space: &mut AddressSpace) { let name = "LiveValues"; let node_id = NodeId::new(0, 17858); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17913), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17927), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17812), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17913), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17927), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17812), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_42(address_space: &mut AddressSpace) { @@ -737,21 +1847,76 @@ fn add_object_42(address_space: &mut AddressSpace) { let name = ""; let node_id = NodeId::new(0, 18076); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18077), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 18078), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 18079), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 18080), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 18081), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 18082), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17560), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17562), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17492), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 18088), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 21006), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15306), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11508), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 18077), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18078), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18079), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18080), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18081), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18082), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17560), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17562), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17492), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18088), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21006), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15306), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11508), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_43(address_space: &mut AddressSpace) { @@ -759,12 +1924,31 @@ fn add_object_43(address_space: &mut AddressSpace) { let name = "Status"; let node_id = NodeId::new(0, 18088); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18089), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 14643), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18076), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 18089), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14643), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18076), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_44(address_space: &mut AddressSpace) { @@ -772,11 +1956,26 @@ fn add_object_44(address_space: &mut AddressSpace) { let name = "SubscribedDataSet"; let node_id = NodeId::new(0, 21006); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15108), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18076), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15108), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18076), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_45(address_space: &mut AddressSpace) { @@ -784,18 +1983,61 @@ fn add_object_45(address_space: &mut AddressSpace) { let name = "Diagnostics"; let node_id = NodeId::new(0, 21015); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 21016), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 21017), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 21022), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 21027), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 21028), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 21029), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 21060), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19903), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17999), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 21016), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21017), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21022), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21027), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21028), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21029), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21060), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19903), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17999), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_46(address_space: &mut AddressSpace) { @@ -803,18 +2045,61 @@ fn add_object_46(address_space: &mut AddressSpace) { let name = "Counters"; let node_id = NodeId::new(0, 21029); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 21030), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 21035), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 21040), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 21045), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 21050), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 21055), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 21061), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21015), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 21030), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21035), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21040), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21045), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21050), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21055), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21061), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21015), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_47(address_space: &mut AddressSpace) { @@ -822,13 +2107,36 @@ fn add_object_47(address_space: &mut AddressSpace) { let name = "LiveValues"; let node_id = NodeId::new(0, 21060); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 21076), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 21078), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21015), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 21076), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21078), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21015), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_48(address_space: &mut AddressSpace) { @@ -836,11 +2144,26 @@ fn add_object_48(address_space: &mut AddressSpace) { let name = "TransportSettings"; let node_id = NodeId::new(0, 21080); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 21090), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17999), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 21090), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17999), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_49(address_space: &mut AddressSpace) { @@ -848,11 +2171,26 @@ fn add_object_49(address_space: &mut AddressSpace) { let name = "MessageSettings"; let node_id = NodeId::new(0, 21081); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 21091), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17999), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 21091), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17999), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_50(address_space: &mut AddressSpace) { @@ -860,11 +2198,26 @@ fn add_object_50(address_space: &mut AddressSpace) { let name = "TransportSettings"; let node_id = NodeId::new(0, 15303); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15305), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15298), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15305), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15298), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_51(address_space: &mut AddressSpace) { @@ -872,11 +2225,26 @@ fn add_object_51(address_space: &mut AddressSpace) { let name = "MessageSettings"; let node_id = NodeId::new(0, 21095); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 21096), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15298), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 21096), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15298), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_52(address_space: &mut AddressSpace) { @@ -884,12 +2252,31 @@ fn add_object_52(address_space: &mut AddressSpace) { let name = "Status"; let node_id = NodeId::new(0, 15299); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15300), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 14643), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15298), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15300), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14643), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15298), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_53(address_space: &mut AddressSpace) { @@ -897,18 +2284,61 @@ fn add_object_53(address_space: &mut AddressSpace) { let name = "Diagnostics"; let node_id = NodeId::new(0, 19550); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19551), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19552), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19557), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19562), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19563), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19564), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19595), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19968), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15298), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19551), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19552), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19557), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19562), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19563), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19564), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19595), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19968), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15298), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_54(address_space: &mut AddressSpace) { @@ -916,18 +2346,61 @@ fn add_object_54(address_space: &mut AddressSpace) { let name = "Counters"; let node_id = NodeId::new(0, 19564); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19565), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19570), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19575), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19580), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19585), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19590), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19596), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19550), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19565), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19570), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19575), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19580), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19585), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19590), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19596), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19550), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_55(address_space: &mut AddressSpace) { @@ -935,11 +2408,26 @@ fn add_object_55(address_space: &mut AddressSpace) { let name = "LiveValues"; let node_id = NodeId::new(0, 19595); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 58), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19550), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19550), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_56(address_space: &mut AddressSpace) { @@ -947,11 +2435,26 @@ fn add_object_56(address_space: &mut AddressSpace) { let name = "TransportSettings"; let node_id = NodeId::new(0, 15311); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15319), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15306), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15319), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15306), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_57(address_space: &mut AddressSpace) { @@ -959,11 +2462,26 @@ fn add_object_57(address_space: &mut AddressSpace) { let name = "MessageSettings"; let node_id = NodeId::new(0, 21103); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 21104), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15306), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 21104), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15306), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_58(address_space: &mut AddressSpace) { @@ -971,12 +2489,31 @@ fn add_object_58(address_space: &mut AddressSpace) { let name = "Status"; let node_id = NodeId::new(0, 15307); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15308), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 14643), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15306), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15308), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14643), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15306), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_59(address_space: &mut AddressSpace) { @@ -984,18 +2521,61 @@ fn add_object_59(address_space: &mut AddressSpace) { let name = "Diagnostics"; let node_id = NodeId::new(0, 19609); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19610), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19611), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19616), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19621), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19622), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19623), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19654), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 20027), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15306), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19610), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19611), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19616), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19621), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19622), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19623), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19654), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20027), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15306), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_60(address_space: &mut AddressSpace) { @@ -1003,18 +2583,61 @@ fn add_object_60(address_space: &mut AddressSpace) { let name = "Counters"; let node_id = NodeId::new(0, 19623); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19624), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19629), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19634), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19639), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19644), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19649), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19655), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19609), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19624), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19629), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19634), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19639), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19644), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19649), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19655), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19609), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_61(address_space: &mut AddressSpace) { @@ -1022,11 +2645,26 @@ fn add_object_61(address_space: &mut AddressSpace) { let name = "LiveValues"; let node_id = NodeId::new(0, 19654); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 58), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19609), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19609), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_62(address_space: &mut AddressSpace) { @@ -1034,11 +2672,26 @@ fn add_object_62(address_space: &mut AddressSpace) { let name = "SubscribedDataSet"; let node_id = NodeId::new(0, 15316); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15108), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15306), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15108), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15306), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_63(address_space: &mut AddressSpace) { @@ -1046,17 +2699,56 @@ fn add_object_63(address_space: &mut AddressSpace) { let name = "Counters"; let node_id = NodeId::new(0, 19691); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19692), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19697), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19702), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19707), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19712), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19717), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19677), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19692), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19697), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19702), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19707), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19712), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19717), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19677), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_64(address_space: &mut AddressSpace) { @@ -1064,11 +2756,26 @@ fn add_object_64(address_space: &mut AddressSpace) { let name = "LiveValues"; let node_id = NodeId::new(0, 19722); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 58), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19677), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19677), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_65(address_space: &mut AddressSpace) { @@ -1076,15 +2783,46 @@ fn add_object_65(address_space: &mut AddressSpace) { let name = "LiveValues"; let node_id = NodeId::new(0, 19777); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19778), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19780), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19782), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19784), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19732), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19778), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19780), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19782), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19784), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19732), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_66(address_space: &mut AddressSpace) { @@ -1092,12 +2830,31 @@ fn add_object_66(address_space: &mut AddressSpace) { let name = "LiveValues"; let node_id = NodeId::new(0, 19831); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19832), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19786), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19832), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19786), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_67(address_space: &mut AddressSpace) { @@ -1105,14 +2862,41 @@ fn add_object_67(address_space: &mut AddressSpace) { let name = "Counters"; let node_id = NodeId::new(0, 19848); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19880), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19885), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19890), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19834), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19880), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19885), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19890), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19834), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_68(address_space: &mut AddressSpace) { @@ -1120,15 +2904,46 @@ fn add_object_68(address_space: &mut AddressSpace) { let name = "LiveValues"; let node_id = NodeId::new(0, 19879); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19895), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19897), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19899), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19901), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19834), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19895), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19897), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19899), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19901), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19834), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_69(address_space: &mut AddressSpace) { @@ -1136,14 +2951,41 @@ fn add_object_69(address_space: &mut AddressSpace) { let name = "Counters"; let node_id = NodeId::new(0, 19917); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19949), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19954), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19959), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19903), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19949), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19954), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19959), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19903), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_70(address_space: &mut AddressSpace) { @@ -1151,13 +2993,36 @@ fn add_object_70(address_space: &mut AddressSpace) { let name = "LiveValues"; let node_id = NodeId::new(0, 19948); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19964), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19966), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19903), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19964), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19966), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19903), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_71(address_space: &mut AddressSpace) { @@ -1165,12 +3030,31 @@ fn add_object_71(address_space: &mut AddressSpace) { let name = "Counters"; let node_id = NodeId::new(0, 19982); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 20014), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19968), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 20014), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19968), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_72(address_space: &mut AddressSpace) { @@ -1178,15 +3062,46 @@ fn add_object_72(address_space: &mut AddressSpace) { let name = "LiveValues"; let node_id = NodeId::new(0, 20013); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 20019), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 20021), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 20023), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 20025), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19968), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 20019), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20021), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20023), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20025), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19968), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_73(address_space: &mut AddressSpace) { @@ -1194,13 +3109,36 @@ fn add_object_73(address_space: &mut AddressSpace) { let name = "Counters"; let node_id = NodeId::new(0, 20041); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 20073), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 20078), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20027), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 20073), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20078), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20027), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_74(address_space: &mut AddressSpace) { @@ -1208,17 +3146,56 @@ fn add_object_74(address_space: &mut AddressSpace) { let name = "LiveValues"; let node_id = NodeId::new(0, 20072); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 20083), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 20085), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 20087), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 20089), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 20091), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 20093), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20027), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 20083), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20085), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20087), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20089), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20091), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20093), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20027), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_75(address_space: &mut AddressSpace) { @@ -1226,12 +3203,31 @@ fn add_object_75(address_space: &mut AddressSpace) { let name = "DiscoveryAddress"; let node_id = NodeId::new(0, 15072); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15154), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 21145), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15064), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15154), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21145), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15064), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_76(address_space: &mut AddressSpace) { @@ -1239,11 +3235,26 @@ fn add_object_76(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 15676); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15534), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 15741), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15534), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 15741), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_77(address_space: &mut AddressSpace) { @@ -1251,11 +3262,26 @@ fn add_object_77(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 125); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 14525), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 14855), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 14525), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 14855), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_78(address_space: &mut AddressSpace) { @@ -1263,11 +3289,26 @@ fn add_object_78(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 126); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15487), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 15599), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15487), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 15599), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_79(address_space: &mut AddressSpace) { @@ -1275,11 +3316,26 @@ fn add_object_79(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 127); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15488), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 15602), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15488), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 15602), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_80(address_space: &mut AddressSpace) { @@ -1287,11 +3343,26 @@ fn add_object_80(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 15421); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15005), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 15501), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15005), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 15501), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_81(address_space: &mut AddressSpace) { @@ -1299,11 +3370,26 @@ fn add_object_81(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 15422); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15006), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 15521), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15006), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 15521), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_82(address_space: &mut AddressSpace) { @@ -1311,11 +3397,26 @@ fn add_object_82(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 124); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 14523), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 14849), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 14523), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 14849), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_83(address_space: &mut AddressSpace) { @@ -1323,11 +3424,26 @@ fn add_object_83(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 14839); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 14524), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 14852), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 14524), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 14852), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_84(address_space: &mut AddressSpace) { @@ -1335,11 +3451,26 @@ fn add_object_84(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 14847); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 14593), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 14876), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 14593), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 14876), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_85(address_space: &mut AddressSpace) { @@ -1347,11 +3478,26 @@ fn add_object_85(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 15677); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15578), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 15766), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15578), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 15766), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_86(address_space: &mut AddressSpace) { @@ -1359,11 +3505,26 @@ fn add_object_86(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 15678); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15580), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 15769), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15580), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 15769), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_87(address_space: &mut AddressSpace) { @@ -1371,11 +3532,26 @@ fn add_object_87(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 14323); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 14273), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 14324), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 14273), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 14324), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_88(address_space: &mut AddressSpace) { @@ -1383,11 +3559,26 @@ fn add_object_88(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 15679); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15581), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 15772), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15581), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 15772), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_89(address_space: &mut AddressSpace) { @@ -1395,11 +3586,26 @@ fn add_object_89(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 15681); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15582), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 15775), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15582), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 15775), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_90(address_space: &mut AddressSpace) { @@ -1407,11 +3613,26 @@ fn add_object_90(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 15682); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15597), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 15778), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15597), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 15778), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_91(address_space: &mut AddressSpace) { @@ -1419,11 +3640,26 @@ fn add_object_91(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 15683); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15598), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 15781), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15598), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 15781), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_92(address_space: &mut AddressSpace) { @@ -1431,11 +3667,26 @@ fn add_object_92(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 15688); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15605), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 15784), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15605), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 15784), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_93(address_space: &mut AddressSpace) { @@ -1443,11 +3694,26 @@ fn add_object_93(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 15689); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15609), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 15787), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15609), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 15787), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_94(address_space: &mut AddressSpace) { @@ -1455,11 +3721,26 @@ fn add_object_94(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 21150); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15480), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 21156), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15480), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 21156), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_95(address_space: &mut AddressSpace) { @@ -1467,11 +3748,26 @@ fn add_object_95(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 15691); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15611), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 15793), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15611), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 15793), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_96(address_space: &mut AddressSpace) { @@ -1479,11 +3775,26 @@ fn add_object_96(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 15693); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15616), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 15854), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15616), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 15854), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_97(address_space: &mut AddressSpace) { @@ -1491,11 +3802,26 @@ fn add_object_97(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 15694); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15617), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 15857), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15617), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 15857), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_98(address_space: &mut AddressSpace) { @@ -1503,11 +3829,26 @@ fn add_object_98(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 15695); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15618), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 15860), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15618), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 15860), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_99(address_space: &mut AddressSpace) { @@ -1515,11 +3856,26 @@ fn add_object_99(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 21151); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15502), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 21159), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15502), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 21159), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_100(address_space: &mut AddressSpace) { @@ -1527,10 +3883,24 @@ fn add_object_100(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 21152); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15510), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 21162), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15510), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 21162), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } - diff --git a/server/src/address_space/generated/nodeset_14_10.rs b/server/src/address_space/generated/nodeset_14_10.rs index 4cdad8de0..a5800a8cd 100644 --- a/server/src/address_space/generated/nodeset_14_10.rs +++ b/server/src/address_space/generated/nodeset_14_10.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.NodeSet2.Part14.xml by tools/schema/gen_address_space.js // DO NOT EDIT THIS FILE @@ -9,8 +9,11 @@ use std::{convert::TryFrom, str::FromStr}; #[allow(unused_imports)] use crate::{ - address_space::{EventNotifier, types::*}, - prelude::{DataTypeId, ExtensionObject, LocalizedText, NodeId, ReferenceTypeId, service_types::Argument, UAString, Variant, VariantTypeId} + address_space::{types::*, EventNotifier}, + prelude::{ + service_types::Argument, DataTypeId, ExtensionObject, LocalizedText, NodeId, + ReferenceTypeId, UAString, Variant, VariantTypeId, + }, }; #[allow(unused_variables)] @@ -122,12 +125,35 @@ fn add_variable_1(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 19962); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19959), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19959), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_2(address_space: &mut AddressSpace) { @@ -136,12 +162,31 @@ fn add_variable_2(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19964); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19965), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19948), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19965), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19948), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_3(address_space: &mut AddressSpace) { @@ -149,12 +194,35 @@ fn add_variable_3(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 19965); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19964), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19964), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_4(address_space: &mut AddressSpace) { @@ -163,12 +231,31 @@ fn add_variable_4(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19966); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19967), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19948), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19967), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19948), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_5(address_space: &mut AddressSpace) { @@ -176,12 +263,35 @@ fn add_variable_5(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 19967); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19966), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19966), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_6(address_space: &mut AddressSpace) { @@ -190,14 +300,41 @@ fn add_variable_6(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 20014); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 20015), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 20016), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 20017), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19982), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 20015), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20016), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20017), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19982), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_7(address_space: &mut AddressSpace) { @@ -206,11 +343,26 @@ fn add_variable_7(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 20015); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20014), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20014), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_8(address_space: &mut AddressSpace) { @@ -218,12 +370,35 @@ fn add_variable_8(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 20016); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20014), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20014), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_9(address_space: &mut AddressSpace) { @@ -231,12 +406,35 @@ fn add_variable_9(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 20017); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20014), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20014), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_10(address_space: &mut AddressSpace) { @@ -245,12 +443,31 @@ fn add_variable_10(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 20019); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 20020), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20013), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 20020), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20013), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_11(address_space: &mut AddressSpace) { @@ -258,12 +475,35 @@ fn add_variable_11(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 20020); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20019), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20019), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_12(address_space: &mut AddressSpace) { @@ -271,13 +511,33 @@ fn add_variable_12(address_space: &mut AddressSpace) { let name = "StatusCode"; let value = Variant::Empty; let node_id = NodeId::new(0, 20021); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 20022), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20013), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 20022), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20013), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_13(address_space: &mut AddressSpace) { @@ -285,12 +545,35 @@ fn add_variable_13(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 20022); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20021), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20021), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_14(address_space: &mut AddressSpace) { @@ -299,12 +582,31 @@ fn add_variable_14(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 20023); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 20024), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20013), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 20024), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20013), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_15(address_space: &mut AddressSpace) { @@ -312,12 +614,35 @@ fn add_variable_15(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 20024); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20023), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20023), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_16(address_space: &mut AddressSpace) { @@ -326,12 +651,31 @@ fn add_variable_16(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 20025); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 20026), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20013), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 20026), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20013), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_17(address_space: &mut AddressSpace) { @@ -339,12 +683,35 @@ fn add_variable_17(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 20026); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20025), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20025), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_18(address_space: &mut AddressSpace) { @@ -353,14 +720,41 @@ fn add_variable_18(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 20073); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 20074), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 20075), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 20076), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20041), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 20074), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20075), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20076), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20041), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_19(address_space: &mut AddressSpace) { @@ -369,11 +763,26 @@ fn add_variable_19(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 20074); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20073), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20073), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_20(address_space: &mut AddressSpace) { @@ -381,12 +790,35 @@ fn add_variable_20(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 20075); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20073), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20073), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_21(address_space: &mut AddressSpace) { @@ -394,12 +826,35 @@ fn add_variable_21(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 20076); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20073), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20073), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_22(address_space: &mut AddressSpace) { @@ -408,14 +863,41 @@ fn add_variable_22(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 20078); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 20079), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 20080), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 20081), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20041), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 20079), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20080), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20081), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20041), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_23(address_space: &mut AddressSpace) { @@ -424,11 +906,26 @@ fn add_variable_23(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 20079); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20078), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20078), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_24(address_space: &mut AddressSpace) { @@ -436,12 +933,35 @@ fn add_variable_24(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 20080); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20078), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20078), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_25(address_space: &mut AddressSpace) { @@ -449,12 +969,35 @@ fn add_variable_25(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 20081); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20078), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20078), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_26(address_space: &mut AddressSpace) { @@ -463,12 +1006,31 @@ fn add_variable_26(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 20083); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 20084), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20072), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 20084), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20072), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_27(address_space: &mut AddressSpace) { @@ -476,12 +1038,35 @@ fn add_variable_27(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 20084); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20083), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20083), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_28(address_space: &mut AddressSpace) { @@ -489,13 +1074,33 @@ fn add_variable_28(address_space: &mut AddressSpace) { let name = "StatusCode"; let value = Variant::Empty; let node_id = NodeId::new(0, 20085); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 20086), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20072), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 20086), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20072), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_29(address_space: &mut AddressSpace) { @@ -503,12 +1108,35 @@ fn add_variable_29(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 20086); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20085), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20085), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_30(address_space: &mut AddressSpace) { @@ -517,12 +1145,31 @@ fn add_variable_30(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 20087); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 20088), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20072), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 20088), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20072), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_31(address_space: &mut AddressSpace) { @@ -530,12 +1177,35 @@ fn add_variable_31(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 20088); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20087), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20087), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_32(address_space: &mut AddressSpace) { @@ -544,12 +1214,31 @@ fn add_variable_32(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 20089); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 20090), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20072), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 20090), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20072), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_33(address_space: &mut AddressSpace) { @@ -557,12 +1246,35 @@ fn add_variable_33(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 20090); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20089), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20089), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_34(address_space: &mut AddressSpace) { @@ -571,12 +1283,31 @@ fn add_variable_34(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 20091); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 20092), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20072), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 20092), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20072), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_35(address_space: &mut AddressSpace) { @@ -584,12 +1315,35 @@ fn add_variable_35(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 20092); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20091), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20091), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_36(address_space: &mut AddressSpace) { @@ -597,13 +1351,33 @@ fn add_variable_36(address_space: &mut AddressSpace) { let name = "TimeToNextTokenID"; let value = Variant::Empty; let node_id = NodeId::new(0, 20093); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 20094), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20072), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 20094), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20072), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_37(address_space: &mut AddressSpace) { @@ -611,12 +1385,35 @@ fn add_variable_37(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 20094); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20093), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20093), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_38(address_space: &mut AddressSpace) { @@ -624,12 +1421,28 @@ fn add_variable_38(address_space: &mut AddressSpace) { let name = "ConnectionId"; let value = Variant::Empty; let node_id = NodeId::new(0, 15545); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15535), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15535), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_39(address_space: &mut AddressSpace) { @@ -637,12 +1450,28 @@ fn add_variable_39(address_space: &mut AddressSpace) { let name = "GroupId"; let value = Variant::Empty; let node_id = NodeId::new(0, 15546); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15535), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15535), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_40(address_space: &mut AddressSpace) { @@ -650,12 +1479,35 @@ fn add_variable_40(address_space: &mut AddressSpace) { let name = "State"; let value = Variant::Empty; let node_id = NodeId::new(0, 15547); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 14647), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15535), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 14647), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15535), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_41(address_space: &mut AddressSpace) { @@ -664,11 +1516,26 @@ fn add_variable_41(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 15561); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15548), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15548), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_42(address_space: &mut AddressSpace) { @@ -677,11 +1544,26 @@ fn add_variable_42(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 15562); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15548), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15548), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_43(address_space: &mut AddressSpace) { @@ -689,12 +1571,28 @@ fn add_variable_43(address_space: &mut AddressSpace) { let name = "Error"; let value = Variant::Empty; let node_id = NodeId::new(0, 15576); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15563), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15563), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_44(address_space: &mut AddressSpace) { @@ -702,12 +1600,35 @@ fn add_variable_44(address_space: &mut AddressSpace) { let name = "GroupVersion"; let value = Variant::Empty; let node_id = NodeId::new(0, 21106); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 20998), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21105), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 20998), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21105), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_45(address_space: &mut AddressSpace) { @@ -715,12 +1636,35 @@ fn add_variable_45(address_space: &mut AddressSpace) { let name = "DataSetOrdering"; let value = Variant::Empty; let node_id = NodeId::new(0, 21107); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 20408), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21105), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 20408), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21105), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_46(address_space: &mut AddressSpace) { @@ -728,12 +1672,35 @@ fn add_variable_46(address_space: &mut AddressSpace) { let name = "NetworkMessageContentMask"; let value = Variant::Empty; let node_id = NodeId::new(0, 21108); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15642), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21105), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 15642), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21105), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_47(address_space: &mut AddressSpace) { @@ -741,12 +1708,28 @@ fn add_variable_47(address_space: &mut AddressSpace) { let name = "SamplingOffset"; let value = Variant::Empty; let node_id = NodeId::new(0, 21109); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21105), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21105), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_48(address_space: &mut AddressSpace) { @@ -754,12 +1737,35 @@ fn add_variable_48(address_space: &mut AddressSpace) { let name = "PublishingOffset"; let value = Variant::Empty; let node_id = NodeId::new(0, 21110); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21105), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 290), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21105), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_49(address_space: &mut AddressSpace) { @@ -767,12 +1773,35 @@ fn add_variable_49(address_space: &mut AddressSpace) { let name = "DataSetMessageContentMask"; let value = Variant::Empty; let node_id = NodeId::new(0, 21112); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15646), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21111), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 15646), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21111), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_50(address_space: &mut AddressSpace) { @@ -781,11 +1810,26 @@ fn add_variable_50(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 21113); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21111), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21111), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_51(address_space: &mut AddressSpace) { @@ -794,11 +1838,26 @@ fn add_variable_51(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 21114); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21111), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21111), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_52(address_space: &mut AddressSpace) { @@ -807,11 +1866,26 @@ fn add_variable_52(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 21115); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21111), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21111), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_53(address_space: &mut AddressSpace) { @@ -819,12 +1893,35 @@ fn add_variable_53(address_space: &mut AddressSpace) { let name = "GroupVersion"; let value = Variant::Empty; let node_id = NodeId::new(0, 21117); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 20998), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21116), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 20998), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21116), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_54(address_space: &mut AddressSpace) { @@ -833,11 +1930,26 @@ fn add_variable_54(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 21119); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21116), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21116), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_55(address_space: &mut AddressSpace) { @@ -846,11 +1958,26 @@ fn add_variable_55(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17477); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21116), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21116), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_56(address_space: &mut AddressSpace) { @@ -858,12 +1985,28 @@ fn add_variable_56(address_space: &mut AddressSpace) { let name = "DataSetClassId"; let value = Variant::Empty; let node_id = NodeId::new(0, 21120); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 14), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21116), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 14), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21116), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_57(address_space: &mut AddressSpace) { @@ -871,12 +2014,35 @@ fn add_variable_57(address_space: &mut AddressSpace) { let name = "NetworkMessageContentMask"; let value = Variant::Empty; let node_id = NodeId::new(0, 21121); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15642), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21116), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 15642), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21116), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_58(address_space: &mut AddressSpace) { @@ -884,12 +2050,35 @@ fn add_variable_58(address_space: &mut AddressSpace) { let name = "DataSetMessageContentMask"; let value = Variant::Empty; let node_id = NodeId::new(0, 21122); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15646), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21116), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 15646), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21116), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_59(address_space: &mut AddressSpace) { @@ -897,12 +2086,28 @@ fn add_variable_59(address_space: &mut AddressSpace) { let name = "PublishingInterval"; let value = Variant::Empty; let node_id = NodeId::new(0, 21123); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21116), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21116), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_60(address_space: &mut AddressSpace) { @@ -910,12 +2115,28 @@ fn add_variable_60(address_space: &mut AddressSpace) { let name = "ProcessingOffset"; let value = Variant::Empty; let node_id = NodeId::new(0, 21124); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21116), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21116), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_61(address_space: &mut AddressSpace) { @@ -923,12 +2144,28 @@ fn add_variable_61(address_space: &mut AddressSpace) { let name = "ReceiveOffset"; let value = Variant::Empty; let node_id = NodeId::new(0, 21125); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21116), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21116), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_62(address_space: &mut AddressSpace) { @@ -936,12 +2173,35 @@ fn add_variable_62(address_space: &mut AddressSpace) { let name = "NetworkMessageContentMask"; let value = Variant::Empty; let node_id = NodeId::new(0, 21127); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15654), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21126), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 15654), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21126), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_63(address_space: &mut AddressSpace) { @@ -949,12 +2209,35 @@ fn add_variable_63(address_space: &mut AddressSpace) { let name = "DataSetMessageContentMask"; let value = Variant::Empty; let node_id = NodeId::new(0, 21129); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15658), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21128), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 15658), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21128), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_64(address_space: &mut AddressSpace) { @@ -962,12 +2245,35 @@ fn add_variable_64(address_space: &mut AddressSpace) { let name = "NetworkMessageContentMask"; let value = Variant::Empty; let node_id = NodeId::new(0, 21131); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15654), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21130), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 15654), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21130), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_65(address_space: &mut AddressSpace) { @@ -975,12 +2281,35 @@ fn add_variable_65(address_space: &mut AddressSpace) { let name = "DataSetMessageContentMask"; let value = Variant::Empty; let node_id = NodeId::new(0, 21132); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15658), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21130), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 15658), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21130), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_66(address_space: &mut AddressSpace) { @@ -988,13 +2317,33 @@ fn add_variable_66(address_space: &mut AddressSpace) { let name = "NetworkInterface"; let value = Variant::Empty; let node_id = NodeId::new(0, 15154); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17579), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16309), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15072), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17579), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16309), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15072), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_67(address_space: &mut AddressSpace) { @@ -1002,12 +2351,35 @@ fn add_variable_67(address_space: &mut AddressSpace) { let name = "Selections"; let value = Variant::Empty; let node_id = NodeId::new(0, 17579); - let node = Variable::new_data_value(&node_id, name, name, DataTypeId::Boolean, Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15154), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + DataTypeId::Boolean, + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15154), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_68(address_space: &mut AddressSpace) { @@ -1016,11 +2388,26 @@ fn add_variable_68(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 21134); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 3), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21133), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21133), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_69(address_space: &mut AddressSpace) { @@ -1028,12 +2415,28 @@ fn add_variable_69(address_space: &mut AddressSpace) { let name = "MessageRepeatDelay"; let value = Variant::Empty; let node_id = NodeId::new(0, 21135); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21133), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21133), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_70(address_space: &mut AddressSpace) { @@ -1041,12 +2444,28 @@ fn add_variable_70(address_space: &mut AddressSpace) { let name = "ResourceUri"; let value = Variant::Empty; let node_id = NodeId::new(0, 15156); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15155), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15155), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_71(address_space: &mut AddressSpace) { @@ -1054,12 +2473,28 @@ fn add_variable_71(address_space: &mut AddressSpace) { let name = "AuthenticationProfileUri"; let value = Variant::Empty; let node_id = NodeId::new(0, 15178); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15155), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15155), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_72(address_space: &mut AddressSpace) { @@ -1067,12 +2502,28 @@ fn add_variable_72(address_space: &mut AddressSpace) { let name = "QueueName"; let value = Variant::Empty; let node_id = NodeId::new(0, 21137); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21136), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21136), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_73(address_space: &mut AddressSpace) { @@ -1080,12 +2531,28 @@ fn add_variable_73(address_space: &mut AddressSpace) { let name = "ResourceUri"; let value = Variant::Empty; let node_id = NodeId::new(0, 15246); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21136), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21136), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_74(address_space: &mut AddressSpace) { @@ -1093,12 +2560,28 @@ fn add_variable_74(address_space: &mut AddressSpace) { let name = "AuthenticationProfileUri"; let value = Variant::Empty; let node_id = NodeId::new(0, 15247); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21136), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21136), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_75(address_space: &mut AddressSpace) { @@ -1106,12 +2589,35 @@ fn add_variable_75(address_space: &mut AddressSpace) { let name = "RequestedDeliveryGuarantee"; let value = Variant::Empty; let node_id = NodeId::new(0, 15249); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15008), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21136), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 15008), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21136), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_76(address_space: &mut AddressSpace) { @@ -1119,12 +2625,28 @@ fn add_variable_76(address_space: &mut AddressSpace) { let name = "QueueName"; let value = Variant::Empty; let node_id = NodeId::new(0, 21139); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21138), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21138), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_77(address_space: &mut AddressSpace) { @@ -1132,12 +2654,28 @@ fn add_variable_77(address_space: &mut AddressSpace) { let name = "MetaDataQueueName"; let value = Variant::Empty; let node_id = NodeId::new(0, 21140); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21138), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21138), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_78(address_space: &mut AddressSpace) { @@ -1145,12 +2683,28 @@ fn add_variable_78(address_space: &mut AddressSpace) { let name = "ResourceUri"; let value = Variant::Empty; let node_id = NodeId::new(0, 15250); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21138), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21138), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_79(address_space: &mut AddressSpace) { @@ -1158,12 +2712,28 @@ fn add_variable_79(address_space: &mut AddressSpace) { let name = "AuthenticationProfileUri"; let value = Variant::Empty; let node_id = NodeId::new(0, 15251); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21138), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21138), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_80(address_space: &mut AddressSpace) { @@ -1171,12 +2741,35 @@ fn add_variable_80(address_space: &mut AddressSpace) { let name = "RequestedDeliveryGuarantee"; let value = Variant::Empty; let node_id = NodeId::new(0, 15330); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15008), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21138), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 15008), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21138), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_81(address_space: &mut AddressSpace) { @@ -1184,12 +2777,28 @@ fn add_variable_81(address_space: &mut AddressSpace) { let name = "MetaDataUpdateTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 21141); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21138), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21138), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_82(address_space: &mut AddressSpace) { @@ -1197,12 +2806,28 @@ fn add_variable_82(address_space: &mut AddressSpace) { let name = "QueueName"; let value = Variant::Empty; let node_id = NodeId::new(0, 21143); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21142), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21142), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_83(address_space: &mut AddressSpace) { @@ -1210,12 +2835,28 @@ fn add_variable_83(address_space: &mut AddressSpace) { let name = "ResourceUri"; let value = Variant::Empty; let node_id = NodeId::new(0, 15334); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21142), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21142), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_84(address_space: &mut AddressSpace) { @@ -1223,12 +2864,28 @@ fn add_variable_84(address_space: &mut AddressSpace) { let name = "AuthenticationProfileUri"; let value = Variant::Empty; let node_id = NodeId::new(0, 15419); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21142), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21142), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_85(address_space: &mut AddressSpace) { @@ -1236,12 +2893,35 @@ fn add_variable_85(address_space: &mut AddressSpace) { let name = "RequestedDeliveryGuarantee"; let value = Variant::Empty; let node_id = NodeId::new(0, 15420); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15008), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21142), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 15008), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21142), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_86(address_space: &mut AddressSpace) { @@ -1249,12 +2929,28 @@ fn add_variable_86(address_space: &mut AddressSpace) { let name = "MetaDataQueueName"; let value = Variant::Empty; let node_id = NodeId::new(0, 21144); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21142), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21142), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_87(address_space: &mut AddressSpace) { @@ -1262,13 +2958,33 @@ fn add_variable_87(address_space: &mut AddressSpace) { let name = "NetworkInterface"; let value = Variant::Empty; let node_id = NodeId::new(0, 21146); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17582), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16309), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21145), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17582), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16309), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21145), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_88(address_space: &mut AddressSpace) { @@ -1276,12 +2992,35 @@ fn add_variable_88(address_space: &mut AddressSpace) { let name = "Selections"; let value = Variant::Empty; let node_id = NodeId::new(0, 17582); - let node = Variable::new_data_value(&node_id, name, name, DataTypeId::Boolean, Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21146), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + DataTypeId::Boolean, + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21146), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_89(address_space: &mut AddressSpace) { @@ -1289,12 +3028,28 @@ fn add_variable_89(address_space: &mut AddressSpace) { let name = "Url"; let value = Variant::Empty; let node_id = NodeId::new(0, 21149); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21147), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21147), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variabletype_90(address_space: &mut AddressSpace) { @@ -1302,13 +3057,36 @@ fn add_variabletype_90(address_space: &mut AddressSpace) { let name = "PubSubDiagnosticsCounterType"; let node_id = NodeId::new(0, 19725); let node = VariableType::new(&node_id, name, name, NodeId::new(0, 7), false, -1); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19726), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19727), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19728), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19729), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19726), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19727), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19728), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19729), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_91(address_space: &mut AddressSpace) { @@ -1316,12 +3094,31 @@ fn add_method_91(address_space: &mut AddressSpace) { let name = "GetSecurityKeys"; let node_id = NodeId::new(0, 15907); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15908), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15909), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15906), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15908), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15909), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15906), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_92(address_space: &mut AddressSpace) { @@ -1329,12 +3126,31 @@ fn add_method_92(address_space: &mut AddressSpace) { let name = "GetSecurityGroup"; let node_id = NodeId::new(0, 15910); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15911), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15912), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15906), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15911), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15912), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15906), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_93(address_space: &mut AddressSpace) { @@ -1342,12 +3158,31 @@ fn add_method_93(address_space: &mut AddressSpace) { let name = "AddSecurityGroup"; let node_id = NodeId::new(0, 15914); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15915), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15916), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15913), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15915), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15916), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15913), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_94(address_space: &mut AddressSpace) { @@ -1355,11 +3190,26 @@ fn add_method_94(address_space: &mut AddressSpace) { let name = "RemoveSecurityGroup"; let node_id = NodeId::new(0, 15917); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15918), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15913), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15918), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15913), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_95(address_space: &mut AddressSpace) { @@ -1367,12 +3217,31 @@ fn add_method_95(address_space: &mut AddressSpace) { let name = "AddSecurityGroup"; let node_id = NodeId::new(0, 15454); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15455), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15456), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15453), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15455), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15456), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15453), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_96(address_space: &mut AddressSpace) { @@ -1380,11 +3249,26 @@ fn add_method_96(address_space: &mut AddressSpace) { let name = "RemoveSecurityGroup"; let node_id = NodeId::new(0, 15457); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15458), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15453), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15458), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15453), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_97(address_space: &mut AddressSpace) { @@ -1392,12 +3276,31 @@ fn add_method_97(address_space: &mut AddressSpace) { let name = "AddSecurityGroup"; let node_id = NodeId::new(0, 15461); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15462), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15463), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15452), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15462), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15463), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15452), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_98(address_space: &mut AddressSpace) { @@ -1405,11 +3308,26 @@ fn add_method_98(address_space: &mut AddressSpace) { let name = "RemoveSecurityGroup"; let node_id = NodeId::new(0, 15464); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15465), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15452), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15465), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15452), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_99(address_space: &mut AddressSpace) { @@ -1417,11 +3335,26 @@ fn add_method_99(address_space: &mut AddressSpace) { let name = "SetSecurityKeys"; let node_id = NodeId::new(0, 17296); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17297), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14416), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17297), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14416), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_100(address_space: &mut AddressSpace) { @@ -1429,11 +3362,29 @@ fn add_method_100(address_space: &mut AddressSpace) { let name = "AddConnection"; let node_id = NodeId::new(0, 16598); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16599), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16600), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14416), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16599), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16600), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14416), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } - diff --git a/server/src/address_space/generated/nodeset_14_11.rs b/server/src/address_space/generated/nodeset_14_11.rs index 82a46d219..b4efa3f18 100644 --- a/server/src/address_space/generated/nodeset_14_11.rs +++ b/server/src/address_space/generated/nodeset_14_11.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.NodeSet2.Part14.xml by tools/schema/gen_address_space.js // DO NOT EDIT THIS FILE @@ -9,8 +9,11 @@ use std::{convert::TryFrom, str::FromStr}; #[allow(unused_imports)] use crate::{ - address_space::{EventNotifier, types::*}, - prelude::{DataTypeId, ExtensionObject, LocalizedText, NodeId, ReferenceTypeId, service_types::Argument, UAString, Variant, VariantTypeId} + address_space::{types::*, EventNotifier}, + prelude::{ + service_types::Argument, DataTypeId, ExtensionObject, LocalizedText, NodeId, + ReferenceTypeId, UAString, Variant, VariantTypeId, + }, }; #[allow(unused_variables)] @@ -71,11 +74,26 @@ fn add_method_1(address_space: &mut AddressSpace) { let name = "RemoveConnection"; let node_id = NodeId::new(0, 14432); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 14433), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14416), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 14433), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14416), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_2(address_space: &mut AddressSpace) { @@ -83,10 +101,21 @@ fn add_method_2(address_space: &mut AddressSpace) { let name = "Reset"; let node_id = NodeId::new(0, 18727); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18715), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18715), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_3(address_space: &mut AddressSpace) { @@ -94,11 +123,26 @@ fn add_method_3(address_space: &mut AddressSpace) { let name = "GetSecurityKeys"; let node_id = NodeId::new(0, 15215); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15216), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15217), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 14443), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15216), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15217), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14443), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_4(address_space: &mut AddressSpace) { @@ -106,11 +150,26 @@ fn add_method_4(address_space: &mut AddressSpace) { let name = "GetSecurityGroup"; let node_id = NodeId::new(0, 15440); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15441), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15442), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 14443), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15441), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15442), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14443), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_5(address_space: &mut AddressSpace) { @@ -118,11 +177,26 @@ fn add_method_5(address_space: &mut AddressSpace) { let name = "AddSecurityGroup"; let node_id = NodeId::new(0, 15444); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15445), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15446), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15443), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15445), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15446), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15443), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_6(address_space: &mut AddressSpace) { @@ -130,10 +204,21 @@ fn add_method_6(address_space: &mut AddressSpace) { let name = "RemoveSecurityGroup"; let node_id = NodeId::new(0, 15447); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15448), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15443), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15448), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15443), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_7(address_space: &mut AddressSpace) { @@ -141,11 +226,26 @@ fn add_method_7(address_space: &mut AddressSpace) { let name = "AddConnection"; let node_id = NodeId::new(0, 17366); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17367), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17368), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 14443), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17367), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17368), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14443), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_8(address_space: &mut AddressSpace) { @@ -153,10 +253,21 @@ fn add_method_8(address_space: &mut AddressSpace) { let name = "RemoveConnection"; let node_id = NodeId::new(0, 17369); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17370), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 14443), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17370), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14443), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_9(address_space: &mut AddressSpace) { @@ -164,9 +275,14 @@ fn add_method_9(address_space: &mut AddressSpace) { let name = "Reset"; let node_id = NodeId::new(0, 17421); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17409), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 17409), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + )]), + ); } fn add_method_10(address_space: &mut AddressSpace) { @@ -174,12 +290,31 @@ fn add_method_10(address_space: &mut AddressSpace) { let name = "AddExtensionField"; let node_id = NodeId::new(0, 15482); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15483), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15484), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15481), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15483), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15484), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15481), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_11(address_space: &mut AddressSpace) { @@ -187,11 +322,26 @@ fn add_method_11(address_space: &mut AddressSpace) { let name = "RemoveExtensionField"; let node_id = NodeId::new(0, 15485); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15486), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15481), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15486), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15481), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_12(address_space: &mut AddressSpace) { @@ -199,12 +349,31 @@ fn add_method_12(address_space: &mut AddressSpace) { let name = "AddExtensionField"; let node_id = NodeId::new(0, 15491); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15492), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15493), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15489), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15492), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15493), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15489), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_13(address_space: &mut AddressSpace) { @@ -212,11 +381,26 @@ fn add_method_13(address_space: &mut AddressSpace) { let name = "RemoveExtensionField"; let node_id = NodeId::new(0, 15494); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15495), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15489), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15495), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15489), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_14(address_space: &mut AddressSpace) { @@ -224,12 +408,31 @@ fn add_method_14(address_space: &mut AddressSpace) { let name = "AddVariables"; let node_id = NodeId::new(0, 14555); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 14556), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 14557), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14534), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 14556), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14557), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14534), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_15(address_space: &mut AddressSpace) { @@ -237,12 +440,31 @@ fn add_method_15(address_space: &mut AddressSpace) { let name = "RemoveVariables"; let node_id = NodeId::new(0, 14558); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 14559), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 14560), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14534), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 14559), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14560), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14534), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_16(address_space: &mut AddressSpace) { @@ -250,12 +472,31 @@ fn add_method_16(address_space: &mut AddressSpace) { let name = "ModifyFieldSelection"; let node_id = NodeId::new(0, 15052); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15053), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15517), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14572), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15053), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15517), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14572), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_17(address_space: &mut AddressSpace) { @@ -263,12 +504,31 @@ fn add_method_17(address_space: &mut AddressSpace) { let name = "AddPublishedDataItems"; let node_id = NodeId::new(0, 14479); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 14480), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 14481), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14478), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 14480), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14481), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14478), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_18(address_space: &mut AddressSpace) { @@ -276,12 +536,31 @@ fn add_method_18(address_space: &mut AddressSpace) { let name = "AddPublishedEvents"; let node_id = NodeId::new(0, 14482); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 14483), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 14484), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14478), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 14483), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14484), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14478), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_19(address_space: &mut AddressSpace) { @@ -289,12 +568,31 @@ fn add_method_19(address_space: &mut AddressSpace) { let name = "AddPublishedDataItemsTemplate"; let node_id = NodeId::new(0, 16842); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16843), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16853), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14478), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16843), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16853), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14478), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_20(address_space: &mut AddressSpace) { @@ -302,12 +600,31 @@ fn add_method_20(address_space: &mut AddressSpace) { let name = "AddPublishedEventsTemplate"; let node_id = NodeId::new(0, 16881); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16882), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16883), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14478), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16882), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16883), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14478), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_21(address_space: &mut AddressSpace) { @@ -315,11 +632,26 @@ fn add_method_21(address_space: &mut AddressSpace) { let name = "RemovePublishedDataSet"; let node_id = NodeId::new(0, 14485); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 14486), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14478), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 14486), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14478), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_22(address_space: &mut AddressSpace) { @@ -327,12 +659,31 @@ fn add_method_22(address_space: &mut AddressSpace) { let name = "AddDataSetFolder"; let node_id = NodeId::new(0, 16884); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16894), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16922), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14478), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16894), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16922), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14478), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_23(address_space: &mut AddressSpace) { @@ -340,11 +691,26 @@ fn add_method_23(address_space: &mut AddressSpace) { let name = "RemoveDataSetFolder"; let node_id = NodeId::new(0, 16923); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16924), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14478), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16924), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14478), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_24(address_space: &mut AddressSpace) { @@ -352,12 +718,31 @@ fn add_method_24(address_space: &mut AddressSpace) { let name = "AddPublishedDataItems"; let node_id = NodeId::new(0, 14493); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 14494), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 14495), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14477), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 14494), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14495), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14477), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_25(address_space: &mut AddressSpace) { @@ -365,12 +750,31 @@ fn add_method_25(address_space: &mut AddressSpace) { let name = "AddPublishedEvents"; let node_id = NodeId::new(0, 14496); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 14497), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 14498), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14477), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 14497), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14498), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14477), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_26(address_space: &mut AddressSpace) { @@ -378,12 +782,31 @@ fn add_method_26(address_space: &mut AddressSpace) { let name = "AddPublishedDataItemsTemplate"; let node_id = NodeId::new(0, 16935); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16958), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16959), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14477), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16958), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16959), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14477), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_27(address_space: &mut AddressSpace) { @@ -391,12 +814,31 @@ fn add_method_27(address_space: &mut AddressSpace) { let name = "AddPublishedEventsTemplate"; let node_id = NodeId::new(0, 16960); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16961), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16971), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14477), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16961), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16971), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14477), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_28(address_space: &mut AddressSpace) { @@ -404,11 +846,26 @@ fn add_method_28(address_space: &mut AddressSpace) { let name = "RemovePublishedDataSet"; let node_id = NodeId::new(0, 14499); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 14500), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14477), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 14500), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14477), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_29(address_space: &mut AddressSpace) { @@ -416,12 +873,31 @@ fn add_method_29(address_space: &mut AddressSpace) { let name = "AddDataSetFolder"; let node_id = NodeId::new(0, 16994); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16995), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16996), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14477), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16995), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16996), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14477), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_30(address_space: &mut AddressSpace) { @@ -429,11 +905,26 @@ fn add_method_30(address_space: &mut AddressSpace) { let name = "RemoveDataSetFolder"; let node_id = NodeId::new(0, 16997); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17007), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14477), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17007), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14477), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_31(address_space: &mut AddressSpace) { @@ -441,10 +932,21 @@ fn add_method_31(address_space: &mut AddressSpace) { let name = "Reset"; let node_id = NodeId::new(0, 19253); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19241), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19241), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_32(address_space: &mut AddressSpace) { @@ -452,12 +954,31 @@ fn add_method_32(address_space: &mut AddressSpace) { let name = "AddWriterGroup"; let node_id = NodeId::new(0, 17427); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17428), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17456), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14209), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17428), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17456), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14209), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_33(address_space: &mut AddressSpace) { @@ -465,12 +986,31 @@ fn add_method_33(address_space: &mut AddressSpace) { let name = "AddReaderGroup"; let node_id = NodeId::new(0, 17465); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17507), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17508), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14209), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17507), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17508), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14209), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_34(address_space: &mut AddressSpace) { @@ -478,11 +1018,26 @@ fn add_method_34(address_space: &mut AddressSpace) { let name = "RemoveGroup"; let node_id = NodeId::new(0, 14225); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 14226), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14209), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 14226), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14209), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_35(address_space: &mut AddressSpace) { @@ -490,10 +1045,21 @@ fn add_method_35(address_space: &mut AddressSpace) { let name = "Reset"; let node_id = NodeId::new(0, 17824); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17812), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17812), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_36(address_space: &mut AddressSpace) { @@ -501,12 +1067,31 @@ fn add_method_36(address_space: &mut AddressSpace) { let name = "AddDataSetWriter"; let node_id = NodeId::new(0, 17969); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17976), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17987), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17725), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17976), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17987), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17725), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_37(address_space: &mut AddressSpace) { @@ -514,11 +1099,26 @@ fn add_method_37(address_space: &mut AddressSpace) { let name = "RemoveDataSetWriter"; let node_id = NodeId::new(0, 17992); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17993), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17725), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17993), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17725), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_38(address_space: &mut AddressSpace) { @@ -526,10 +1126,21 @@ fn add_method_38(address_space: &mut AddressSpace) { let name = "Reset"; let node_id = NodeId::new(0, 21027); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21015), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21015), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_39(address_space: &mut AddressSpace) { @@ -537,12 +1148,31 @@ fn add_method_39(address_space: &mut AddressSpace) { let name = "AddDataSetReader"; let node_id = NodeId::new(0, 21082); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 21083), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 21084), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17999), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 21083), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21084), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17999), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_40(address_space: &mut AddressSpace) { @@ -550,11 +1180,26 @@ fn add_method_40(address_space: &mut AddressSpace) { let name = "RemoveDataSetReader"; let node_id = NodeId::new(0, 21085); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 21086), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17999), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 21086), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17999), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_41(address_space: &mut AddressSpace) { @@ -562,10 +1207,21 @@ fn add_method_41(address_space: &mut AddressSpace) { let name = "Reset"; let node_id = NodeId::new(0, 19562); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19550), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19550), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_42(address_space: &mut AddressSpace) { @@ -573,10 +1229,21 @@ fn add_method_42(address_space: &mut AddressSpace) { let name = "Reset"; let node_id = NodeId::new(0, 19621); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19609), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19609), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_43(address_space: &mut AddressSpace) { @@ -584,12 +1251,31 @@ fn add_method_43(address_space: &mut AddressSpace) { let name = "CreateTargetVariables"; let node_id = NodeId::new(0, 17386); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17387), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17388), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15306), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17387), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17388), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15306), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_44(address_space: &mut AddressSpace) { @@ -597,12 +1283,31 @@ fn add_method_44(address_space: &mut AddressSpace) { let name = "CreateDataSetMirror"; let node_id = NodeId::new(0, 17389); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17390), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17391), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15306), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17390), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17391), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15306), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_45(address_space: &mut AddressSpace) { @@ -610,12 +1315,31 @@ fn add_method_45(address_space: &mut AddressSpace) { let name = "AddTargetVariables"; let node_id = NodeId::new(0, 15115); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15116), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15117), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15111), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15116), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15117), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15111), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_46(address_space: &mut AddressSpace) { @@ -623,12 +1347,31 @@ fn add_method_46(address_space: &mut AddressSpace) { let name = "RemoveTargetVariables"; let node_id = NodeId::new(0, 15118); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15119), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15120), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15111), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15119), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15120), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15111), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_47(address_space: &mut AddressSpace) { @@ -636,10 +1379,21 @@ fn add_method_47(address_space: &mut AddressSpace) { let name = "Enable"; let node_id = NodeId::new(0, 14645); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14643), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14643), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_48(address_space: &mut AddressSpace) { @@ -647,10 +1401,21 @@ fn add_method_48(address_space: &mut AddressSpace) { let name = "Disable"; let node_id = NodeId::new(0, 14646); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14643), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14643), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_49(address_space: &mut AddressSpace) { @@ -658,9 +1423,19 @@ fn add_method_49(address_space: &mut AddressSpace) { let name = "Reset"; let node_id = NodeId::new(0, 19689); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19677), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19677), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } - diff --git a/server/src/address_space/generated/nodeset_14_2.rs b/server/src/address_space/generated/nodeset_14_2.rs index 48643b23a..71703a79a 100644 --- a/server/src/address_space/generated/nodeset_14_2.rs +++ b/server/src/address_space/generated/nodeset_14_2.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.NodeSet2.Part14.xml by tools/schema/gen_address_space.js // DO NOT EDIT THIS FILE @@ -9,8 +9,11 @@ use std::{convert::TryFrom, str::FromStr}; #[allow(unused_imports)] use crate::{ - address_space::{EventNotifier, types::*}, - prelude::{DataTypeId, ExtensionObject, LocalizedText, NodeId, ReferenceTypeId, service_types::Argument, UAString, Variant, VariantTypeId} + address_space::{types::*, EventNotifier}, + prelude::{ + service_types::Argument, DataTypeId, ExtensionObject, LocalizedText, NodeId, + ReferenceTypeId, UAString, Variant, VariantTypeId, + }, }; #[allow(unused_variables)] @@ -122,11 +125,26 @@ fn add_object_1(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 21153); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15520), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 21165), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15520), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 21165), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_2(address_space: &mut AddressSpace) { @@ -134,11 +152,26 @@ fn add_object_2(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 15701); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15621), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 15866), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15621), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 15866), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_3(address_space: &mut AddressSpace) { @@ -146,11 +179,26 @@ fn add_object_3(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 15702); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15622), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 15869), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15622), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 15869), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_4(address_space: &mut AddressSpace) { @@ -158,11 +206,26 @@ fn add_object_4(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 15703); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15623), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 15872), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15623), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 15872), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_5(address_space: &mut AddressSpace) { @@ -170,11 +233,26 @@ fn add_object_5(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 15705); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15628), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 15877), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15628), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 15877), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_6(address_space: &mut AddressSpace) { @@ -182,11 +260,26 @@ fn add_object_6(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 15706); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15629), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 15880), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15629), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 15880), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_7(address_space: &mut AddressSpace) { @@ -194,11 +287,26 @@ fn add_object_7(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 15707); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15630), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 15883), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15630), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 15883), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_8(address_space: &mut AddressSpace) { @@ -206,11 +314,26 @@ fn add_object_8(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 15712); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15631), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 15886), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15631), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 15886), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_9(address_space: &mut AddressSpace) { @@ -218,11 +341,26 @@ fn add_object_9(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 14848); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 14744), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 21002), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 14744), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 21002), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_10(address_space: &mut AddressSpace) { @@ -230,11 +368,26 @@ fn add_object_10(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 15713); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15635), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 15889), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15635), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 15889), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_11(address_space: &mut AddressSpace) { @@ -242,11 +395,26 @@ fn add_object_11(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 21154); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15530), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 21168), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15530), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 21168), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_12(address_space: &mut AddressSpace) { @@ -254,11 +422,26 @@ fn add_object_12(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 15715); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15645), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 15895), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15645), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 15895), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_13(address_space: &mut AddressSpace) { @@ -266,11 +449,26 @@ fn add_object_13(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 15717); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15652), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 15898), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15652), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 15898), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_14(address_space: &mut AddressSpace) { @@ -278,11 +476,26 @@ fn add_object_14(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 15718); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15653), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 15919), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15653), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 15919), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_15(address_space: &mut AddressSpace) { @@ -290,11 +503,26 @@ fn add_object_15(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 15719); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15657), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 15922), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15657), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 15922), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_16(address_space: &mut AddressSpace) { @@ -302,11 +530,26 @@ fn add_object_16(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 15724); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15664), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 15925), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15664), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 15925), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_17(address_space: &mut AddressSpace) { @@ -314,11 +557,26 @@ fn add_object_17(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 15725); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15665), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 15931), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15665), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 15931), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_18(address_space: &mut AddressSpace) { @@ -326,11 +584,26 @@ fn add_object_18(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 17468); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17467), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 17469), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17467), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 17469), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_19(address_space: &mut AddressSpace) { @@ -338,11 +611,26 @@ fn add_object_19(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 21155); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15532), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 21171), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15532), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 21171), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_20(address_space: &mut AddressSpace) { @@ -350,11 +638,26 @@ fn add_object_20(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 15479); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15007), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 15524), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15007), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 15524), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_21(address_space: &mut AddressSpace) { @@ -362,11 +665,26 @@ fn add_object_21(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 15727); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15667), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 15940), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15667), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 15940), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_22(address_space: &mut AddressSpace) { @@ -374,11 +692,26 @@ fn add_object_22(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 15729); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15669), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 15943), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15669), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 15943), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_23(address_space: &mut AddressSpace) { @@ -386,11 +719,26 @@ fn add_object_23(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 15733); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15670), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 15946), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15670), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 15946), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_24(address_space: &mut AddressSpace) { @@ -398,11 +746,26 @@ fn add_object_24(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 15950); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15534), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 16027), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15534), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 16027), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_25(address_space: &mut AddressSpace) { @@ -410,11 +773,26 @@ fn add_object_25(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 14796); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 14525), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 14811), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 14525), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 14811), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_26(address_space: &mut AddressSpace) { @@ -422,11 +800,26 @@ fn add_object_26(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 15589); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15487), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 15591), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15487), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 15591), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_27(address_space: &mut AddressSpace) { @@ -434,11 +827,26 @@ fn add_object_27(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 15590); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15488), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 15594), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15488), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 15594), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_28(address_space: &mut AddressSpace) { @@ -446,11 +854,26 @@ fn add_object_28(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 15529); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15005), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 15585), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15005), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 15585), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_29(address_space: &mut AddressSpace) { @@ -458,11 +881,26 @@ fn add_object_29(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 15531); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15006), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 15588), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15006), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 15588), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_30(address_space: &mut AddressSpace) { @@ -470,11 +908,26 @@ fn add_object_30(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 14794); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 14523), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 14805), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 14523), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 14805), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_31(address_space: &mut AddressSpace) { @@ -482,11 +935,26 @@ fn add_object_31(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 14795); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 14524), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 14808), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 14524), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 14808), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_32(address_space: &mut AddressSpace) { @@ -494,11 +962,26 @@ fn add_object_32(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 14803); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 14593), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 14832), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 14593), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 14832), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_33(address_space: &mut AddressSpace) { @@ -506,11 +989,26 @@ fn add_object_33(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 15951); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15578), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 16030), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15578), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 16030), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_34(address_space: &mut AddressSpace) { @@ -518,11 +1016,26 @@ fn add_object_34(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 15952); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15580), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 16033), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15580), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 16033), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_35(address_space: &mut AddressSpace) { @@ -530,11 +1043,26 @@ fn add_object_35(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 14319); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 14273), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 14320), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 14273), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 14320), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_36(address_space: &mut AddressSpace) { @@ -542,11 +1070,26 @@ fn add_object_36(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 15953); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15581), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 16037), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15581), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 16037), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_37(address_space: &mut AddressSpace) { @@ -554,11 +1097,26 @@ fn add_object_37(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 15954); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15582), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 16040), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15582), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 16040), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_38(address_space: &mut AddressSpace) { @@ -566,11 +1124,26 @@ fn add_object_38(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 15955); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15597), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 16047), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15597), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 16047), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_39(address_space: &mut AddressSpace) { @@ -578,11 +1151,26 @@ fn add_object_39(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 15956); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15598), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 16050), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15598), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 16050), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_40(address_space: &mut AddressSpace) { @@ -590,11 +1178,26 @@ fn add_object_40(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 15987); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15605), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 16053), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15605), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 16053), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_41(address_space: &mut AddressSpace) { @@ -602,11 +1205,26 @@ fn add_object_41(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 15988); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15609), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 16056), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15609), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 16056), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_42(address_space: &mut AddressSpace) { @@ -614,11 +1232,26 @@ fn add_object_42(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 21174); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15480), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 21180), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15480), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 21180), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_43(address_space: &mut AddressSpace) { @@ -626,11 +1259,26 @@ fn add_object_43(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 15990); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15611), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 16062), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15611), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 16062), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_44(address_space: &mut AddressSpace) { @@ -638,11 +1286,26 @@ fn add_object_44(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 15991); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15616), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 16065), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15616), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 16065), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_45(address_space: &mut AddressSpace) { @@ -650,11 +1313,26 @@ fn add_object_45(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 15992); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15617), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 16068), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15617), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 16068), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_46(address_space: &mut AddressSpace) { @@ -662,11 +1340,26 @@ fn add_object_46(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 15993); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15618), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 16071), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15618), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 16071), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_47(address_space: &mut AddressSpace) { @@ -674,11 +1367,26 @@ fn add_object_47(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 21175); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15502), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 21183), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15502), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 21183), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_48(address_space: &mut AddressSpace) { @@ -686,11 +1394,26 @@ fn add_object_48(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 21176); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15510), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 21186), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15510), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 21186), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_49(address_space: &mut AddressSpace) { @@ -698,11 +1421,26 @@ fn add_object_49(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 21177); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15520), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 21189), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15520), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 21189), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_50(address_space: &mut AddressSpace) { @@ -710,11 +1448,26 @@ fn add_object_50(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 15995); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15621), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 16077), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15621), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 16077), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_51(address_space: &mut AddressSpace) { @@ -722,11 +1475,26 @@ fn add_object_51(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 15996); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15622), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 16080), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15622), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 16080), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_52(address_space: &mut AddressSpace) { @@ -734,11 +1502,26 @@ fn add_object_52(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 16007); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15623), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 16083), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15623), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 16083), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_53(address_space: &mut AddressSpace) { @@ -746,11 +1529,26 @@ fn add_object_53(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 16008); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15628), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 16086), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15628), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 16086), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_54(address_space: &mut AddressSpace) { @@ -758,11 +1556,26 @@ fn add_object_54(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 16009); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15629), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 16089), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15629), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 16089), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_55(address_space: &mut AddressSpace) { @@ -770,11 +1583,26 @@ fn add_object_55(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 16010); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15630), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 16092), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15630), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 16092), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_56(address_space: &mut AddressSpace) { @@ -782,11 +1610,26 @@ fn add_object_56(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 16011); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15631), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 16095), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15631), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 16095), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_57(address_space: &mut AddressSpace) { @@ -794,11 +1637,26 @@ fn add_object_57(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 14804); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 14744), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 14835), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 14744), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 14835), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_58(address_space: &mut AddressSpace) { @@ -806,11 +1664,26 @@ fn add_object_58(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 16012); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15635), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 16098), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15635), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 16098), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_59(address_space: &mut AddressSpace) { @@ -818,11 +1691,26 @@ fn add_object_59(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 21178); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15530), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 21192), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15530), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 21192), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_60(address_space: &mut AddressSpace) { @@ -830,11 +1718,26 @@ fn add_object_60(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 16014); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15645), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 16104), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15645), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 16104), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_61(address_space: &mut AddressSpace) { @@ -842,11 +1745,26 @@ fn add_object_61(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 16015); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15652), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 16107), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15652), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 16107), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_62(address_space: &mut AddressSpace) { @@ -854,11 +1772,26 @@ fn add_object_62(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 16016); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15653), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 16110), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15653), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 16110), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_63(address_space: &mut AddressSpace) { @@ -866,11 +1799,26 @@ fn add_object_63(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 16017); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15657), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 16113), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15657), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 16113), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_64(address_space: &mut AddressSpace) { @@ -878,11 +1826,26 @@ fn add_object_64(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 16018); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15664), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 16116), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15664), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 16116), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_65(address_space: &mut AddressSpace) { @@ -890,11 +1853,26 @@ fn add_object_65(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 16019); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15665), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 16119), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15665), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 16119), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_66(address_space: &mut AddressSpace) { @@ -902,11 +1880,26 @@ fn add_object_66(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 17472); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17467), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 17473), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17467), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 17473), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_67(address_space: &mut AddressSpace) { @@ -914,11 +1907,26 @@ fn add_object_67(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 21179); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15532), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 21195), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15532), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 21195), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_68(address_space: &mut AddressSpace) { @@ -926,11 +1934,26 @@ fn add_object_68(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 15579); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15007), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 15640), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15007), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 15640), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_69(address_space: &mut AddressSpace) { @@ -938,11 +1961,26 @@ fn add_object_69(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 16021); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15667), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 16125), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15667), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 16125), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_70(address_space: &mut AddressSpace) { @@ -950,11 +1988,26 @@ fn add_object_70(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 16022); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15669), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 16144), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15669), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 16144), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_71(address_space: &mut AddressSpace) { @@ -962,11 +2015,26 @@ fn add_object_71(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 16023); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15670), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 16147), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15670), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 16147), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_72(address_space: &mut AddressSpace) { @@ -974,10 +2042,21 @@ fn add_object_72(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 16151); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15534), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15534), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_73(address_space: &mut AddressSpace) { @@ -985,10 +2064,21 @@ fn add_object_73(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15057); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 14525), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 14525), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_74(address_space: &mut AddressSpace) { @@ -996,10 +2086,21 @@ fn add_object_74(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15058); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15487), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15487), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_75(address_space: &mut AddressSpace) { @@ -1007,10 +2108,21 @@ fn add_object_75(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15059); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15488), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15488), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_76(address_space: &mut AddressSpace) { @@ -1018,10 +2130,21 @@ fn add_object_76(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15700); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15005), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15005), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_77(address_space: &mut AddressSpace) { @@ -1029,10 +2152,21 @@ fn add_object_77(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15714); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15006), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15006), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_78(address_space: &mut AddressSpace) { @@ -1040,10 +2174,21 @@ fn add_object_78(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15050); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 14523), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 14523), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_79(address_space: &mut AddressSpace) { @@ -1051,10 +2196,21 @@ fn add_object_79(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15051); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 14524), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 14524), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_80(address_space: &mut AddressSpace) { @@ -1062,10 +2218,21 @@ fn add_object_80(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15049); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 14593), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 14593), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_81(address_space: &mut AddressSpace) { @@ -1073,10 +2240,21 @@ fn add_object_81(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 16152); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15578), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15578), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_82(address_space: &mut AddressSpace) { @@ -1084,10 +2262,21 @@ fn add_object_82(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 16153); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15580), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15580), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_83(address_space: &mut AddressSpace) { @@ -1095,10 +2284,21 @@ fn add_object_83(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15060); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 14273), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 14273), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_84(address_space: &mut AddressSpace) { @@ -1106,10 +2306,21 @@ fn add_object_84(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 16154); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15581), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15581), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_85(address_space: &mut AddressSpace) { @@ -1117,10 +2328,21 @@ fn add_object_85(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 16155); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15582), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15582), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_86(address_space: &mut AddressSpace) { @@ -1128,10 +2350,21 @@ fn add_object_86(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 16156); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15597), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15597), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_87(address_space: &mut AddressSpace) { @@ -1139,10 +2372,21 @@ fn add_object_87(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 16157); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15598), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15598), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_88(address_space: &mut AddressSpace) { @@ -1150,10 +2394,21 @@ fn add_object_88(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 16158); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15605), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15605), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_89(address_space: &mut AddressSpace) { @@ -1161,10 +2416,21 @@ fn add_object_89(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 16159); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15609), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15609), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_90(address_space: &mut AddressSpace) { @@ -1172,10 +2438,21 @@ fn add_object_90(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 21198); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15480), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15480), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_91(address_space: &mut AddressSpace) { @@ -1183,10 +2460,21 @@ fn add_object_91(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 16161); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15611), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15611), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_92(address_space: &mut AddressSpace) { @@ -1194,10 +2482,21 @@ fn add_object_92(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 16280); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15616), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15616), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_93(address_space: &mut AddressSpace) { @@ -1205,10 +2504,21 @@ fn add_object_93(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 16281); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15617), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15617), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_94(address_space: &mut AddressSpace) { @@ -1216,10 +2526,21 @@ fn add_object_94(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 16282); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15618), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15618), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_95(address_space: &mut AddressSpace) { @@ -1227,10 +2548,21 @@ fn add_object_95(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 21199); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15502), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15502), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_96(address_space: &mut AddressSpace) { @@ -1238,10 +2570,21 @@ fn add_object_96(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 21200); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15510), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15510), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_97(address_space: &mut AddressSpace) { @@ -1249,10 +2592,21 @@ fn add_object_97(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 21201); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15520), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15520), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_98(address_space: &mut AddressSpace) { @@ -1260,10 +2614,21 @@ fn add_object_98(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 16284); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15621), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15621), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_99(address_space: &mut AddressSpace) { @@ -1271,10 +2636,21 @@ fn add_object_99(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 16285); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15622), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15622), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_100(address_space: &mut AddressSpace) { @@ -1282,9 +2658,19 @@ fn add_object_100(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 16286); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15623), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15623), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } - diff --git a/server/src/address_space/generated/nodeset_14_3.rs b/server/src/address_space/generated/nodeset_14_3.rs index 6885fedeb..8d9dae15d 100644 --- a/server/src/address_space/generated/nodeset_14_3.rs +++ b/server/src/address_space/generated/nodeset_14_3.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.NodeSet2.Part14.xml by tools/schema/gen_address_space.js // DO NOT EDIT THIS FILE @@ -9,8 +9,11 @@ use std::{convert::TryFrom, str::FromStr}; #[allow(unused_imports)] use crate::{ - address_space::{EventNotifier, types::*}, - prelude::{DataTypeId, ExtensionObject, LocalizedText, NodeId, ReferenceTypeId, service_types::Argument, UAString, Variant, VariantTypeId} + address_space::{types::*, EventNotifier}, + prelude::{ + service_types::Argument, DataTypeId, ExtensionObject, LocalizedText, NodeId, + ReferenceTypeId, UAString, Variant, VariantTypeId, + }, }; #[allow(unused_variables)] @@ -122,10 +125,21 @@ fn add_object_1(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 16287); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15628), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15628), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_2(address_space: &mut AddressSpace) { @@ -133,10 +147,21 @@ fn add_object_2(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 16288); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15629), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15629), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_3(address_space: &mut AddressSpace) { @@ -144,10 +169,21 @@ fn add_object_3(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 16308); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15630), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15630), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_4(address_space: &mut AddressSpace) { @@ -155,10 +191,21 @@ fn add_object_4(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 16310); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15631), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15631), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_5(address_space: &mut AddressSpace) { @@ -166,10 +213,21 @@ fn add_object_5(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15061); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 14744), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 14744), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_6(address_space: &mut AddressSpace) { @@ -177,10 +235,21 @@ fn add_object_6(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 16311); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15635), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15635), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_7(address_space: &mut AddressSpace) { @@ -188,10 +257,21 @@ fn add_object_7(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 21202); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15530), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15530), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_8(address_space: &mut AddressSpace) { @@ -199,10 +279,21 @@ fn add_object_8(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 16323); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15645), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15645), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_9(address_space: &mut AddressSpace) { @@ -210,10 +301,21 @@ fn add_object_9(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 16391); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15652), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15652), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_10(address_space: &mut AddressSpace) { @@ -221,10 +323,21 @@ fn add_object_10(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 16392); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15653), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15653), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_11(address_space: &mut AddressSpace) { @@ -232,10 +345,21 @@ fn add_object_11(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 16393); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15657), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15657), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_12(address_space: &mut AddressSpace) { @@ -243,10 +367,21 @@ fn add_object_12(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 16394); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15664), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15664), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_13(address_space: &mut AddressSpace) { @@ -254,10 +389,21 @@ fn add_object_13(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 16404); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15665), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15665), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_14(address_space: &mut AddressSpace) { @@ -265,10 +411,21 @@ fn add_object_14(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 17476); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17467), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17467), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_15(address_space: &mut AddressSpace) { @@ -276,10 +433,21 @@ fn add_object_15(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 21203); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15532), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15532), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_16(address_space: &mut AddressSpace) { @@ -287,10 +455,21 @@ fn add_object_16(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15726); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15007), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15007), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_17(address_space: &mut AddressSpace) { @@ -298,10 +477,21 @@ fn add_object_17(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 16524); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15667), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15667), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_18(address_space: &mut AddressSpace) { @@ -309,10 +499,21 @@ fn add_object_18(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 16525); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15669), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15669), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_19(address_space: &mut AddressSpace) { @@ -320,10 +521,21 @@ fn add_object_19(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 16526); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15670), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15670), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_objecttype_20(address_space: &mut AddressSpace) { @@ -331,12 +543,31 @@ fn add_objecttype_20(address_space: &mut AddressSpace) { let name = "PubSubKeyServiceType"; let node_id = NodeId::new(0, 15906); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15907), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15910), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15913), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15907), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15910), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15913), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_21(address_space: &mut AddressSpace) { @@ -344,13 +575,36 @@ fn add_objecttype_21(address_space: &mut AddressSpace) { let name = "SecurityGroupFolderType"; let node_id = NodeId::new(0, 15452); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15453), &ReferenceTypeId::Organizes, ReferenceDirection::Forward), - (&NodeId::new(0, 15459), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15461), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15464), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 61), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15453), + &ReferenceTypeId::Organizes, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15459), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15461), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15464), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 61), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_22(address_space: &mut AddressSpace) { @@ -358,14 +612,41 @@ fn add_objecttype_22(address_space: &mut AddressSpace) { let name = "SecurityGroupType"; let node_id = NodeId::new(0, 15471); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15472), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15046), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15047), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15048), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15056), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15472), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15046), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15047), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15048), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15056), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_23(address_space: &mut AddressSpace) { @@ -373,16 +654,51 @@ fn add_objecttype_23(address_space: &mut AddressSpace) { let name = "PublishSubscribeType"; let node_id = NodeId::new(0, 14416); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17296), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16598), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 14432), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 14434), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15844), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 18715), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17479), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15906), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17296), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16598), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14432), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14434), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15844), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18715), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17479), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15906), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_24(address_space: &mut AddressSpace) { @@ -390,13 +706,36 @@ fn add_objecttype_24(address_space: &mut AddressSpace) { let name = "PublishedDataSetType"; let node_id = NodeId::new(0, 14509); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 14519), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15229), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16759), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15481), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 14519), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15229), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16759), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15481), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_25(address_space: &mut AddressSpace) { @@ -404,12 +743,31 @@ fn add_objecttype_25(address_space: &mut AddressSpace) { let name = "ExtensionFieldsType"; let node_id = NodeId::new(0, 15489); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15490), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15491), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15494), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15490), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15491), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15494), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_26(address_space: &mut AddressSpace) { @@ -417,12 +775,31 @@ fn add_objecttype_26(address_space: &mut AddressSpace) { let name = "PublishedDataItemsType"; let node_id = NodeId::new(0, 14534); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 14548), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 14555), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 14558), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 14509), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 14548), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14555), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14558), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14509), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_27(address_space: &mut AddressSpace) { @@ -430,13 +807,36 @@ fn add_objecttype_27(address_space: &mut AddressSpace) { let name = "PublishedEventsType"; let node_id = NodeId::new(0, 14572); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 14586), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 14587), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 14588), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15052), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 14509), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 14586), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14587), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14588), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15052), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14509), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_28(address_space: &mut AddressSpace) { @@ -444,18 +844,61 @@ fn add_objecttype_28(address_space: &mut AddressSpace) { let name = "DataSetFolderType"; let node_id = NodeId::new(0, 14477); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 14478), &ReferenceTypeId::Organizes, ReferenceDirection::Forward), - (&NodeId::new(0, 14487), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 14493), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 14496), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16935), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16960), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 14499), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16994), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16997), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 61), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 14478), + &ReferenceTypeId::Organizes, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14487), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14493), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14496), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16935), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16960), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14499), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16994), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16997), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 61), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_29(address_space: &mut AddressSpace) { @@ -463,19 +906,66 @@ fn add_objecttype_29(address_space: &mut AddressSpace) { let name = "PubSubConnectionType"; let node_id = NodeId::new(0, 14209); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 14595), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17306), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17485), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 14221), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17203), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 14600), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19241), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17427), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17465), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 14225), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 14595), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17306), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17485), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14221), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17203), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14600), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19241), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17427), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17465), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14225), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_30(address_space: &mut AddressSpace) { @@ -483,9 +973,14 @@ fn add_objecttype_30(address_space: &mut AddressSpace) { let name = "ConnectionTransportType"; let node_id = NodeId::new(0, 17721); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 58), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 58), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_31(address_space: &mut AddressSpace) { @@ -493,15 +988,46 @@ fn add_objecttype_31(address_space: &mut AddressSpace) { let name = "PubSubGroupType"; let node_id = NodeId::new(0, 14232); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15926), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15927), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15928), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17724), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17488), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15265), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15926), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15927), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15928), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17724), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17488), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15265), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_32(address_space: &mut AddressSpace) { @@ -509,20 +1035,71 @@ fn add_objecttype_32(address_space: &mut AddressSpace) { let name = "WriterGroupType"; let node_id = NodeId::new(0, 17725); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17736), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17737), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17738), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17739), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17740), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17559), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17741), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17742), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17812), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17969), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17992), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 14232), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17736), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17737), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17738), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17739), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17740), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17559), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17741), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17742), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17812), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17969), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17992), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14232), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_33(address_space: &mut AddressSpace) { @@ -530,9 +1107,14 @@ fn add_objecttype_33(address_space: &mut AddressSpace) { let name = "WriterGroupTransportType"; let node_id = NodeId::new(0, 17997); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 58), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 58), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_34(address_space: &mut AddressSpace) { @@ -540,9 +1122,14 @@ fn add_objecttype_34(address_space: &mut AddressSpace) { let name = "WriterGroupMessageType"; let node_id = NodeId::new(0, 17998); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 58), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 58), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_35(address_space: &mut AddressSpace) { @@ -550,14 +1137,41 @@ fn add_objecttype_35(address_space: &mut AddressSpace) { let name = "ReaderGroupType"; let node_id = NodeId::new(0, 17999); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 21015), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 21080), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 21081), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 21082), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 21085), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 14232), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 21015), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21080), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21081), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21082), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21085), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14232), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_36(address_space: &mut AddressSpace) { @@ -565,9 +1179,14 @@ fn add_objecttype_36(address_space: &mut AddressSpace) { let name = "ReaderGroupTransportType"; let node_id = NodeId::new(0, 21090); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 58), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 58), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_37(address_space: &mut AddressSpace) { @@ -575,9 +1194,14 @@ fn add_objecttype_37(address_space: &mut AddressSpace) { let name = "ReaderGroupMessageType"; let node_id = NodeId::new(0, 21091); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 58), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 58), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_38(address_space: &mut AddressSpace) { @@ -585,17 +1209,56 @@ fn add_objecttype_38(address_space: &mut AddressSpace) { let name = "DataSetWriterType"; let node_id = NodeId::new(0, 15298); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 21092), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 21093), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 21094), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17493), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15303), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 21095), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15299), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19550), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 21092), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21093), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21094), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17493), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15303), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21095), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15299), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19550), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_39(address_space: &mut AddressSpace) { @@ -603,9 +1266,14 @@ fn add_objecttype_39(address_space: &mut AddressSpace) { let name = "DataSetWriterTransportType"; let node_id = NodeId::new(0, 15305); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 58), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 58), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_40(address_space: &mut AddressSpace) { @@ -613,9 +1281,14 @@ fn add_objecttype_40(address_space: &mut AddressSpace) { let name = "DataSetWriterMessageType"; let node_id = NodeId::new(0, 21096); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 58), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 58), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_41(address_space: &mut AddressSpace) { @@ -623,28 +1296,111 @@ fn add_objecttype_41(address_space: &mut AddressSpace) { let name = "DataSetReaderType"; let node_id = NodeId::new(0, 15306); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 21097), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 21098), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 21099), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 21100), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 21101), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 21102), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17563), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17564), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15932), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15933), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15934), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17494), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15311), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 21103), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15307), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19609), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15316), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17386), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17389), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 21097), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21098), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21099), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21100), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21101), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21102), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17563), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17564), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15932), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15933), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15934), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17494), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15311), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21103), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15307), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19609), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15316), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17386), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17389), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_42(address_space: &mut AddressSpace) { @@ -652,9 +1408,14 @@ fn add_objecttype_42(address_space: &mut AddressSpace) { let name = "DataSetReaderTransportType"; let node_id = NodeId::new(0, 15319); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 58), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 58), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_43(address_space: &mut AddressSpace) { @@ -662,9 +1423,14 @@ fn add_objecttype_43(address_space: &mut AddressSpace) { let name = "DataSetReaderMessageType"; let node_id = NodeId::new(0, 21104); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 58), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 58), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_44(address_space: &mut AddressSpace) { @@ -672,9 +1438,14 @@ fn add_objecttype_44(address_space: &mut AddressSpace) { let name = "SubscribedDataSetType"; let node_id = NodeId::new(0, 15108); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 58), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 58), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_45(address_space: &mut AddressSpace) { @@ -682,12 +1453,31 @@ fn add_objecttype_45(address_space: &mut AddressSpace) { let name = "TargetVariablesType"; let node_id = NodeId::new(0, 15111); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15114), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15115), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15118), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15108), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15114), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15115), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15118), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15108), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_46(address_space: &mut AddressSpace) { @@ -695,9 +1485,14 @@ fn add_objecttype_46(address_space: &mut AddressSpace) { let name = "SubscribedDataSetMirrorType"; let node_id = NodeId::new(0, 15127); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15108), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 15108), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_47(address_space: &mut AddressSpace) { @@ -705,12 +1500,31 @@ fn add_objecttype_47(address_space: &mut AddressSpace) { let name = "PubSubStatusType"; let node_id = NodeId::new(0, 14643); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 14644), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 14645), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 14646), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 14644), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14645), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14646), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_48(address_space: &mut AddressSpace) { @@ -718,16 +1532,51 @@ fn add_objecttype_48(address_space: &mut AddressSpace) { let name = "PubSubDiagnosticsType"; let node_id = NodeId::new(0, 19677); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19678), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19679), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19684), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19689), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19690), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19691), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19722), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19678), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19679), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19684), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19689), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19690), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19691), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19722), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_49(address_space: &mut AddressSpace) { @@ -735,10 +1584,21 @@ fn add_objecttype_49(address_space: &mut AddressSpace) { let name = "PubSubDiagnosticsRootType"; let node_id = NodeId::new(0, 19732); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19777), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19677), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19777), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19677), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_50(address_space: &mut AddressSpace) { @@ -746,10 +1606,21 @@ fn add_objecttype_50(address_space: &mut AddressSpace) { let name = "PubSubDiagnosticsConnectionType"; let node_id = NodeId::new(0, 19786); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19831), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19677), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19831), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19677), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_51(address_space: &mut AddressSpace) { @@ -757,11 +1628,26 @@ fn add_objecttype_51(address_space: &mut AddressSpace) { let name = "PubSubDiagnosticsWriterGroupType"; let node_id = NodeId::new(0, 19834); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19848), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19879), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19677), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19848), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19879), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19677), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_52(address_space: &mut AddressSpace) { @@ -769,11 +1655,26 @@ fn add_objecttype_52(address_space: &mut AddressSpace) { let name = "PubSubDiagnosticsReaderGroupType"; let node_id = NodeId::new(0, 19903); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19917), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19948), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19677), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19917), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19948), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19677), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_53(address_space: &mut AddressSpace) { @@ -781,11 +1682,26 @@ fn add_objecttype_53(address_space: &mut AddressSpace) { let name = "PubSubDiagnosticsDataSetWriterType"; let node_id = NodeId::new(0, 19968); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19982), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 20013), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19677), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19982), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20013), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19677), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_54(address_space: &mut AddressSpace) { @@ -793,11 +1709,26 @@ fn add_objecttype_54(address_space: &mut AddressSpace) { let name = "PubSubDiagnosticsDataSetReaderType"; let node_id = NodeId::new(0, 20027); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 20041), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 20072), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19677), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 20041), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20072), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19677), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_55(address_space: &mut AddressSpace) { @@ -805,12 +1736,31 @@ fn add_objecttype_55(address_space: &mut AddressSpace) { let name = "PubSubStatusEventType"; let node_id = NodeId::new(0, 15535); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15545), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15546), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15547), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2130), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15545), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15546), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15547), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2130), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_56(address_space: &mut AddressSpace) { @@ -818,11 +1768,26 @@ fn add_objecttype_56(address_space: &mut AddressSpace) { let name = "PubSubTransportLimitsExceedEventType"; let node_id = NodeId::new(0, 15548); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15561), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15562), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15535), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15561), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15562), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15535), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_57(address_space: &mut AddressSpace) { @@ -830,10 +1795,21 @@ fn add_objecttype_57(address_space: &mut AddressSpace) { let name = "PubSubCommunicationFailureEventType"; let node_id = NodeId::new(0, 15563); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15576), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15535), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15576), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15535), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_58(address_space: &mut AddressSpace) { @@ -841,14 +1817,41 @@ fn add_objecttype_58(address_space: &mut AddressSpace) { let name = "UadpWriterGroupMessageType"; let node_id = NodeId::new(0, 21105); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 21106), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 21107), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 21108), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 21109), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 21110), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17998), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 21106), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21107), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21108), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21109), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21110), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17998), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_59(address_space: &mut AddressSpace) { @@ -856,13 +1859,36 @@ fn add_objecttype_59(address_space: &mut AddressSpace) { let name = "UadpDataSetWriterMessageType"; let node_id = NodeId::new(0, 21111); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 21112), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 21113), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 21114), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 21115), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 21096), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 21112), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21113), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21114), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21115), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21096), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_60(address_space: &mut AddressSpace) { @@ -870,18 +1896,61 @@ fn add_objecttype_60(address_space: &mut AddressSpace) { let name = "UadpDataSetReaderMessageType"; let node_id = NodeId::new(0, 21116); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 21117), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 21119), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17477), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 21120), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 21121), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 21122), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 21123), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 21124), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 21125), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 21104), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 21117), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21119), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17477), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21120), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21121), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21122), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21123), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21124), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21125), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21104), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_61(address_space: &mut AddressSpace) { @@ -889,10 +1958,21 @@ fn add_objecttype_61(address_space: &mut AddressSpace) { let name = "JsonWriterGroupMessageType"; let node_id = NodeId::new(0, 21126); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 21127), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17998), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 21127), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17998), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_62(address_space: &mut AddressSpace) { @@ -900,10 +1980,21 @@ fn add_objecttype_62(address_space: &mut AddressSpace) { let name = "JsonDataSetWriterMessageType"; let node_id = NodeId::new(0, 21128); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 21129), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 21096), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 21129), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21096), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_63(address_space: &mut AddressSpace) { @@ -911,11 +2002,26 @@ fn add_objecttype_63(address_space: &mut AddressSpace) { let name = "JsonDataSetReaderMessageType"; let node_id = NodeId::new(0, 21130); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 21131), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 21132), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 21104), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 21131), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21132), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21104), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_64(address_space: &mut AddressSpace) { @@ -923,10 +2029,21 @@ fn add_objecttype_64(address_space: &mut AddressSpace) { let name = "DatagramConnectionTransportType"; let node_id = NodeId::new(0, 15064); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15072), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17721), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15072), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17721), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_65(address_space: &mut AddressSpace) { @@ -934,11 +2051,26 @@ fn add_objecttype_65(address_space: &mut AddressSpace) { let name = "DatagramWriterGroupTransportType"; let node_id = NodeId::new(0, 21133); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 21134), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 21135), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17997), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 21134), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21135), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17997), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_66(address_space: &mut AddressSpace) { @@ -946,11 +2078,26 @@ fn add_objecttype_66(address_space: &mut AddressSpace) { let name = "BrokerConnectionTransportType"; let node_id = NodeId::new(0, 15155); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15156), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15178), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17721), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15156), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15178), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17721), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_67(address_space: &mut AddressSpace) { @@ -958,13 +2105,36 @@ fn add_objecttype_67(address_space: &mut AddressSpace) { let name = "BrokerWriterGroupTransportType"; let node_id = NodeId::new(0, 21136); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 21137), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15246), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15247), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15249), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17997), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 21137), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15246), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15247), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15249), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17997), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_68(address_space: &mut AddressSpace) { @@ -972,15 +2142,46 @@ fn add_objecttype_68(address_space: &mut AddressSpace) { let name = "BrokerDataSetWriterTransportType"; let node_id = NodeId::new(0, 21138); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 21139), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 21140), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15250), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15251), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15330), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 21141), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15305), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 21139), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21140), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15250), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15251), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15330), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21141), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15305), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_69(address_space: &mut AddressSpace) { @@ -988,14 +2189,41 @@ fn add_objecttype_69(address_space: &mut AddressSpace) { let name = "BrokerDataSetReaderTransportType"; let node_id = NodeId::new(0, 21142); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 21143), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15334), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15419), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15420), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 21144), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15319), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 21143), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15334), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15419), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15420), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21144), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15319), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_70(address_space: &mut AddressSpace) { @@ -1003,10 +2231,21 @@ fn add_objecttype_70(address_space: &mut AddressSpace) { let name = "NetworkAddressType"; let node_id = NodeId::new(0, 21145); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 21146), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 21146), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_71(address_space: &mut AddressSpace) { @@ -1014,10 +2253,21 @@ fn add_objecttype_71(address_space: &mut AddressSpace) { let name = "NetworkAddressUrlType"; let node_id = NodeId::new(0, 21147); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 21149), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 21145), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 21149), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21145), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_datatype_72(address_space: &mut AddressSpace) { @@ -1025,9 +2275,14 @@ fn add_datatype_72(address_space: &mut AddressSpace) { let name = "DataTypeSchemaHeader"; let node_id = NodeId::new(0, 15534); let node = DataType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_73(address_space: &mut AddressSpace) { @@ -1035,9 +2290,14 @@ fn add_datatype_73(address_space: &mut AddressSpace) { let name = "DataTypeDescription"; let node_id = NodeId::new(0, 14525); let node = DataType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_74(address_space: &mut AddressSpace) { @@ -1045,9 +2305,14 @@ fn add_datatype_74(address_space: &mut AddressSpace) { let name = "StructureDescription"; let node_id = NodeId::new(0, 15487); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 14525), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 14525), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_75(address_space: &mut AddressSpace) { @@ -1055,9 +2320,14 @@ fn add_datatype_75(address_space: &mut AddressSpace) { let name = "EnumDescription"; let node_id = NodeId::new(0, 15488); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 14525), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 14525), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_76(address_space: &mut AddressSpace) { @@ -1065,9 +2335,14 @@ fn add_datatype_76(address_space: &mut AddressSpace) { let name = "SimpleTypeDescription"; let node_id = NodeId::new(0, 15005); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 14525), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 14525), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_77(address_space: &mut AddressSpace) { @@ -1075,9 +2350,14 @@ fn add_datatype_77(address_space: &mut AddressSpace) { let name = "UABinaryFileDataType"; let node_id = NodeId::new(0, 15006); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15534), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 15534), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_78(address_space: &mut AddressSpace) { @@ -1085,10 +2365,21 @@ fn add_datatype_78(address_space: &mut AddressSpace) { let name = "PubSubState"; let node_id = NodeId::new(0, 14647); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 14648), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 29), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 14648), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 29), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_datatype_79(address_space: &mut AddressSpace) { @@ -1096,9 +2387,14 @@ fn add_datatype_79(address_space: &mut AddressSpace) { let name = "DataSetMetaDataType"; let node_id = NodeId::new(0, 14523); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15534), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 15534), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_80(address_space: &mut AddressSpace) { @@ -1106,9 +2402,14 @@ fn add_datatype_80(address_space: &mut AddressSpace) { let name = "FieldMetaData"; let node_id = NodeId::new(0, 14524); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_81(address_space: &mut AddressSpace) { @@ -1116,10 +2417,21 @@ fn add_datatype_81(address_space: &mut AddressSpace) { let name = "DataSetFieldFlags"; let node_id = NodeId::new(0, 15904); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15577), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 5), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15577), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 5), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_datatype_82(address_space: &mut AddressSpace) { @@ -1127,9 +2439,14 @@ fn add_datatype_82(address_space: &mut AddressSpace) { let name = "ConfigurationVersionDataType"; let node_id = NodeId::new(0, 14593); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_83(address_space: &mut AddressSpace) { @@ -1137,9 +2454,14 @@ fn add_datatype_83(address_space: &mut AddressSpace) { let name = "PublishedDataSetDataType"; let node_id = NodeId::new(0, 15578); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_84(address_space: &mut AddressSpace) { @@ -1147,9 +2469,14 @@ fn add_datatype_84(address_space: &mut AddressSpace) { let name = "PublishedDataSetSourceDataType"; let node_id = NodeId::new(0, 15580); let node = DataType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_85(address_space: &mut AddressSpace) { @@ -1157,9 +2484,14 @@ fn add_datatype_85(address_space: &mut AddressSpace) { let name = "PublishedVariableDataType"; let node_id = NodeId::new(0, 14273); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_86(address_space: &mut AddressSpace) { @@ -1167,9 +2499,14 @@ fn add_datatype_86(address_space: &mut AddressSpace) { let name = "PublishedDataItemsDataType"; let node_id = NodeId::new(0, 15581); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15580), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 15580), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_87(address_space: &mut AddressSpace) { @@ -1177,9 +2514,14 @@ fn add_datatype_87(address_space: &mut AddressSpace) { let name = "PublishedEventsDataType"; let node_id = NodeId::new(0, 15582); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15580), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 15580), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_88(address_space: &mut AddressSpace) { @@ -1187,10 +2529,21 @@ fn add_datatype_88(address_space: &mut AddressSpace) { let name = "DataSetFieldContentMask"; let node_id = NodeId::new(0, 15583); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15584), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 7), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15584), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_datatype_89(address_space: &mut AddressSpace) { @@ -1198,9 +2551,14 @@ fn add_datatype_89(address_space: &mut AddressSpace) { let name = "DataSetWriterDataType"; let node_id = NodeId::new(0, 15597); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_90(address_space: &mut AddressSpace) { @@ -1208,9 +2566,14 @@ fn add_datatype_90(address_space: &mut AddressSpace) { let name = "DataSetWriterTransportDataType"; let node_id = NodeId::new(0, 15598); let node = DataType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_91(address_space: &mut AddressSpace) { @@ -1218,9 +2581,14 @@ fn add_datatype_91(address_space: &mut AddressSpace) { let name = "DataSetWriterMessageDataType"; let node_id = NodeId::new(0, 15605); let node = DataType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_92(address_space: &mut AddressSpace) { @@ -1228,9 +2596,14 @@ fn add_datatype_92(address_space: &mut AddressSpace) { let name = "PubSubGroupDataType"; let node_id = NodeId::new(0, 15609); let node = DataType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_93(address_space: &mut AddressSpace) { @@ -1238,9 +2611,14 @@ fn add_datatype_93(address_space: &mut AddressSpace) { let name = "WriterGroupDataType"; let node_id = NodeId::new(0, 15480); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15609), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 15609), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_94(address_space: &mut AddressSpace) { @@ -1248,9 +2626,14 @@ fn add_datatype_94(address_space: &mut AddressSpace) { let name = "WriterGroupTransportDataType"; let node_id = NodeId::new(0, 15611); let node = DataType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_95(address_space: &mut AddressSpace) { @@ -1258,9 +2641,14 @@ fn add_datatype_95(address_space: &mut AddressSpace) { let name = "WriterGroupMessageDataType"; let node_id = NodeId::new(0, 15616); let node = DataType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_96(address_space: &mut AddressSpace) { @@ -1268,9 +2656,14 @@ fn add_datatype_96(address_space: &mut AddressSpace) { let name = "PubSubConnectionDataType"; let node_id = NodeId::new(0, 15617); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_97(address_space: &mut AddressSpace) { @@ -1278,9 +2671,14 @@ fn add_datatype_97(address_space: &mut AddressSpace) { let name = "ConnectionTransportDataType"; let node_id = NodeId::new(0, 15618); let node = DataType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_98(address_space: &mut AddressSpace) { @@ -1288,9 +2686,14 @@ fn add_datatype_98(address_space: &mut AddressSpace) { let name = "NetworkAddressDataType"; let node_id = NodeId::new(0, 15502); let node = DataType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_99(address_space: &mut AddressSpace) { @@ -1298,9 +2701,14 @@ fn add_datatype_99(address_space: &mut AddressSpace) { let name = "NetworkAddressUrlDataType"; let node_id = NodeId::new(0, 15510); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15502), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 15502), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_100(address_space: &mut AddressSpace) { @@ -1308,8 +2716,12 @@ fn add_datatype_100(address_space: &mut AddressSpace) { let name = "ReaderGroupDataType"; let node_id = NodeId::new(0, 15520); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15609), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 15609), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } - diff --git a/server/src/address_space/generated/nodeset_14_4.rs b/server/src/address_space/generated/nodeset_14_4.rs index 7ed65a974..89ec46744 100644 --- a/server/src/address_space/generated/nodeset_14_4.rs +++ b/server/src/address_space/generated/nodeset_14_4.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.NodeSet2.Part14.xml by tools/schema/gen_address_space.js // DO NOT EDIT THIS FILE @@ -9,8 +9,11 @@ use std::{convert::TryFrom, str::FromStr}; #[allow(unused_imports)] use crate::{ - address_space::{EventNotifier, types::*}, - prelude::{DataTypeId, ExtensionObject, LocalizedText, NodeId, ReferenceTypeId, service_types::Argument, UAString, Variant, VariantTypeId} + address_space::{types::*, EventNotifier}, + prelude::{ + service_types::Argument, DataTypeId, ExtensionObject, LocalizedText, NodeId, + ReferenceTypeId, UAString, Variant, VariantTypeId, + }, }; #[allow(unused_variables)] @@ -122,9 +125,14 @@ fn add_datatype_1(address_space: &mut AddressSpace) { let name = "ReaderGroupTransportDataType"; let node_id = NodeId::new(0, 15621); let node = DataType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_2(address_space: &mut AddressSpace) { @@ -132,9 +140,14 @@ fn add_datatype_2(address_space: &mut AddressSpace) { let name = "ReaderGroupMessageDataType"; let node_id = NodeId::new(0, 15622); let node = DataType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_3(address_space: &mut AddressSpace) { @@ -142,9 +155,14 @@ fn add_datatype_3(address_space: &mut AddressSpace) { let name = "DataSetReaderDataType"; let node_id = NodeId::new(0, 15623); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_4(address_space: &mut AddressSpace) { @@ -152,9 +170,14 @@ fn add_datatype_4(address_space: &mut AddressSpace) { let name = "DataSetReaderTransportDataType"; let node_id = NodeId::new(0, 15628); let node = DataType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_5(address_space: &mut AddressSpace) { @@ -162,9 +185,14 @@ fn add_datatype_5(address_space: &mut AddressSpace) { let name = "DataSetReaderMessageDataType"; let node_id = NodeId::new(0, 15629); let node = DataType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_6(address_space: &mut AddressSpace) { @@ -172,9 +200,14 @@ fn add_datatype_6(address_space: &mut AddressSpace) { let name = "SubscribedDataSetDataType"; let node_id = NodeId::new(0, 15630); let node = DataType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_7(address_space: &mut AddressSpace) { @@ -182,9 +215,14 @@ fn add_datatype_7(address_space: &mut AddressSpace) { let name = "TargetVariablesDataType"; let node_id = NodeId::new(0, 15631); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15630), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 15630), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_8(address_space: &mut AddressSpace) { @@ -192,9 +230,14 @@ fn add_datatype_8(address_space: &mut AddressSpace) { let name = "FieldTargetDataType"; let node_id = NodeId::new(0, 14744); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_9(address_space: &mut AddressSpace) { @@ -202,10 +245,21 @@ fn add_datatype_9(address_space: &mut AddressSpace) { let name = "OverrideValueHandling"; let node_id = NodeId::new(0, 15874); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15875), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 29), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15875), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 29), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_datatype_10(address_space: &mut AddressSpace) { @@ -213,9 +267,14 @@ fn add_datatype_10(address_space: &mut AddressSpace) { let name = "SubscribedDataSetMirrorDataType"; let node_id = NodeId::new(0, 15635); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15630), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 15630), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_11(address_space: &mut AddressSpace) { @@ -223,9 +282,14 @@ fn add_datatype_11(address_space: &mut AddressSpace) { let name = "PubSubConfigurationDataType"; let node_id = NodeId::new(0, 15530); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_12(address_space: &mut AddressSpace) { @@ -233,10 +297,21 @@ fn add_datatype_12(address_space: &mut AddressSpace) { let name = "DataSetOrderingType"; let node_id = NodeId::new(0, 20408); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15641), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 29), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15641), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 29), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_datatype_13(address_space: &mut AddressSpace) { @@ -244,10 +319,21 @@ fn add_datatype_13(address_space: &mut AddressSpace) { let name = "UadpNetworkMessageContentMask"; let node_id = NodeId::new(0, 15642); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15643), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 7), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15643), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_datatype_14(address_space: &mut AddressSpace) { @@ -255,9 +341,14 @@ fn add_datatype_14(address_space: &mut AddressSpace) { let name = "UadpWriterGroupMessageDataType"; let node_id = NodeId::new(0, 15645); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15616), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 15616), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_15(address_space: &mut AddressSpace) { @@ -265,10 +356,21 @@ fn add_datatype_15(address_space: &mut AddressSpace) { let name = "UadpDataSetMessageContentMask"; let node_id = NodeId::new(0, 15646); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15647), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 7), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15647), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_datatype_16(address_space: &mut AddressSpace) { @@ -276,9 +378,14 @@ fn add_datatype_16(address_space: &mut AddressSpace) { let name = "UadpDataSetWriterMessageDataType"; let node_id = NodeId::new(0, 15652); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15605), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 15605), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_17(address_space: &mut AddressSpace) { @@ -286,9 +393,14 @@ fn add_datatype_17(address_space: &mut AddressSpace) { let name = "UadpDataSetReaderMessageDataType"; let node_id = NodeId::new(0, 15653); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15629), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 15629), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_18(address_space: &mut AddressSpace) { @@ -296,10 +408,21 @@ fn add_datatype_18(address_space: &mut AddressSpace) { let name = "JsonNetworkMessageContentMask"; let node_id = NodeId::new(0, 15654); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15655), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 7), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15655), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_datatype_19(address_space: &mut AddressSpace) { @@ -307,9 +430,14 @@ fn add_datatype_19(address_space: &mut AddressSpace) { let name = "JsonWriterGroupMessageDataType"; let node_id = NodeId::new(0, 15657); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15616), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 15616), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_20(address_space: &mut AddressSpace) { @@ -317,10 +445,21 @@ fn add_datatype_20(address_space: &mut AddressSpace) { let name = "JsonDataSetMessageContentMask"; let node_id = NodeId::new(0, 15658); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15659), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 7), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15659), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_datatype_21(address_space: &mut AddressSpace) { @@ -328,9 +467,14 @@ fn add_datatype_21(address_space: &mut AddressSpace) { let name = "JsonDataSetWriterMessageDataType"; let node_id = NodeId::new(0, 15664); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15605), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 15605), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_22(address_space: &mut AddressSpace) { @@ -338,9 +482,14 @@ fn add_datatype_22(address_space: &mut AddressSpace) { let name = "JsonDataSetReaderMessageDataType"; let node_id = NodeId::new(0, 15665); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15629), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 15629), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_23(address_space: &mut AddressSpace) { @@ -348,9 +497,14 @@ fn add_datatype_23(address_space: &mut AddressSpace) { let name = "DatagramConnectionTransportDataType"; let node_id = NodeId::new(0, 17467); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15618), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 15618), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_24(address_space: &mut AddressSpace) { @@ -358,9 +512,14 @@ fn add_datatype_24(address_space: &mut AddressSpace) { let name = "DatagramWriterGroupTransportDataType"; let node_id = NodeId::new(0, 15532); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15611), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 15611), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_25(address_space: &mut AddressSpace) { @@ -368,9 +527,14 @@ fn add_datatype_25(address_space: &mut AddressSpace) { let name = "BrokerConnectionTransportDataType"; let node_id = NodeId::new(0, 15007); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15618), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 15618), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_26(address_space: &mut AddressSpace) { @@ -378,10 +542,21 @@ fn add_datatype_26(address_space: &mut AddressSpace) { let name = "BrokerTransportQualityOfService"; let node_id = NodeId::new(0, 15008); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15009), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 29), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15009), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 29), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_datatype_27(address_space: &mut AddressSpace) { @@ -389,9 +564,14 @@ fn add_datatype_27(address_space: &mut AddressSpace) { let name = "BrokerWriterGroupTransportDataType"; let node_id = NodeId::new(0, 15667); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15611), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 15611), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_28(address_space: &mut AddressSpace) { @@ -399,9 +579,14 @@ fn add_datatype_28(address_space: &mut AddressSpace) { let name = "BrokerDataSetWriterTransportDataType"; let node_id = NodeId::new(0, 15669); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15598), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 15598), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_29(address_space: &mut AddressSpace) { @@ -409,9 +594,14 @@ fn add_datatype_29(address_space: &mut AddressSpace) { let name = "BrokerDataSetReaderTransportDataType"; let node_id = NodeId::new(0, 15670); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15628), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 15628), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_30(address_space: &mut AddressSpace) { @@ -419,10 +609,21 @@ fn add_datatype_30(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let node_id = NodeId::new(0, 19723); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19724), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 29), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19724), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 29), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_datatype_31(address_space: &mut AddressSpace) { @@ -430,70 +631,153 @@ fn add_datatype_31(address_space: &mut AddressSpace) { let name = "PubSubDiagnosticsCounterClassification"; let node_id = NodeId::new(0, 19730); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19731), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 29), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19731), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 29), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_referencetype_32(address_space: &mut AddressSpace) { // ReferenceType let name = "HasPubSubConnection"; let node_id = NodeId::new(0, 14476); - let node = ReferenceType::new(&node_id, name, name, Some(LocalizedText::new("", "PubSubConnectionOf")), false, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 47), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let node = ReferenceType::new( + &node_id, + name, + name, + Some(LocalizedText::new("", "PubSubConnectionOf")), + false, + false, + ); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 47), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_referencetype_33(address_space: &mut AddressSpace) { // ReferenceType let name = "DataSetToWriter"; let node_id = NodeId::new(0, 14936); - let node = ReferenceType::new(&node_id, name, name, Some(LocalizedText::new("", "WriterToDataSet")), false, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 33), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let node = ReferenceType::new( + &node_id, + name, + name, + Some(LocalizedText::new("", "WriterToDataSet")), + false, + false, + ); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 33), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_referencetype_34(address_space: &mut AddressSpace) { // ReferenceType let name = "HasDataSetWriter"; let node_id = NodeId::new(0, 15296); - let node = ReferenceType::new(&node_id, name, name, Some(LocalizedText::new("", "IsWriterInGroup")), false, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 47), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let node = ReferenceType::new( + &node_id, + name, + name, + Some(LocalizedText::new("", "IsWriterInGroup")), + false, + false, + ); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 47), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_referencetype_35(address_space: &mut AddressSpace) { // ReferenceType let name = "HasWriterGroup"; let node_id = NodeId::new(0, 18804); - let node = ReferenceType::new(&node_id, name, name, Some(LocalizedText::new("", "IsWriterGroupOf")), false, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 47), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let node = ReferenceType::new( + &node_id, + name, + name, + Some(LocalizedText::new("", "IsWriterGroupOf")), + false, + false, + ); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 47), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_referencetype_36(address_space: &mut AddressSpace) { // ReferenceType let name = "HasDataSetReader"; let node_id = NodeId::new(0, 15297); - let node = ReferenceType::new(&node_id, name, name, Some(LocalizedText::new("", "IsReaderInGroup")), false, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 47), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let node = ReferenceType::new( + &node_id, + name, + name, + Some(LocalizedText::new("", "IsReaderInGroup")), + false, + false, + ); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 47), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_referencetype_37(address_space: &mut AddressSpace) { // ReferenceType let name = "HasReaderGroup"; let node_id = NodeId::new(0, 18805); - let node = ReferenceType::new(&node_id, name, name, Some(LocalizedText::new("", "IsReaderGroupOf")), false, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 47), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let node = ReferenceType::new( + &node_id, + name, + name, + Some(LocalizedText::new("", "IsReaderGroupOf")), + false, + false, + ); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 47), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_variable_38(address_space: &mut AddressSpace) { @@ -501,12 +785,35 @@ fn add_variable_38(address_space: &mut AddressSpace) { let name = "EnumStrings"; let value = Variant::Empty; let node_id = NodeId::new(0, 14648); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14647), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 21), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14647), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_39(address_space: &mut AddressSpace) { @@ -514,12 +821,35 @@ fn add_variable_39(address_space: &mut AddressSpace) { let name = "OptionSetValues"; let value = Variant::Empty; let node_id = NodeId::new(0, 15577); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15904), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 21), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15904), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_40(address_space: &mut AddressSpace) { @@ -527,12 +857,35 @@ fn add_variable_40(address_space: &mut AddressSpace) { let name = "OptionSetValues"; let value = Variant::Empty; let node_id = NodeId::new(0, 15584); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15583), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 21), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15583), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_41(address_space: &mut AddressSpace) { @@ -540,12 +893,35 @@ fn add_variable_41(address_space: &mut AddressSpace) { let name = "EnumStrings"; let value = Variant::Empty; let node_id = NodeId::new(0, 15875); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15874), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 21), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15874), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_42(address_space: &mut AddressSpace) { @@ -553,12 +929,35 @@ fn add_variable_42(address_space: &mut AddressSpace) { let name = "EnumStrings"; let value = Variant::Empty; let node_id = NodeId::new(0, 15641); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 20408), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 21), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 20408), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_43(address_space: &mut AddressSpace) { @@ -566,12 +965,35 @@ fn add_variable_43(address_space: &mut AddressSpace) { let name = "OptionSetValues"; let value = Variant::Empty; let node_id = NodeId::new(0, 15643); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15642), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 21), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15642), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_44(address_space: &mut AddressSpace) { @@ -579,12 +1001,35 @@ fn add_variable_44(address_space: &mut AddressSpace) { let name = "OptionSetValues"; let value = Variant::Empty; let node_id = NodeId::new(0, 15647); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15646), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 21), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15646), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_45(address_space: &mut AddressSpace) { @@ -592,12 +1037,35 @@ fn add_variable_45(address_space: &mut AddressSpace) { let name = "OptionSetValues"; let value = Variant::Empty; let node_id = NodeId::new(0, 15655); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15654), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 21), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15654), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_46(address_space: &mut AddressSpace) { @@ -605,12 +1073,35 @@ fn add_variable_46(address_space: &mut AddressSpace) { let name = "OptionSetValues"; let value = Variant::Empty; let node_id = NodeId::new(0, 15659); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15658), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 21), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15658), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_47(address_space: &mut AddressSpace) { @@ -618,12 +1109,35 @@ fn add_variable_47(address_space: &mut AddressSpace) { let name = "EnumStrings"; let value = Variant::Empty; let node_id = NodeId::new(0, 15009); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15008), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 21), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15008), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_48(address_space: &mut AddressSpace) { @@ -631,37 +1145,66 @@ fn add_variable_48(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("SecurityGroupId"), data_type: NodeId::new(0, 12), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("StartingTokenId"), data_type: NodeId::new(0, 288), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("RequestedKeyCount"), data_type: NodeId::new(0, 7), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 15908); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15907), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15907), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_49(address_space: &mut AddressSpace) { @@ -669,97 +1212,176 @@ fn add_variable_49(address_space: &mut AddressSpace) { let name = "OutputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("SecurityPolicyUri"), data_type: NodeId::new(0, 12), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("FirstTokenId"), data_type: NodeId::new(0, 288), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("Keys"), data_type: NodeId::new(0, 15), value_rank: 1, array_dimensions: Some(vec![0]), description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("TimeToNextKey"), data_type: NodeId::new(0, 290), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("KeyLifetime"), data_type: NodeId::new(0, 290), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 15909); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15907), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15907), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_50(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("SecurityGroupId"), - data_type: NodeId::new(0, 12), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("SecurityGroupId"), + data_type: NodeId::new(0, 12), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 15911); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15910), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15910), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_51(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("SecurityGroupNodeId"), - data_type: NodeId::new(0, 17), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("SecurityGroupNodeId"), + data_type: NodeId::new(0, 17), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 15912); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15910), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15910), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_52(address_space: &mut AddressSpace) { @@ -767,53 +1389,86 @@ fn add_variable_52(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("SecurityGroupName"), data_type: NodeId::new(0, 12), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("KeyLifetime"), data_type: NodeId::new(0, 290), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("SecurityPolicyUri"), data_type: NodeId::new(0, 12), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("MaxFutureKeyCount"), data_type: NodeId::new(0, 7), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("MaxPastKeyCount"), data_type: NodeId::new(0, 7), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 15915); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15914), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15914), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_53(address_space: &mut AddressSpace) { @@ -821,51 +1476,101 @@ fn add_variable_53(address_space: &mut AddressSpace) { let name = "OutputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("SecurityGroupId"), data_type: NodeId::new(0, 12), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("SecurityGroupNodeId"), data_type: NodeId::new(0, 17), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 15916); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15914), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15914), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_54(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("SecurityGroupNodeId"), - data_type: NodeId::new(0, 17), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("SecurityGroupNodeId"), + data_type: NodeId::new(0, 17), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 15918); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15917), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15917), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_55(address_space: &mut AddressSpace) { @@ -873,53 +1578,86 @@ fn add_variable_55(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("SecurityGroupName"), data_type: NodeId::new(0, 12), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("KeyLifetime"), data_type: NodeId::new(0, 290), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("SecurityPolicyUri"), data_type: NodeId::new(0, 12), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("MaxFutureKeyCount"), data_type: NodeId::new(0, 7), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("MaxPastKeyCount"), data_type: NodeId::new(0, 7), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 15455); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15454), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15454), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_56(address_space: &mut AddressSpace) { @@ -927,51 +1665,101 @@ fn add_variable_56(address_space: &mut AddressSpace) { let name = "OutputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("SecurityGroupId"), data_type: NodeId::new(0, 12), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("SecurityGroupNodeId"), data_type: NodeId::new(0, 17), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 15456); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15454), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15454), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_57(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("SecurityGroupNodeId"), - data_type: NodeId::new(0, 17), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("SecurityGroupNodeId"), + data_type: NodeId::new(0, 17), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 15458); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15457), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15457), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_58(address_space: &mut AddressSpace) { @@ -979,12 +1767,28 @@ fn add_variable_58(address_space: &mut AddressSpace) { let name = "SecurityGroupId"; let value = Variant::Empty; let node_id = NodeId::new(0, 15460); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15459), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15459), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_59(address_space: &mut AddressSpace) { @@ -992,12 +1796,28 @@ fn add_variable_59(address_space: &mut AddressSpace) { let name = "KeyLifetime"; let value = Variant::Empty; let node_id = NodeId::new(0, 15010); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15459), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15459), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_60(address_space: &mut AddressSpace) { @@ -1005,12 +1825,28 @@ fn add_variable_60(address_space: &mut AddressSpace) { let name = "SecurityPolicyUri"; let value = Variant::Empty; let node_id = NodeId::new(0, 15011); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15459), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15459), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_61(address_space: &mut AddressSpace) { @@ -1019,11 +1855,26 @@ fn add_variable_61(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 15012); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15459), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15459), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_62(address_space: &mut AddressSpace) { @@ -1032,11 +1883,26 @@ fn add_variable_62(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 15043); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15459), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15459), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_63(address_space: &mut AddressSpace) { @@ -1044,53 +1910,86 @@ fn add_variable_63(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("SecurityGroupName"), data_type: NodeId::new(0, 12), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("KeyLifetime"), data_type: NodeId::new(0, 290), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("SecurityPolicyUri"), data_type: NodeId::new(0, 12), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("MaxFutureKeyCount"), data_type: NodeId::new(0, 7), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("MaxPastKeyCount"), data_type: NodeId::new(0, 7), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 15462); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15461), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15461), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_64(address_space: &mut AddressSpace) { @@ -1098,51 +1997,101 @@ fn add_variable_64(address_space: &mut AddressSpace) { let name = "OutputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("SecurityGroupId"), data_type: NodeId::new(0, 12), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("SecurityGroupNodeId"), data_type: NodeId::new(0, 17), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 15463); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15461), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15461), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_65(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("SecurityGroupNodeId"), - data_type: NodeId::new(0, 17), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("SecurityGroupNodeId"), + data_type: NodeId::new(0, 17), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 15465); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15464), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15464), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_66(address_space: &mut AddressSpace) { @@ -1150,12 +2099,28 @@ fn add_variable_66(address_space: &mut AddressSpace) { let name = "SecurityGroupId"; let value = Variant::Empty; let node_id = NodeId::new(0, 15472); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15471), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15471), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_67(address_space: &mut AddressSpace) { @@ -1163,12 +2128,28 @@ fn add_variable_67(address_space: &mut AddressSpace) { let name = "KeyLifetime"; let value = Variant::Empty; let node_id = NodeId::new(0, 15046); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15471), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15471), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_68(address_space: &mut AddressSpace) { @@ -1176,12 +2157,28 @@ fn add_variable_68(address_space: &mut AddressSpace) { let name = "SecurityPolicyUri"; let value = Variant::Empty; let node_id = NodeId::new(0, 15047); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15471), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15471), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_69(address_space: &mut AddressSpace) { @@ -1190,11 +2187,26 @@ fn add_variable_69(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 15048); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15471), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15471), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_70(address_space: &mut AddressSpace) { @@ -1203,11 +2215,26 @@ fn add_variable_70(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 15056); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15471), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15471), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_71(address_space: &mut AddressSpace) { @@ -1215,12 +2242,28 @@ fn add_variable_71(address_space: &mut AddressSpace) { let name = "PublisherId"; let value = Variant::Empty; let node_id = NodeId::new(0, 14418); - let node = Variable::new_data_value(&node_id, name, name, DataTypeId::Boolean, None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14417), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, DataTypeId::Boolean, None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14417), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_72(address_space: &mut AddressSpace) { @@ -1228,13 +2271,33 @@ fn add_variable_72(address_space: &mut AddressSpace) { let name = "TransportProfileUri"; let value = Variant::Empty; let node_id = NodeId::new(0, 17292); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17706), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16309), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14417), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17706), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16309), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14417), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_73(address_space: &mut AddressSpace) { @@ -1242,12 +2305,35 @@ fn add_variable_73(address_space: &mut AddressSpace) { let name = "Selections"; let value = Variant::Empty; let node_id = NodeId::new(0, 17706); - let node = Variable::new_data_value(&node_id, name, name, DataTypeId::Boolean, Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17292), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + DataTypeId::Boolean, + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17292), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_74(address_space: &mut AddressSpace) { @@ -1255,12 +2341,35 @@ fn add_variable_74(address_space: &mut AddressSpace) { let name = "ConnectionProperties"; let value = Variant::Empty; let node_id = NodeId::new(0, 17478); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 14533), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14417), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 14533), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14417), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_75(address_space: &mut AddressSpace) { @@ -1268,13 +2377,33 @@ fn add_variable_75(address_space: &mut AddressSpace) { let name = "NetworkInterface"; let value = Variant::Empty; let node_id = NodeId::new(0, 15533); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17503), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16309), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14423), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17503), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16309), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14423), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_76(address_space: &mut AddressSpace) { @@ -1282,12 +2411,35 @@ fn add_variable_76(address_space: &mut AddressSpace) { let name = "Selections"; let value = Variant::Empty; let node_id = NodeId::new(0, 17503); - let node = Variable::new_data_value(&node_id, name, name, DataTypeId::Boolean, Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15533), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + DataTypeId::Boolean, + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15533), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_77(address_space: &mut AddressSpace) { @@ -1295,12 +2447,35 @@ fn add_variable_77(address_space: &mut AddressSpace) { let name = "State"; let value = Variant::Empty; let node_id = NodeId::new(0, 14420); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 14647), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14419), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 14647), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14419), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_78(address_space: &mut AddressSpace) { @@ -1308,135 +2483,241 @@ fn add_variable_78(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("SecurityGroupId"), data_type: NodeId::new(0, 12), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("SecurityPolicyUri"), data_type: NodeId::new(0, 12), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("CurrentTokenId"), data_type: NodeId::new(0, 288), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("CurrentKey"), data_type: NodeId::new(0, 15), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("FutureKeys"), data_type: NodeId::new(0, 15), value_rank: 1, array_dimensions: Some(vec![0]), description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("TimeToNextKey"), data_type: NodeId::new(0, 290), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("KeyLifetime"), data_type: NodeId::new(0, 290), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 17297); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17296), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17296), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_79(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Configuration"), - data_type: NodeId::new(0, 15617), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Configuration"), + data_type: NodeId::new(0, 15617), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 16599); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16598), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16598), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_80(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("ConnectionId"), - data_type: NodeId::new(0, 17), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("ConnectionId"), + data_type: NodeId::new(0, 17), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 16600); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16598), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16598), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_81(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("ConnectionId"), - data_type: NodeId::new(0, 17), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("ConnectionId"), + data_type: NodeId::new(0, 17), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 14433); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14432), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14432), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_82(address_space: &mut AddressSpace) { @@ -1444,12 +2725,35 @@ fn add_variable_82(address_space: &mut AddressSpace) { let name = "State"; let value = Variant::Empty; let node_id = NodeId::new(0, 15845); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 14647), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15844), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 14647), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15844), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_83(address_space: &mut AddressSpace) { @@ -1457,12 +2761,35 @@ fn add_variable_83(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 18716); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18715), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18715), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_84(address_space: &mut AddressSpace) { @@ -1471,14 +2798,41 @@ fn add_variable_84(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 18717); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18718), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 18719), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 18720), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18715), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 18718), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18719), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18720), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18715), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_85(address_space: &mut AddressSpace) { @@ -1487,11 +2841,26 @@ fn add_variable_85(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 18718); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18717), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18717), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_86(address_space: &mut AddressSpace) { @@ -1499,12 +2868,35 @@ fn add_variable_86(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 18719); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18717), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18717), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_87(address_space: &mut AddressSpace) { @@ -1512,12 +2904,35 @@ fn add_variable_87(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 18720); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18717), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18717), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_88(address_space: &mut AddressSpace) { @@ -1526,14 +2941,41 @@ fn add_variable_88(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 18722); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18723), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 18724), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 18725), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18715), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 18723), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18724), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18725), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18715), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_89(address_space: &mut AddressSpace) { @@ -1542,11 +2984,26 @@ fn add_variable_89(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 18723); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18722), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18722), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_90(address_space: &mut AddressSpace) { @@ -1554,12 +3011,35 @@ fn add_variable_90(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 18724); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18722), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18722), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_91(address_space: &mut AddressSpace) { @@ -1567,12 +3047,35 @@ fn add_variable_91(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 18725); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18722), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18722), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_92(address_space: &mut AddressSpace) { @@ -1581,11 +3084,26 @@ fn add_variable_92(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 18728); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18715), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18715), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_93(address_space: &mut AddressSpace) { @@ -1594,14 +3112,41 @@ fn add_variable_93(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 18730); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18731), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 18732), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 18733), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18729), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 18731), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18732), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18733), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18729), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_94(address_space: &mut AddressSpace) { @@ -1610,11 +3155,26 @@ fn add_variable_94(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 18731); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18730), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18730), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_95(address_space: &mut AddressSpace) { @@ -1622,12 +3182,35 @@ fn add_variable_95(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 18732); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18730), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18730), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_96(address_space: &mut AddressSpace) { @@ -1635,12 +3218,35 @@ fn add_variable_96(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 18733); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18730), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18730), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_97(address_space: &mut AddressSpace) { @@ -1649,14 +3255,41 @@ fn add_variable_97(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 18735); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18736), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 18737), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 18738), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18729), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 18736), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18737), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18738), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18729), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_98(address_space: &mut AddressSpace) { @@ -1665,11 +3298,26 @@ fn add_variable_98(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 18736); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18735), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18735), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_99(address_space: &mut AddressSpace) { @@ -1677,12 +3325,35 @@ fn add_variable_99(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 18737); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18735), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18735), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_100(address_space: &mut AddressSpace) { @@ -1690,11 +3361,33 @@ fn add_variable_100(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 18738); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18735), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18735), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } - diff --git a/server/src/address_space/generated/nodeset_14_5.rs b/server/src/address_space/generated/nodeset_14_5.rs index 39c11f541..9efd712f2 100644 --- a/server/src/address_space/generated/nodeset_14_5.rs +++ b/server/src/address_space/generated/nodeset_14_5.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.NodeSet2.Part14.xml by tools/schema/gen_address_space.js // DO NOT EDIT THIS FILE @@ -9,8 +9,11 @@ use std::{convert::TryFrom, str::FromStr}; #[allow(unused_imports)] use crate::{ - address_space::{EventNotifier, types::*}, - prelude::{DataTypeId, ExtensionObject, LocalizedText, NodeId, ReferenceTypeId, service_types::Argument, UAString, Variant, VariantTypeId} + address_space::{types::*, EventNotifier}, + prelude::{ + service_types::Argument, DataTypeId, ExtensionObject, LocalizedText, NodeId, + ReferenceTypeId, UAString, Variant, VariantTypeId, + }, }; #[allow(unused_variables)] @@ -123,14 +126,41 @@ fn add_variable_1(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 18740); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18741), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 18742), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 18743), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18729), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 18741), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18742), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18743), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18729), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_2(address_space: &mut AddressSpace) { @@ -139,11 +169,26 @@ fn add_variable_2(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 18741); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18740), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18740), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_3(address_space: &mut AddressSpace) { @@ -151,12 +196,35 @@ fn add_variable_3(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 18742); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18740), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18740), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_4(address_space: &mut AddressSpace) { @@ -164,12 +232,35 @@ fn add_variable_4(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 18743); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18740), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18740), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_5(address_space: &mut AddressSpace) { @@ -178,14 +269,41 @@ fn add_variable_5(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 18745); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18746), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 18747), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 18748), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18729), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 18746), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18747), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18748), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18729), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_6(address_space: &mut AddressSpace) { @@ -194,11 +312,26 @@ fn add_variable_6(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 18746); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18745), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18745), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_7(address_space: &mut AddressSpace) { @@ -206,12 +339,35 @@ fn add_variable_7(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 18747); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18745), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18745), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_8(address_space: &mut AddressSpace) { @@ -219,12 +375,35 @@ fn add_variable_8(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 18748); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18745), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18745), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_9(address_space: &mut AddressSpace) { @@ -233,14 +412,41 @@ fn add_variable_9(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 18750); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18751), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 18752), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 18753), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18729), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 18751), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18752), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18753), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18729), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_10(address_space: &mut AddressSpace) { @@ -249,11 +455,26 @@ fn add_variable_10(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 18751); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18750), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18750), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_11(address_space: &mut AddressSpace) { @@ -261,12 +482,35 @@ fn add_variable_11(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 18752); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18750), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18750), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_12(address_space: &mut AddressSpace) { @@ -274,12 +518,35 @@ fn add_variable_12(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 18753); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18750), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18750), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_13(address_space: &mut AddressSpace) { @@ -288,14 +555,41 @@ fn add_variable_13(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 18755); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18756), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 18757), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 18758), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18729), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 18756), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18757), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18758), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18729), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_14(address_space: &mut AddressSpace) { @@ -304,11 +598,26 @@ fn add_variable_14(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 18756); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18755), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18755), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_15(address_space: &mut AddressSpace) { @@ -316,12 +625,35 @@ fn add_variable_15(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 18757); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18755), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18755), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_16(address_space: &mut AddressSpace) { @@ -329,12 +661,35 @@ fn add_variable_16(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 18758); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18755), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18755), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_17(address_space: &mut AddressSpace) { @@ -343,12 +698,31 @@ fn add_variable_17(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 18761); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18762), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18760), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 18762), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18760), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_18(address_space: &mut AddressSpace) { @@ -356,12 +730,35 @@ fn add_variable_18(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 18762); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18761), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18761), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_19(address_space: &mut AddressSpace) { @@ -370,12 +767,31 @@ fn add_variable_19(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 18763); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18764), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18760), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 18764), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18760), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_20(address_space: &mut AddressSpace) { @@ -383,12 +799,35 @@ fn add_variable_20(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 18764); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18763), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18763), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_21(address_space: &mut AddressSpace) { @@ -397,12 +836,31 @@ fn add_variable_21(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 18765); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18766), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18760), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 18766), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18760), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_22(address_space: &mut AddressSpace) { @@ -410,12 +868,35 @@ fn add_variable_22(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 18766); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18765), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18765), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_23(address_space: &mut AddressSpace) { @@ -424,12 +905,31 @@ fn add_variable_23(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 18767); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18768), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18760), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 18768), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18760), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_24(address_space: &mut AddressSpace) { @@ -437,12 +937,35 @@ fn add_variable_24(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 18768); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18767), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18767), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_25(address_space: &mut AddressSpace) { @@ -450,12 +973,35 @@ fn add_variable_25(address_space: &mut AddressSpace) { let name = "SupportedTransportProfiles"; let value = Variant::Empty; let node_id = NodeId::new(0, 17479); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14416), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 12), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14416), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_26(address_space: &mut AddressSpace) { @@ -463,36 +1009,61 @@ fn add_variable_26(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("SecurityGroupId"), data_type: NodeId::new(0, 12), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("StartingTokenId"), data_type: NodeId::new(0, 288), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("RequestedKeyCount"), data_type: NodeId::new(0, 7), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 15216); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15215), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15215), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_27(address_space: &mut AddressSpace) { @@ -500,94 +1071,161 @@ fn add_variable_27(address_space: &mut AddressSpace) { let name = "OutputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("SecurityPolicyUri"), data_type: NodeId::new(0, 12), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("FirstTokenId"), data_type: NodeId::new(0, 288), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("Keys"), data_type: NodeId::new(0, 15), value_rank: 1, array_dimensions: Some(vec![0]), description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("TimeToNextKey"), data_type: NodeId::new(0, 290), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("KeyLifetime"), data_type: NodeId::new(0, 290), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 15217); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15215), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15215), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_28(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("SecurityGroupId"), - data_type: NodeId::new(0, 12), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("SecurityGroupId"), + data_type: NodeId::new(0, 12), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 15441); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15440), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15440), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_29(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("SecurityGroupNodeId"), - data_type: NodeId::new(0, 17), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("SecurityGroupNodeId"), + data_type: NodeId::new(0, 17), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 15442); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15440), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15440), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_30(address_space: &mut AddressSpace) { @@ -595,52 +1233,81 @@ fn add_variable_30(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("SecurityGroupName"), data_type: NodeId::new(0, 12), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("KeyLifetime"), data_type: NodeId::new(0, 290), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("SecurityPolicyUri"), data_type: NodeId::new(0, 12), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("MaxFutureKeyCount"), data_type: NodeId::new(0, 7), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("MaxPastKeyCount"), data_type: NodeId::new(0, 7), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 15445); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15444), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15444), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_31(address_space: &mut AddressSpace) { @@ -648,112 +1315,211 @@ fn add_variable_31(address_space: &mut AddressSpace) { let name = "OutputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("SecurityGroupId"), data_type: NodeId::new(0, 12), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("SecurityGroupNodeId"), data_type: NodeId::new(0, 17), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 15446); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15444), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15444), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_32(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("SecurityGroupNodeId"), - data_type: NodeId::new(0, 17), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("SecurityGroupNodeId"), + data_type: NodeId::new(0, 17), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 15448); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15447), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15447), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_33(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Configuration"), - data_type: NodeId::new(0, 15617), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Configuration"), + data_type: NodeId::new(0, 15617), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 17367); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 17366), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17366), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_34(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("ConnectionId"), - data_type: NodeId::new(0, 17), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("ConnectionId"), + data_type: NodeId::new(0, 17), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 17368); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 17366), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17366), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_35(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("ConnectionId"), - data_type: NodeId::new(0, 17), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("ConnectionId"), + data_type: NodeId::new(0, 17), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 17370); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 17369), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17369), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_36(address_space: &mut AddressSpace) { @@ -761,11 +1527,30 @@ fn add_variable_36(address_space: &mut AddressSpace) { let name = "State"; let value = Variant::Empty; let node_id = NodeId::new(0, 17406); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 14647), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 17405), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 14647), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17405), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_37(address_space: &mut AddressSpace) { @@ -773,11 +1558,30 @@ fn add_variable_37(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 17410); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 17409), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17409), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_38(address_space: &mut AddressSpace) { @@ -786,13 +1590,36 @@ fn add_variable_38(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17411); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17412), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17413), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17414), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 17409), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17412), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17413), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17414), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17409), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_39(address_space: &mut AddressSpace) { @@ -801,10 +1628,21 @@ fn add_variable_39(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17412); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 17411), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17411), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_40(address_space: &mut AddressSpace) { @@ -812,11 +1650,30 @@ fn add_variable_40(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 17413); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 17411), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17411), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_41(address_space: &mut AddressSpace) { @@ -824,11 +1681,30 @@ fn add_variable_41(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 17414); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 17411), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17411), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_42(address_space: &mut AddressSpace) { @@ -837,13 +1713,36 @@ fn add_variable_42(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17416); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17417), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17418), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17419), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 17409), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17417), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17418), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17419), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17409), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_43(address_space: &mut AddressSpace) { @@ -852,10 +1751,21 @@ fn add_variable_43(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17417); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 17416), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17416), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_44(address_space: &mut AddressSpace) { @@ -863,11 +1773,30 @@ fn add_variable_44(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 17418); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 17416), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17416), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_45(address_space: &mut AddressSpace) { @@ -875,11 +1804,30 @@ fn add_variable_45(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 17419); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 17416), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17416), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_46(address_space: &mut AddressSpace) { @@ -888,10 +1836,21 @@ fn add_variable_46(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17422); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 17409), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17409), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_47(address_space: &mut AddressSpace) { @@ -900,13 +1859,36 @@ fn add_variable_47(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17424); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17425), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17426), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17429), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 17423), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17425), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17426), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17429), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17423), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_48(address_space: &mut AddressSpace) { @@ -915,10 +1897,21 @@ fn add_variable_48(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17425); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 17424), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17424), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_49(address_space: &mut AddressSpace) { @@ -926,11 +1919,30 @@ fn add_variable_49(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 17426); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 17424), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17424), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_50(address_space: &mut AddressSpace) { @@ -938,11 +1950,30 @@ fn add_variable_50(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 17429); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 17424), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17424), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_51(address_space: &mut AddressSpace) { @@ -951,13 +1982,36 @@ fn add_variable_51(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17431); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17432), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17433), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17434), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 17423), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17432), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17433), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17434), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17423), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_52(address_space: &mut AddressSpace) { @@ -966,10 +2020,21 @@ fn add_variable_52(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17432); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 17431), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17431), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_53(address_space: &mut AddressSpace) { @@ -977,11 +2042,30 @@ fn add_variable_53(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 17433); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 17431), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17431), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_54(address_space: &mut AddressSpace) { @@ -989,11 +2073,30 @@ fn add_variable_54(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 17434); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 17431), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17431), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_55(address_space: &mut AddressSpace) { @@ -1002,13 +2105,36 @@ fn add_variable_55(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17436); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17437), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17438), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17439), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 17423), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17437), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17438), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17439), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17423), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_56(address_space: &mut AddressSpace) { @@ -1017,10 +2143,21 @@ fn add_variable_56(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17437); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 17436), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17436), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_57(address_space: &mut AddressSpace) { @@ -1028,11 +2165,30 @@ fn add_variable_57(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 17438); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 17436), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17436), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_58(address_space: &mut AddressSpace) { @@ -1040,11 +2196,30 @@ fn add_variable_58(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 17439); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 17436), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17436), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_59(address_space: &mut AddressSpace) { @@ -1053,13 +2228,36 @@ fn add_variable_59(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17441); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17442), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17443), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17444), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 17423), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17442), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17443), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17444), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17423), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_60(address_space: &mut AddressSpace) { @@ -1068,10 +2266,21 @@ fn add_variable_60(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17442); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 17441), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17441), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_61(address_space: &mut AddressSpace) { @@ -1079,11 +2288,30 @@ fn add_variable_61(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 17443); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 17441), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17441), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_62(address_space: &mut AddressSpace) { @@ -1091,11 +2319,30 @@ fn add_variable_62(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 17444); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 17441), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17441), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_63(address_space: &mut AddressSpace) { @@ -1104,13 +2351,36 @@ fn add_variable_63(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17446); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17447), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17448), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17449), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 17423), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17447), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17448), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17449), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17423), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_64(address_space: &mut AddressSpace) { @@ -1119,10 +2389,21 @@ fn add_variable_64(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17447); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 17446), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17446), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_65(address_space: &mut AddressSpace) { @@ -1130,11 +2411,30 @@ fn add_variable_65(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 17448); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 17446), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17446), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_66(address_space: &mut AddressSpace) { @@ -1142,11 +2442,30 @@ fn add_variable_66(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 17449); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 17446), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17446), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_67(address_space: &mut AddressSpace) { @@ -1155,13 +2474,36 @@ fn add_variable_67(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17451); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17452), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17453), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17454), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 17423), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17452), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17453), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17454), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17423), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_68(address_space: &mut AddressSpace) { @@ -1170,10 +2512,21 @@ fn add_variable_68(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17452); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 17451), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17451), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_69(address_space: &mut AddressSpace) { @@ -1181,11 +2534,30 @@ fn add_variable_69(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 17453); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 17451), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17451), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_70(address_space: &mut AddressSpace) { @@ -1193,11 +2565,30 @@ fn add_variable_70(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 17454); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 17451), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17451), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_71(address_space: &mut AddressSpace) { @@ -1206,11 +2597,26 @@ fn add_variable_71(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17458); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17459), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 17457), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17459), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17457), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_72(address_space: &mut AddressSpace) { @@ -1218,11 +2624,30 @@ fn add_variable_72(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 17459); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 17458), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17458), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_73(address_space: &mut AddressSpace) { @@ -1231,11 +2656,26 @@ fn add_variable_73(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17460); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17461), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 17457), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17461), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17457), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_74(address_space: &mut AddressSpace) { @@ -1243,11 +2683,30 @@ fn add_variable_74(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 17461); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 17460), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17460), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_75(address_space: &mut AddressSpace) { @@ -1256,11 +2715,26 @@ fn add_variable_75(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17462); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17463), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 17457), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17463), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17457), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_76(address_space: &mut AddressSpace) { @@ -1268,11 +2742,30 @@ fn add_variable_76(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 17463); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 17462), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17462), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_77(address_space: &mut AddressSpace) { @@ -1281,11 +2774,26 @@ fn add_variable_77(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17464); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17466), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 17457), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17466), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17457), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_78(address_space: &mut AddressSpace) { @@ -1293,11 +2801,30 @@ fn add_variable_78(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 17466); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 17464), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17464), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_79(address_space: &mut AddressSpace) { @@ -1305,11 +2832,30 @@ fn add_variable_79(address_space: &mut AddressSpace) { let name = "SupportedTransportProfiles"; let value = Variant::Empty; let node_id = NodeId::new(0, 17481); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 14443), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 12), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14443), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_80(address_space: &mut AddressSpace) { @@ -1318,11 +2864,26 @@ fn add_variable_80(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 16720); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15222), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15222), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_81(address_space: &mut AddressSpace) { @@ -1330,12 +2891,35 @@ fn add_variable_81(address_space: &mut AddressSpace) { let name = "DataSetFieldContentMask"; let value = Variant::Empty; let node_id = NodeId::new(0, 16721); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15583), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15222), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 15583), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15222), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_82(address_space: &mut AddressSpace) { @@ -1343,12 +2927,35 @@ fn add_variable_82(address_space: &mut AddressSpace) { let name = "DataSetWriterProperties"; let value = Variant::Empty; let node_id = NodeId::new(0, 17482); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 14533), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15222), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 14533), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15222), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_83(address_space: &mut AddressSpace) { @@ -1356,12 +2963,35 @@ fn add_variable_83(address_space: &mut AddressSpace) { let name = "State"; let value = Variant::Empty; let node_id = NodeId::new(0, 15224); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 14647), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15223), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 14647), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15223), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_84(address_space: &mut AddressSpace) { @@ -1369,12 +2999,35 @@ fn add_variable_84(address_space: &mut AddressSpace) { let name = "ConfigurationVersion"; let value = Variant::Empty; let node_id = NodeId::new(0, 14519); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 14593), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14509), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 14593), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14509), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_85(address_space: &mut AddressSpace) { @@ -1382,12 +3035,35 @@ fn add_variable_85(address_space: &mut AddressSpace) { let name = "DataSetMetaData"; let value = Variant::Empty; let node_id = NodeId::new(0, 15229); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 14523), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14509), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 14523), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14509), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_86(address_space: &mut AddressSpace) { @@ -1395,12 +3071,28 @@ fn add_variable_86(address_space: &mut AddressSpace) { let name = "DataSetClassId"; let value = Variant::Empty; let node_id = NodeId::new(0, 16759); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 14), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14509), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 14), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14509), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_87(address_space: &mut AddressSpace) { @@ -1408,73 +3100,146 @@ fn add_variable_87(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("FieldName"), data_type: NodeId::new(0, 20), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("FieldValue"), data_type: NodeId::new(0, 24), value_rank: -2, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 15483); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15482), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15482), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_88(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("FieldId"), - data_type: NodeId::new(0, 17), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("FieldId"), + data_type: NodeId::new(0, 17), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 15484); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15482), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15482), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_89(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("FieldId"), - data_type: NodeId::new(0, 17), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("FieldId"), + data_type: NodeId::new(0, 17), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 15486); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15485), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15485), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_90(address_space: &mut AddressSpace) { @@ -1482,12 +3247,28 @@ fn add_variable_90(address_space: &mut AddressSpace) { let name = ""; let value = Variant::Empty; let node_id = NodeId::new(0, 15490); - let node = Variable::new_data_value(&node_id, name, name, DataTypeId::Boolean, None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11508), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15489), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, DataTypeId::Boolean, None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11508), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15489), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_91(address_space: &mut AddressSpace) { @@ -1495,73 +3276,146 @@ fn add_variable_91(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("FieldName"), data_type: NodeId::new(0, 20), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("FieldValue"), data_type: NodeId::new(0, 24), value_rank: -2, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 15492); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15491), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15491), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_92(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("FieldId"), - data_type: NodeId::new(0, 17), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("FieldId"), + data_type: NodeId::new(0, 17), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 15493); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15491), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15491), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_93(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("FieldId"), - data_type: NodeId::new(0, 17), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("FieldId"), + data_type: NodeId::new(0, 17), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 15495); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15494), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15494), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_94(address_space: &mut AddressSpace) { @@ -1569,12 +3423,35 @@ fn add_variable_94(address_space: &mut AddressSpace) { let name = "PublishedData"; let value = Variant::Empty; let node_id = NodeId::new(0, 14548); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 14273), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14534), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 14273), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14534), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_95(address_space: &mut AddressSpace) { @@ -1582,45 +3459,76 @@ fn add_variable_95(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("ConfigurationVersion"), data_type: NodeId::new(0, 14593), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("FieldNameAliases"), data_type: NodeId::new(0, 12), value_rank: 1, array_dimensions: Some(vec![0]), description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("PromotedFields"), data_type: NodeId::new(0, 1), value_rank: 1, array_dimensions: Some(vec![0]), description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("VariablesToAdd"), data_type: NodeId::new(0, 14273), value_rank: 1, array_dimensions: Some(vec![0]), description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 14556); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14555), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14555), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_96(address_space: &mut AddressSpace) { @@ -1628,29 +3536,56 @@ fn add_variable_96(address_space: &mut AddressSpace) { let name = "OutputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("NewConfigurationVersion"), data_type: NodeId::new(0, 14593), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("AddResults"), data_type: NodeId::new(0, 19), value_rank: 1, array_dimensions: Some(vec![0]), description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 14557); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14555), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14555), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_97(address_space: &mut AddressSpace) { @@ -1658,29 +3593,56 @@ fn add_variable_97(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("ConfigurationVersion"), data_type: NodeId::new(0, 14593), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("VariablesToRemove"), data_type: NodeId::new(0, 7), value_rank: 1, array_dimensions: Some(vec![0]), description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 14559); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14558), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14558), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_98(address_space: &mut AddressSpace) { @@ -1688,29 +3650,56 @@ fn add_variable_98(address_space: &mut AddressSpace) { let name = "OutputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("NewConfigurationVersion"), data_type: NodeId::new(0, 14593), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("RemoveResults"), data_type: NodeId::new(0, 19), value_rank: 1, array_dimensions: Some(vec![0]), description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 14560); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14558), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14558), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_99(address_space: &mut AddressSpace) { @@ -1718,12 +3707,28 @@ fn add_variable_99(address_space: &mut AddressSpace) { let name = "EventNotifier"; let value = Variant::Empty; let node_id = NodeId::new(0, 14586); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14572), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14572), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_100(address_space: &mut AddressSpace) { @@ -1731,11 +3736,33 @@ fn add_variable_100(address_space: &mut AddressSpace) { let name = "SelectedFields"; let value = Variant::Empty; let node_id = NodeId::new(0, 14587); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 601), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14572), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 601), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14572), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } - diff --git a/server/src/address_space/generated/nodeset_14_6.rs b/server/src/address_space/generated/nodeset_14_6.rs index 2b78eae6a..5b23a8563 100644 --- a/server/src/address_space/generated/nodeset_14_6.rs +++ b/server/src/address_space/generated/nodeset_14_6.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.NodeSet2.Part14.xml by tools/schema/gen_address_space.js // DO NOT EDIT THIS FILE @@ -9,8 +9,11 @@ use std::{convert::TryFrom, str::FromStr}; #[allow(unused_imports)] use crate::{ - address_space::{EventNotifier, types::*}, - prelude::{DataTypeId, ExtensionObject, LocalizedText, NodeId, ReferenceTypeId, service_types::Argument, UAString, Variant, VariantTypeId} + address_space::{types::*, EventNotifier}, + prelude::{ + service_types::Argument, DataTypeId, ExtensionObject, LocalizedText, NodeId, + ReferenceTypeId, UAString, Variant, VariantTypeId, + }, }; #[allow(unused_variables)] @@ -122,12 +125,28 @@ fn add_variable_1(address_space: &mut AddressSpace) { let name = "Filter"; let value = Variant::Empty; let node_id = NodeId::new(0, 14588); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 586), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14572), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 586), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14572), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_2(address_space: &mut AddressSpace) { @@ -135,67 +154,121 @@ fn add_variable_2(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("ConfigurationVersion"), data_type: NodeId::new(0, 14593), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("FieldNameAliases"), data_type: NodeId::new(0, 12), value_rank: 1, array_dimensions: Some(vec![0]), description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("PromotedFields"), data_type: NodeId::new(0, 1), value_rank: 1, array_dimensions: Some(vec![0]), description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("SelectedFields"), data_type: NodeId::new(0, 601), value_rank: 1, array_dimensions: Some(vec![0]), description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 15053); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15052), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15052), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_3(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("NewConfigurationVersion"), - data_type: NodeId::new(0, 14593), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("NewConfigurationVersion"), + data_type: NodeId::new(0, 14593), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 15517); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15052), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15052), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_4(address_space: &mut AddressSpace) { @@ -203,45 +276,76 @@ fn add_variable_4(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("Name"), data_type: NodeId::new(0, 12), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("FieldNameAliases"), data_type: NodeId::new(0, 12), value_rank: 1, array_dimensions: Some(vec![0]), description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("FieldFlags"), data_type: NodeId::new(0, 15904), value_rank: 1, array_dimensions: Some(vec![0]), description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("VariablesToAdd"), data_type: NodeId::new(0, 14273), value_rank: 1, array_dimensions: Some(vec![0]), description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 14480); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14479), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14479), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_5(address_space: &mut AddressSpace) { @@ -249,37 +353,66 @@ fn add_variable_5(address_space: &mut AddressSpace) { let name = "OutputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("DataSetNodeId"), data_type: NodeId::new(0, 17), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("ConfigurationVersion"), data_type: NodeId::new(0, 14593), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("AddResults"), data_type: NodeId::new(0, 19), value_rank: 1, array_dimensions: Some(vec![0]), description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 14481); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14479), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14479), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_6(address_space: &mut AddressSpace) { @@ -287,61 +420,96 @@ fn add_variable_6(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("Name"), data_type: NodeId::new(0, 12), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("EventNotifier"), data_type: NodeId::new(0, 17), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("FieldNameAliases"), data_type: NodeId::new(0, 12), value_rank: 1, array_dimensions: Some(vec![0]), description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("FieldFlags"), data_type: NodeId::new(0, 15904), value_rank: 1, array_dimensions: Some(vec![0]), description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("SelectedFields"), data_type: NodeId::new(0, 601), value_rank: 1, array_dimensions: Some(vec![0]), description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("Filter"), data_type: NodeId::new(0, 586), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 14483); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14482), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14482), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_7(address_space: &mut AddressSpace) { @@ -349,29 +517,56 @@ fn add_variable_7(address_space: &mut AddressSpace) { let name = "OutputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("ConfigurationVersion"), data_type: NodeId::new(0, 14593), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("DataSetNodeId"), data_type: NodeId::new(0, 17), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 14484); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14482), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14482), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_8(address_space: &mut AddressSpace) { @@ -379,37 +574,66 @@ fn add_variable_8(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("Name"), data_type: NodeId::new(0, 12), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("DataSetMetaData"), data_type: NodeId::new(0, 14523), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("VariablesToAdd"), data_type: NodeId::new(0, 14273), value_rank: 1, array_dimensions: Some(vec![0]), description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 16843); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16842), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16842), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_9(address_space: &mut AddressSpace) { @@ -417,29 +641,56 @@ fn add_variable_9(address_space: &mut AddressSpace) { let name = "OutputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("DataSetNodeId"), data_type: NodeId::new(0, 17), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("AddResults"), data_type: NodeId::new(0, 19), value_rank: 1, array_dimensions: Some(vec![0]), description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 16853); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16842), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16842), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_10(address_space: &mut AddressSpace) { @@ -447,163 +698,311 @@ fn add_variable_10(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("Name"), data_type: NodeId::new(0, 12), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("DataSetMetaData"), data_type: NodeId::new(0, 14523), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("EventNotifier"), data_type: NodeId::new(0, 17), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("SelectedFields"), data_type: NodeId::new(0, 601), value_rank: 1, array_dimensions: Some(vec![0]), description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("Filter"), data_type: NodeId::new(0, 586), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 16882); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16881), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16881), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_11(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("DataSetNodeId"), - data_type: NodeId::new(0, 17), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("DataSetNodeId"), + data_type: NodeId::new(0, 17), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 16883); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16881), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16881), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_12(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("DataSetNodeId"), - data_type: NodeId::new(0, 17), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("DataSetNodeId"), + data_type: NodeId::new(0, 17), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 14486); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14485), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14485), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_13(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Name"), - data_type: NodeId::new(0, 12), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Name"), + data_type: NodeId::new(0, 12), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 16894); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16884), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16884), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_14(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("DataSetFolderNodeId"), - data_type: NodeId::new(0, 17), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("DataSetFolderNodeId"), + data_type: NodeId::new(0, 17), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 16922); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16884), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16884), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_15(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("DataSetFolderNodeId"), - data_type: NodeId::new(0, 17), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("DataSetFolderNodeId"), + data_type: NodeId::new(0, 17), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 16924); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16923), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16923), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_16(address_space: &mut AddressSpace) { @@ -611,12 +1010,35 @@ fn add_variable_16(address_space: &mut AddressSpace) { let name = "ConfigurationVersion"; let value = Variant::Empty; let node_id = NodeId::new(0, 14489); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 14593), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14487), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 14593), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14487), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_17(address_space: &mut AddressSpace) { @@ -624,12 +1046,35 @@ fn add_variable_17(address_space: &mut AddressSpace) { let name = "DataSetMetaData"; let value = Variant::Empty; let node_id = NodeId::new(0, 15221); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 14523), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14487), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 14523), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14487), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_18(address_space: &mut AddressSpace) { @@ -637,45 +1082,76 @@ fn add_variable_18(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("Name"), data_type: NodeId::new(0, 12), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("FieldNameAliases"), data_type: NodeId::new(0, 12), value_rank: 1, array_dimensions: Some(vec![0]), description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("FieldFlags"), data_type: NodeId::new(0, 15904), value_rank: 1, array_dimensions: Some(vec![0]), description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("VariablesToAdd"), data_type: NodeId::new(0, 14273), value_rank: 1, array_dimensions: Some(vec![0]), description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 14494); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14493), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14493), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_19(address_space: &mut AddressSpace) { @@ -683,37 +1159,66 @@ fn add_variable_19(address_space: &mut AddressSpace) { let name = "OutputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("DataSetNodeId"), data_type: NodeId::new(0, 17), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("ConfigurationVersion"), data_type: NodeId::new(0, 14593), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("AddResults"), data_type: NodeId::new(0, 19), value_rank: 1, array_dimensions: Some(vec![0]), description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 14495); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14493), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14493), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_20(address_space: &mut AddressSpace) { @@ -721,61 +1226,96 @@ fn add_variable_20(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("Name"), data_type: NodeId::new(0, 12), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("EventNotifier"), data_type: NodeId::new(0, 17), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("FieldNameAliases"), data_type: NodeId::new(0, 12), value_rank: 1, array_dimensions: Some(vec![0]), description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("FieldFlags"), data_type: NodeId::new(0, 15904), value_rank: 1, array_dimensions: Some(vec![0]), description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("SelectedFields"), data_type: NodeId::new(0, 601), value_rank: 1, array_dimensions: Some(vec![0]), description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("Filter"), data_type: NodeId::new(0, 586), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 14497); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14496), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14496), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_21(address_space: &mut AddressSpace) { @@ -783,29 +1323,56 @@ fn add_variable_21(address_space: &mut AddressSpace) { let name = "OutputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("ConfigurationVersion"), data_type: NodeId::new(0, 14593), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("DataSetNodeId"), data_type: NodeId::new(0, 17), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 14498); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14496), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14496), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_22(address_space: &mut AddressSpace) { @@ -813,37 +1380,66 @@ fn add_variable_22(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("Name"), data_type: NodeId::new(0, 12), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("DataSetMetaData"), data_type: NodeId::new(0, 14523), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("VariablesToAdd"), data_type: NodeId::new(0, 14273), value_rank: 1, array_dimensions: Some(vec![0]), description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 16958); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16935), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16935), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_23(address_space: &mut AddressSpace) { @@ -851,29 +1447,56 @@ fn add_variable_23(address_space: &mut AddressSpace) { let name = "OutputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("DataSetNodeId"), data_type: NodeId::new(0, 17), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("AddResults"), data_type: NodeId::new(0, 19), value_rank: 1, array_dimensions: Some(vec![0]), description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 16959); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16935), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16935), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_24(address_space: &mut AddressSpace) { @@ -881,163 +1504,311 @@ fn add_variable_24(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("Name"), data_type: NodeId::new(0, 12), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("DataSetMetaData"), data_type: NodeId::new(0, 14523), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("EventNotifier"), data_type: NodeId::new(0, 17), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("SelectedFields"), data_type: NodeId::new(0, 601), value_rank: 1, array_dimensions: Some(vec![0]), description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("Filter"), data_type: NodeId::new(0, 586), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 16961); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16960), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16960), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_25(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("DataSetNodeId"), - data_type: NodeId::new(0, 17), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("DataSetNodeId"), + data_type: NodeId::new(0, 17), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 16971); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16960), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16960), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_26(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("DataSetNodeId"), - data_type: NodeId::new(0, 17), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("DataSetNodeId"), + data_type: NodeId::new(0, 17), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 14500); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14499), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14499), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_27(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Name"), - data_type: NodeId::new(0, 12), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Name"), + data_type: NodeId::new(0, 12), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 16995); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16994), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16994), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_28(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("DataSetFolderNodeId"), - data_type: NodeId::new(0, 17), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("DataSetFolderNodeId"), + data_type: NodeId::new(0, 17), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 16996); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16994), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16994), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_29(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("DataSetFolderNodeId"), - data_type: NodeId::new(0, 17), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("DataSetFolderNodeId"), + data_type: NodeId::new(0, 17), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 17007); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16997), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16997), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_30(address_space: &mut AddressSpace) { @@ -1045,12 +1816,28 @@ fn add_variable_30(address_space: &mut AddressSpace) { let name = "PublisherId"; let value = Variant::Empty; let node_id = NodeId::new(0, 14595); - let node = Variable::new_data_value(&node_id, name, name, DataTypeId::Boolean, None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14209), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, DataTypeId::Boolean, None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14209), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_31(address_space: &mut AddressSpace) { @@ -1058,13 +1845,33 @@ fn add_variable_31(address_space: &mut AddressSpace) { let name = "TransportProfileUri"; let value = Variant::Empty; let node_id = NodeId::new(0, 17306); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17710), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16309), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14209), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17710), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16309), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14209), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_32(address_space: &mut AddressSpace) { @@ -1072,12 +1879,35 @@ fn add_variable_32(address_space: &mut AddressSpace) { let name = "Selections"; let value = Variant::Empty; let node_id = NodeId::new(0, 17710); - let node = Variable::new_data_value(&node_id, name, name, DataTypeId::Boolean, Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17306), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + DataTypeId::Boolean, + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17306), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_33(address_space: &mut AddressSpace) { @@ -1085,12 +1915,35 @@ fn add_variable_33(address_space: &mut AddressSpace) { let name = "ConnectionProperties"; let value = Variant::Empty; let node_id = NodeId::new(0, 17485); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 14533), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14209), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 14533), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14209), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_34(address_space: &mut AddressSpace) { @@ -1098,13 +1951,33 @@ fn add_variable_34(address_space: &mut AddressSpace) { let name = "NetworkInterface"; let value = Variant::Empty; let node_id = NodeId::new(0, 17202); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17576), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16309), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14221), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17576), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16309), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14221), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_35(address_space: &mut AddressSpace) { @@ -1112,12 +1985,35 @@ fn add_variable_35(address_space: &mut AddressSpace) { let name = "Selections"; let value = Variant::Empty; let node_id = NodeId::new(0, 17576); - let node = Variable::new_data_value(&node_id, name, name, DataTypeId::Boolean, Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17202), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + DataTypeId::Boolean, + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17202), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_36(address_space: &mut AddressSpace) { @@ -1125,12 +2021,28 @@ fn add_variable_36(address_space: &mut AddressSpace) { let name = "SecurityMode"; let value = Variant::Empty; let node_id = NodeId::new(0, 17311); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 302), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17310), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 302), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17310), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_37(address_space: &mut AddressSpace) { @@ -1139,11 +2051,26 @@ fn add_variable_37(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17204); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17310), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17310), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_38(address_space: &mut AddressSpace) { @@ -1151,12 +2078,35 @@ fn add_variable_38(address_space: &mut AddressSpace) { let name = "GroupProperties"; let value = Variant::Empty; let node_id = NodeId::new(0, 17486); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 14533), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17310), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 14533), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17310), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_39(address_space: &mut AddressSpace) { @@ -1164,12 +2114,35 @@ fn add_variable_39(address_space: &mut AddressSpace) { let name = "State"; let value = Variant::Empty; let node_id = NodeId::new(0, 17315); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 14647), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17314), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 14647), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17314), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_40(address_space: &mut AddressSpace) { @@ -1178,11 +2151,26 @@ fn add_variable_40(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17214); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17310), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17310), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_41(address_space: &mut AddressSpace) { @@ -1190,12 +2178,28 @@ fn add_variable_41(address_space: &mut AddressSpace) { let name = "PublishingInterval"; let value = Variant::Empty; let node_id = NodeId::new(0, 17318); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17310), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17310), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_42(address_space: &mut AddressSpace) { @@ -1203,12 +2207,28 @@ fn add_variable_42(address_space: &mut AddressSpace) { let name = "KeepAliveTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 17319); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17310), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17310), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_43(address_space: &mut AddressSpace) { @@ -1217,11 +2237,26 @@ fn add_variable_43(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17321); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 3), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17310), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17310), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_44(address_space: &mut AddressSpace) { @@ -1229,12 +2264,35 @@ fn add_variable_44(address_space: &mut AddressSpace) { let name = "LocaleIds"; let value = Variant::Empty; let node_id = NodeId::new(0, 17322); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 295), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17310), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 295), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17310), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_45(address_space: &mut AddressSpace) { @@ -1242,12 +2300,28 @@ fn add_variable_45(address_space: &mut AddressSpace) { let name = "HeaderLayoutUri"; let value = Variant::Empty; let node_id = NodeId::new(0, 17558); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17310), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17310), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_46(address_space: &mut AddressSpace) { @@ -1255,12 +2329,28 @@ fn add_variable_46(address_space: &mut AddressSpace) { let name = "SecurityMode"; let value = Variant::Empty; let node_id = NodeId::new(0, 17326); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 302), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17325), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 302), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17325), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_47(address_space: &mut AddressSpace) { @@ -1269,11 +2359,26 @@ fn add_variable_47(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17302); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17325), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17325), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_48(address_space: &mut AddressSpace) { @@ -1281,12 +2386,35 @@ fn add_variable_48(address_space: &mut AddressSpace) { let name = "GroupProperties"; let value = Variant::Empty; let node_id = NodeId::new(0, 17487); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 14533), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17325), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 14533), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17325), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_49(address_space: &mut AddressSpace) { @@ -1294,12 +2422,35 @@ fn add_variable_49(address_space: &mut AddressSpace) { let name = "State"; let value = Variant::Empty; let node_id = NodeId::new(0, 17330); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 14647), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17329), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 14647), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17329), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_50(address_space: &mut AddressSpace) { @@ -1307,12 +2458,35 @@ fn add_variable_50(address_space: &mut AddressSpace) { let name = "State"; let value = Variant::Empty; let node_id = NodeId::new(0, 14601); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 14647), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14600), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 14647), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14600), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_51(address_space: &mut AddressSpace) { @@ -1320,12 +2494,35 @@ fn add_variable_51(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 19242); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19241), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19241), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_52(address_space: &mut AddressSpace) { @@ -1334,14 +2531,41 @@ fn add_variable_52(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19243); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19244), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19245), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19246), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19241), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19244), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19245), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19246), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19241), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_53(address_space: &mut AddressSpace) { @@ -1350,11 +2574,26 @@ fn add_variable_53(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19244); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19243), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19243), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_54(address_space: &mut AddressSpace) { @@ -1362,12 +2601,35 @@ fn add_variable_54(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 19245); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19243), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19243), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_55(address_space: &mut AddressSpace) { @@ -1375,12 +2637,35 @@ fn add_variable_55(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 19246); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19243), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19243), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_56(address_space: &mut AddressSpace) { @@ -1389,14 +2674,41 @@ fn add_variable_56(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19248); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19249), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19250), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19251), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19241), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19249), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19250), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19251), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19241), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_57(address_space: &mut AddressSpace) { @@ -1405,11 +2717,26 @@ fn add_variable_57(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19249); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19248), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19248), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_58(address_space: &mut AddressSpace) { @@ -1417,12 +2744,35 @@ fn add_variable_58(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 19250); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19248), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19248), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_59(address_space: &mut AddressSpace) { @@ -1430,12 +2780,35 @@ fn add_variable_59(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 19251); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19248), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19248), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_60(address_space: &mut AddressSpace) { @@ -1444,11 +2817,26 @@ fn add_variable_60(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19254); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19241), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19241), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_61(address_space: &mut AddressSpace) { @@ -1457,14 +2845,41 @@ fn add_variable_61(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19256); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19257), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19258), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19259), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19255), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19257), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19258), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19259), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19255), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_62(address_space: &mut AddressSpace) { @@ -1473,11 +2888,26 @@ fn add_variable_62(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19257); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19256), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19256), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_63(address_space: &mut AddressSpace) { @@ -1485,12 +2915,35 @@ fn add_variable_63(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 19258); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19256), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19256), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_64(address_space: &mut AddressSpace) { @@ -1498,12 +2951,35 @@ fn add_variable_64(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 19259); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19256), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19256), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_65(address_space: &mut AddressSpace) { @@ -1512,14 +2988,41 @@ fn add_variable_65(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19261); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19262), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19263), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19264), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19255), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19262), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19263), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19264), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19255), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_66(address_space: &mut AddressSpace) { @@ -1528,11 +3031,26 @@ fn add_variable_66(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19262); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19261), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19261), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_67(address_space: &mut AddressSpace) { @@ -1540,12 +3058,35 @@ fn add_variable_67(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 19263); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19261), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19261), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_68(address_space: &mut AddressSpace) { @@ -1553,12 +3094,35 @@ fn add_variable_68(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 19264); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19261), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19261), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_69(address_space: &mut AddressSpace) { @@ -1567,14 +3131,41 @@ fn add_variable_69(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19266); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19267), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19268), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19269), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19255), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19267), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19268), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19269), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19255), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_70(address_space: &mut AddressSpace) { @@ -1583,11 +3174,26 @@ fn add_variable_70(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19267); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19266), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19266), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_71(address_space: &mut AddressSpace) { @@ -1595,12 +3201,35 @@ fn add_variable_71(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 19268); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19266), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19266), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_72(address_space: &mut AddressSpace) { @@ -1608,12 +3237,35 @@ fn add_variable_72(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 19269); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19266), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19266), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_73(address_space: &mut AddressSpace) { @@ -1622,14 +3274,41 @@ fn add_variable_73(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19271); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19272), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19273), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19274), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19255), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19272), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19273), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19274), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19255), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_74(address_space: &mut AddressSpace) { @@ -1638,11 +3317,26 @@ fn add_variable_74(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19272); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19271), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19271), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_75(address_space: &mut AddressSpace) { @@ -1650,12 +3344,35 @@ fn add_variable_75(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 19273); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19271), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19271), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_76(address_space: &mut AddressSpace) { @@ -1663,12 +3380,35 @@ fn add_variable_76(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 19274); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19271), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19271), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_77(address_space: &mut AddressSpace) { @@ -1677,14 +3417,41 @@ fn add_variable_77(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19276); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19277), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19278), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19279), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19255), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19277), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19278), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19279), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19255), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_78(address_space: &mut AddressSpace) { @@ -1693,11 +3460,26 @@ fn add_variable_78(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19277); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19276), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19276), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_79(address_space: &mut AddressSpace) { @@ -1705,12 +3487,35 @@ fn add_variable_79(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 19278); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19276), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19276), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_80(address_space: &mut AddressSpace) { @@ -1718,12 +3523,35 @@ fn add_variable_80(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 19279); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19276), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19276), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_81(address_space: &mut AddressSpace) { @@ -1732,14 +3560,41 @@ fn add_variable_81(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19281); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19282), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19283), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19284), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19255), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19282), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19283), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19284), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19255), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_82(address_space: &mut AddressSpace) { @@ -1748,11 +3603,26 @@ fn add_variable_82(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19282); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19281), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19281), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_83(address_space: &mut AddressSpace) { @@ -1760,12 +3630,35 @@ fn add_variable_83(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 19283); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19281), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19281), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_84(address_space: &mut AddressSpace) { @@ -1773,12 +3666,35 @@ fn add_variable_84(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 19284); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19281), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19281), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_85(address_space: &mut AddressSpace) { @@ -1786,13 +3702,33 @@ fn add_variable_85(address_space: &mut AddressSpace) { let name = "ResolvedAddress"; let value = Variant::Empty; let node_id = NodeId::new(0, 19287); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19288), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19286), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19288), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19286), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_86(address_space: &mut AddressSpace) { @@ -1800,122 +3736,260 @@ fn add_variable_86(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 19288); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19287), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19287), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_87(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Configuration"), - data_type: NodeId::new(0, 15480), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Configuration"), + data_type: NodeId::new(0, 15480), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 17428); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17427), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17427), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_88(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("GroupId"), - data_type: NodeId::new(0, 17), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("GroupId"), + data_type: NodeId::new(0, 17), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 17456); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17427), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17427), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_89(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Configuration"), - data_type: NodeId::new(0, 15520), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Configuration"), + data_type: NodeId::new(0, 15520), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 17507); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17465), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17465), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_90(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("GroupId"), - data_type: NodeId::new(0, 17), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("GroupId"), + data_type: NodeId::new(0, 17), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 17508); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17465), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17465), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_91(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("GroupId"), - data_type: NodeId::new(0, 17), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("GroupId"), + data_type: NodeId::new(0, 17), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 14226); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14225), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14225), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_92(address_space: &mut AddressSpace) { @@ -1923,12 +3997,28 @@ fn add_variable_92(address_space: &mut AddressSpace) { let name = "SecurityMode"; let value = Variant::Empty; let node_id = NodeId::new(0, 15926); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 302), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14232), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 302), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14232), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_93(address_space: &mut AddressSpace) { @@ -1936,12 +4026,28 @@ fn add_variable_93(address_space: &mut AddressSpace) { let name = "SecurityGroupId"; let value = Variant::Empty; let node_id = NodeId::new(0, 15927); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14232), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14232), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_94(address_space: &mut AddressSpace) { @@ -1949,12 +4055,35 @@ fn add_variable_94(address_space: &mut AddressSpace) { let name = "SecurityKeyServices"; let value = Variant::Empty; let node_id = NodeId::new(0, 15928); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 312), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14232), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 312), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14232), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_95(address_space: &mut AddressSpace) { @@ -1963,11 +4092,26 @@ fn add_variable_95(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17724); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14232), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14232), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_96(address_space: &mut AddressSpace) { @@ -1975,12 +4119,35 @@ fn add_variable_96(address_space: &mut AddressSpace) { let name = "GroupProperties"; let value = Variant::Empty; let node_id = NodeId::new(0, 17488); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 14533), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14232), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 14533), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14232), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_97(address_space: &mut AddressSpace) { @@ -1988,12 +4155,35 @@ fn add_variable_97(address_space: &mut AddressSpace) { let name = "State"; let value = Variant::Empty; let node_id = NodeId::new(0, 15266); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 14647), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15265), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 14647), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15265), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_98(address_space: &mut AddressSpace) { @@ -2002,11 +4192,26 @@ fn add_variable_98(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17736); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17725), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17725), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_99(address_space: &mut AddressSpace) { @@ -2014,12 +4219,28 @@ fn add_variable_99(address_space: &mut AddressSpace) { let name = "PublishingInterval"; let value = Variant::Empty; let node_id = NodeId::new(0, 17737); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17725), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17725), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_100(address_space: &mut AddressSpace) { @@ -2027,11 +4248,26 @@ fn add_variable_100(address_space: &mut AddressSpace) { let name = "KeepAliveTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 17738); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17725), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17725), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } - diff --git a/server/src/address_space/generated/nodeset_14_7.rs b/server/src/address_space/generated/nodeset_14_7.rs index 547af4b04..85ffd54f0 100644 --- a/server/src/address_space/generated/nodeset_14_7.rs +++ b/server/src/address_space/generated/nodeset_14_7.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.NodeSet2.Part14.xml by tools/schema/gen_address_space.js // DO NOT EDIT THIS FILE @@ -9,8 +9,11 @@ use std::{convert::TryFrom, str::FromStr}; #[allow(unused_imports)] use crate::{ - address_space::{EventNotifier, types::*}, - prelude::{DataTypeId, ExtensionObject, LocalizedText, NodeId, ReferenceTypeId, service_types::Argument, UAString, Variant, VariantTypeId} + address_space::{types::*, EventNotifier}, + prelude::{ + service_types::Argument, DataTypeId, ExtensionObject, LocalizedText, NodeId, + ReferenceTypeId, UAString, Variant, VariantTypeId, + }, }; #[allow(unused_variables)] @@ -123,11 +126,26 @@ fn add_variable_1(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17739); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 3), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17725), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17725), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_2(address_space: &mut AddressSpace) { @@ -135,12 +153,35 @@ fn add_variable_2(address_space: &mut AddressSpace) { let name = "LocaleIds"; let value = Variant::Empty; let node_id = NodeId::new(0, 17740); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 295), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17725), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 295), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17725), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_3(address_space: &mut AddressSpace) { @@ -148,12 +189,28 @@ fn add_variable_3(address_space: &mut AddressSpace) { let name = "HeaderLayoutUri"; let value = Variant::Empty; let node_id = NodeId::new(0, 17559); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17725), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17725), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_4(address_space: &mut AddressSpace) { @@ -162,11 +219,26 @@ fn add_variable_4(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17744); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17743), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17743), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_5(address_space: &mut AddressSpace) { @@ -174,12 +246,35 @@ fn add_variable_5(address_space: &mut AddressSpace) { let name = "DataSetFieldContentMask"; let value = Variant::Empty; let node_id = NodeId::new(0, 17745); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15583), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17743), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 15583), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17743), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_6(address_space: &mut AddressSpace) { @@ -187,12 +282,35 @@ fn add_variable_6(address_space: &mut AddressSpace) { let name = "DataSetWriterProperties"; let value = Variant::Empty; let node_id = NodeId::new(0, 17490); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 14533), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17743), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 14533), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17743), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_7(address_space: &mut AddressSpace) { @@ -200,12 +318,35 @@ fn add_variable_7(address_space: &mut AddressSpace) { let name = "State"; let value = Variant::Empty; let node_id = NodeId::new(0, 17750); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 14647), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17749), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 14647), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17749), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_8(address_space: &mut AddressSpace) { @@ -213,12 +354,35 @@ fn add_variable_8(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 17813); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17812), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17812), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_9(address_space: &mut AddressSpace) { @@ -227,14 +391,41 @@ fn add_variable_9(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17814); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17815), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17816), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17817), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17812), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17815), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17816), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17817), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17812), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_10(address_space: &mut AddressSpace) { @@ -243,11 +434,26 @@ fn add_variable_10(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17815); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17814), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17814), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_11(address_space: &mut AddressSpace) { @@ -255,12 +461,35 @@ fn add_variable_11(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 17816); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17814), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17814), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_12(address_space: &mut AddressSpace) { @@ -268,12 +497,35 @@ fn add_variable_12(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 17817); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17814), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17814), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_13(address_space: &mut AddressSpace) { @@ -282,14 +534,41 @@ fn add_variable_13(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17819); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17820), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17821), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17822), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17812), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17820), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17821), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17822), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17812), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_14(address_space: &mut AddressSpace) { @@ -298,11 +577,26 @@ fn add_variable_14(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17820); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17819), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17819), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_15(address_space: &mut AddressSpace) { @@ -310,12 +604,35 @@ fn add_variable_15(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 17821); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17819), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17819), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_16(address_space: &mut AddressSpace) { @@ -323,12 +640,35 @@ fn add_variable_16(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 17822); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17819), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17819), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_17(address_space: &mut AddressSpace) { @@ -337,11 +677,26 @@ fn add_variable_17(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17825); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17812), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17812), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_18(address_space: &mut AddressSpace) { @@ -350,14 +705,41 @@ fn add_variable_18(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17827); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17828), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17829), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17830), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17826), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17828), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17829), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17830), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17826), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_19(address_space: &mut AddressSpace) { @@ -366,11 +748,26 @@ fn add_variable_19(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17828); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17827), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17827), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_20(address_space: &mut AddressSpace) { @@ -378,12 +775,35 @@ fn add_variable_20(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 17829); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17827), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17827), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_21(address_space: &mut AddressSpace) { @@ -391,12 +811,35 @@ fn add_variable_21(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 17830); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17827), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17827), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_22(address_space: &mut AddressSpace) { @@ -405,14 +848,41 @@ fn add_variable_22(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17832); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17833), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17834), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17835), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17826), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17833), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17834), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17835), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17826), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_23(address_space: &mut AddressSpace) { @@ -421,11 +891,26 @@ fn add_variable_23(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17833); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17832), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17832), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_24(address_space: &mut AddressSpace) { @@ -433,12 +918,35 @@ fn add_variable_24(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 17834); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17832), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17832), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_25(address_space: &mut AddressSpace) { @@ -446,12 +954,35 @@ fn add_variable_25(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 17835); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17832), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17832), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_26(address_space: &mut AddressSpace) { @@ -460,14 +991,41 @@ fn add_variable_26(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17837); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17838), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17839), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17840), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17826), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17838), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17839), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17840), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17826), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_27(address_space: &mut AddressSpace) { @@ -476,11 +1034,26 @@ fn add_variable_27(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17838); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17837), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17837), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_28(address_space: &mut AddressSpace) { @@ -488,12 +1061,35 @@ fn add_variable_28(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 17839); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17837), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17837), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_29(address_space: &mut AddressSpace) { @@ -501,12 +1097,35 @@ fn add_variable_29(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 17840); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17837), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17837), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_30(address_space: &mut AddressSpace) { @@ -515,14 +1134,41 @@ fn add_variable_30(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17842); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17843), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17844), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17845), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17826), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17843), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17844), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17845), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17826), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_31(address_space: &mut AddressSpace) { @@ -531,11 +1177,26 @@ fn add_variable_31(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17843); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17842), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17842), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_32(address_space: &mut AddressSpace) { @@ -543,12 +1204,35 @@ fn add_variable_32(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 17844); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17842), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17842), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_33(address_space: &mut AddressSpace) { @@ -556,12 +1240,35 @@ fn add_variable_33(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 17845); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17842), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17842), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_34(address_space: &mut AddressSpace) { @@ -570,14 +1277,41 @@ fn add_variable_34(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17847); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17848), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17849), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17850), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17826), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17848), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17849), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17850), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17826), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_35(address_space: &mut AddressSpace) { @@ -586,11 +1320,26 @@ fn add_variable_35(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17848); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17847), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17847), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_36(address_space: &mut AddressSpace) { @@ -598,12 +1347,35 @@ fn add_variable_36(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 17849); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17847), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17847), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_37(address_space: &mut AddressSpace) { @@ -611,12 +1383,35 @@ fn add_variable_37(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 17850); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17847), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17847), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_38(address_space: &mut AddressSpace) { @@ -625,14 +1420,41 @@ fn add_variable_38(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17853); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17854), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17855), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17856), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17826), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17854), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17855), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17856), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17826), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_39(address_space: &mut AddressSpace) { @@ -641,11 +1463,26 @@ fn add_variable_39(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17854); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17853), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17853), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_40(address_space: &mut AddressSpace) { @@ -653,12 +1490,35 @@ fn add_variable_40(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 17855); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17853), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17853), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_41(address_space: &mut AddressSpace) { @@ -666,12 +1526,35 @@ fn add_variable_41(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 17856); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17853), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17853), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_42(address_space: &mut AddressSpace) { @@ -680,14 +1563,41 @@ fn add_variable_42(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17859); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17864), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17871), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17872), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17826), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17864), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17871), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17872), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17826), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_43(address_space: &mut AddressSpace) { @@ -696,11 +1606,26 @@ fn add_variable_43(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17864); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17859), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17859), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_44(address_space: &mut AddressSpace) { @@ -708,12 +1633,35 @@ fn add_variable_44(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 17871); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17859), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17859), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_45(address_space: &mut AddressSpace) { @@ -721,12 +1669,35 @@ fn add_variable_45(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 17872); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17859), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17859), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_46(address_space: &mut AddressSpace) { @@ -735,14 +1706,41 @@ fn add_variable_46(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17874); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17878), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17885), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17892), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17826), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17878), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17885), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17892), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17826), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_47(address_space: &mut AddressSpace) { @@ -751,11 +1749,26 @@ fn add_variable_47(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17878); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17874), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17874), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_48(address_space: &mut AddressSpace) { @@ -763,12 +1776,35 @@ fn add_variable_48(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 17885); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17874), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17874), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_49(address_space: &mut AddressSpace) { @@ -776,12 +1812,35 @@ fn add_variable_49(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 17892); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17874), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17874), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_50(address_space: &mut AddressSpace) { @@ -790,14 +1849,41 @@ fn add_variable_50(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17900); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17901), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17902), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17903), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17826), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17901), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17902), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17903), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17826), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_51(address_space: &mut AddressSpace) { @@ -806,11 +1892,26 @@ fn add_variable_51(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17901); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17900), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17900), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_52(address_space: &mut AddressSpace) { @@ -818,12 +1919,35 @@ fn add_variable_52(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 17902); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17900), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17900), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_53(address_space: &mut AddressSpace) { @@ -831,12 +1955,35 @@ fn add_variable_53(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 17903); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17900), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17900), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_54(address_space: &mut AddressSpace) { @@ -845,12 +1992,31 @@ fn add_variable_54(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17913); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17920), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17858), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17920), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17858), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_55(address_space: &mut AddressSpace) { @@ -858,12 +2024,35 @@ fn add_variable_55(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 17920); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17913), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17913), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_56(address_space: &mut AddressSpace) { @@ -872,12 +2061,31 @@ fn add_variable_56(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17927); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17934), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17858), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17934), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17858), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_57(address_space: &mut AddressSpace) { @@ -885,78 +2093,170 @@ fn add_variable_57(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 17934); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17927), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17927), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_58(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Configuration"), - data_type: NodeId::new(0, 15597), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Configuration"), + data_type: NodeId::new(0, 15597), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 17976); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17969), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17969), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_59(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("DataSetWriterNodeId"), - data_type: NodeId::new(0, 17), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("DataSetWriterNodeId"), + data_type: NodeId::new(0, 17), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 17987); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17969), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17969), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_60(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("DataSetWriterNodeId"), - data_type: NodeId::new(0, 17), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("DataSetWriterNodeId"), + data_type: NodeId::new(0, 17), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 17993); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17992), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17992), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_61(address_space: &mut AddressSpace) { @@ -964,12 +2264,28 @@ fn add_variable_61(address_space: &mut AddressSpace) { let name = "PublisherId"; let value = Variant::Empty; let node_id = NodeId::new(0, 18077); - let node = Variable::new_data_value(&node_id, name, name, DataTypeId::Boolean, None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18076), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, DataTypeId::Boolean, None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18076), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_62(address_space: &mut AddressSpace) { @@ -978,11 +2294,26 @@ fn add_variable_62(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 18078); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18076), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18076), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_63(address_space: &mut AddressSpace) { @@ -991,11 +2322,26 @@ fn add_variable_63(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 18079); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18076), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18076), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_64(address_space: &mut AddressSpace) { @@ -1003,12 +2349,35 @@ fn add_variable_64(address_space: &mut AddressSpace) { let name = "DataSetMetaData"; let value = Variant::Empty; let node_id = NodeId::new(0, 18080); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 14523), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18076), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 14523), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18076), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_65(address_space: &mut AddressSpace) { @@ -1016,12 +2385,35 @@ fn add_variable_65(address_space: &mut AddressSpace) { let name = "DataSetFieldContentMask"; let value = Variant::Empty; let node_id = NodeId::new(0, 18081); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15583), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18076), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 15583), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18076), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_66(address_space: &mut AddressSpace) { @@ -1029,12 +2421,28 @@ fn add_variable_66(address_space: &mut AddressSpace) { let name = "MessageReceiveTimeout"; let value = Variant::Empty; let node_id = NodeId::new(0, 18082); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18076), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18076), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_67(address_space: &mut AddressSpace) { @@ -1043,11 +2451,26 @@ fn add_variable_67(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17560); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18076), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18076), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_68(address_space: &mut AddressSpace) { @@ -1055,12 +2478,28 @@ fn add_variable_68(address_space: &mut AddressSpace) { let name = "HeaderLayoutUri"; let value = Variant::Empty; let node_id = NodeId::new(0, 17562); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18076), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18076), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_69(address_space: &mut AddressSpace) { @@ -1068,12 +2507,35 @@ fn add_variable_69(address_space: &mut AddressSpace) { let name = "DataSetReaderProperties"; let value = Variant::Empty; let node_id = NodeId::new(0, 17492); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 14533), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18076), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 14533), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18076), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_70(address_space: &mut AddressSpace) { @@ -1081,12 +2543,35 @@ fn add_variable_70(address_space: &mut AddressSpace) { let name = "State"; let value = Variant::Empty; let node_id = NodeId::new(0, 18089); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 14647), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18088), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 14647), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18088), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_71(address_space: &mut AddressSpace) { @@ -1094,12 +2579,35 @@ fn add_variable_71(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 21016); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21015), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21015), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_72(address_space: &mut AddressSpace) { @@ -1108,14 +2616,41 @@ fn add_variable_72(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 21017); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 21018), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 21019), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 21020), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21015), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 21018), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21019), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21020), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21015), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_73(address_space: &mut AddressSpace) { @@ -1124,11 +2659,26 @@ fn add_variable_73(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 21018); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21017), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21017), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_74(address_space: &mut AddressSpace) { @@ -1136,12 +2686,35 @@ fn add_variable_74(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 21019); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21017), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21017), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_75(address_space: &mut AddressSpace) { @@ -1149,12 +2722,35 @@ fn add_variable_75(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 21020); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21017), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21017), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_76(address_space: &mut AddressSpace) { @@ -1163,14 +2759,41 @@ fn add_variable_76(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 21022); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 21023), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 21024), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 21025), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21015), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 21023), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21024), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21025), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21015), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_77(address_space: &mut AddressSpace) { @@ -1179,11 +2802,26 @@ fn add_variable_77(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 21023); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21022), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21022), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_78(address_space: &mut AddressSpace) { @@ -1191,12 +2829,35 @@ fn add_variable_78(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 21024); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21022), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21022), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_79(address_space: &mut AddressSpace) { @@ -1204,12 +2865,35 @@ fn add_variable_79(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 21025); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21022), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21022), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_80(address_space: &mut AddressSpace) { @@ -1218,11 +2902,26 @@ fn add_variable_80(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 21028); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21015), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21015), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_81(address_space: &mut AddressSpace) { @@ -1231,14 +2930,41 @@ fn add_variable_81(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 21030); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 21031), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 21032), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 21033), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21029), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 21031), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21032), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21033), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21029), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_82(address_space: &mut AddressSpace) { @@ -1247,11 +2973,26 @@ fn add_variable_82(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 21031); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21030), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21030), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_83(address_space: &mut AddressSpace) { @@ -1259,12 +3000,35 @@ fn add_variable_83(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 21032); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21030), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21030), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_84(address_space: &mut AddressSpace) { @@ -1272,12 +3036,35 @@ fn add_variable_84(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 21033); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21030), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21030), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_85(address_space: &mut AddressSpace) { @@ -1286,14 +3073,41 @@ fn add_variable_85(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 21035); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 21036), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 21037), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 21038), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21029), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 21036), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21037), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21038), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21029), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_86(address_space: &mut AddressSpace) { @@ -1302,11 +3116,26 @@ fn add_variable_86(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 21036); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21035), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21035), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_87(address_space: &mut AddressSpace) { @@ -1314,12 +3143,35 @@ fn add_variable_87(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 21037); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21035), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21035), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_88(address_space: &mut AddressSpace) { @@ -1327,12 +3179,35 @@ fn add_variable_88(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 21038); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21035), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21035), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_89(address_space: &mut AddressSpace) { @@ -1341,14 +3216,41 @@ fn add_variable_89(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 21040); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 21041), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 21042), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 21043), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21029), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 21041), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21042), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21043), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21029), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_90(address_space: &mut AddressSpace) { @@ -1357,11 +3259,26 @@ fn add_variable_90(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 21041); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21040), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21040), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_91(address_space: &mut AddressSpace) { @@ -1369,12 +3286,35 @@ fn add_variable_91(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 21042); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21040), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21040), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_92(address_space: &mut AddressSpace) { @@ -1382,12 +3322,35 @@ fn add_variable_92(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 21043); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21040), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21040), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_93(address_space: &mut AddressSpace) { @@ -1396,14 +3359,41 @@ fn add_variable_93(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 21045); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 21046), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 21047), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 21048), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21029), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 21046), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21047), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21048), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21029), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_94(address_space: &mut AddressSpace) { @@ -1412,11 +3402,26 @@ fn add_variable_94(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 21046); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21045), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21045), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_95(address_space: &mut AddressSpace) { @@ -1424,12 +3429,35 @@ fn add_variable_95(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 21047); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21045), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21045), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_96(address_space: &mut AddressSpace) { @@ -1437,12 +3465,35 @@ fn add_variable_96(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 21048); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21045), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21045), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_97(address_space: &mut AddressSpace) { @@ -1451,14 +3502,41 @@ fn add_variable_97(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 21050); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 21051), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 21052), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 21053), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21029), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 21051), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21052), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21053), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21029), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_98(address_space: &mut AddressSpace) { @@ -1467,11 +3545,26 @@ fn add_variable_98(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 21051); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21050), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21050), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_99(address_space: &mut AddressSpace) { @@ -1479,12 +3572,35 @@ fn add_variable_99(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 21052); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21050), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21050), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_100(address_space: &mut AddressSpace) { @@ -1492,11 +3608,33 @@ fn add_variable_100(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 21053); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21050), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21050), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } - diff --git a/server/src/address_space/generated/nodeset_14_8.rs b/server/src/address_space/generated/nodeset_14_8.rs index d6e8aa0c0..08b9e5e84 100644 --- a/server/src/address_space/generated/nodeset_14_8.rs +++ b/server/src/address_space/generated/nodeset_14_8.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.NodeSet2.Part14.xml by tools/schema/gen_address_space.js // DO NOT EDIT THIS FILE @@ -9,8 +9,11 @@ use std::{convert::TryFrom, str::FromStr}; #[allow(unused_imports)] use crate::{ - address_space::{EventNotifier, types::*}, - prelude::{DataTypeId, ExtensionObject, LocalizedText, NodeId, ReferenceTypeId, service_types::Argument, UAString, Variant, VariantTypeId} + address_space::{types::*, EventNotifier}, + prelude::{ + service_types::Argument, DataTypeId, ExtensionObject, LocalizedText, NodeId, + ReferenceTypeId, UAString, Variant, VariantTypeId, + }, }; #[allow(unused_variables)] @@ -123,14 +126,41 @@ fn add_variable_1(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 21055); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 21056), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 21057), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 21058), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21029), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 21056), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21057), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21058), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21029), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_2(address_space: &mut AddressSpace) { @@ -139,11 +169,26 @@ fn add_variable_2(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 21056); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21055), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21055), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_3(address_space: &mut AddressSpace) { @@ -151,12 +196,35 @@ fn add_variable_3(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 21057); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21055), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21055), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_4(address_space: &mut AddressSpace) { @@ -164,12 +232,35 @@ fn add_variable_4(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 21058); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21055), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21055), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_5(address_space: &mut AddressSpace) { @@ -178,14 +269,41 @@ fn add_variable_5(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 21061); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 21062), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 21063), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 21064), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21029), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 21062), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21063), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21064), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21029), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_6(address_space: &mut AddressSpace) { @@ -194,11 +312,26 @@ fn add_variable_6(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 21062); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21061), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21061), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_7(address_space: &mut AddressSpace) { @@ -206,12 +339,35 @@ fn add_variable_7(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 21063); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21061), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21061), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_8(address_space: &mut AddressSpace) { @@ -219,12 +375,35 @@ fn add_variable_8(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 21064); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21061), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21061), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_9(address_space: &mut AddressSpace) { @@ -233,12 +412,31 @@ fn add_variable_9(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 21076); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 21077), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21060), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 21077), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21060), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_10(address_space: &mut AddressSpace) { @@ -246,12 +444,35 @@ fn add_variable_10(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 21077); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21076), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21076), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_11(address_space: &mut AddressSpace) { @@ -260,12 +481,31 @@ fn add_variable_11(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 21078); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 21079), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21060), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 21079), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21060), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_12(address_space: &mut AddressSpace) { @@ -273,78 +513,170 @@ fn add_variable_12(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 21079); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21078), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21078), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_13(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Configuration"), - data_type: NodeId::new(0, 15623), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Configuration"), + data_type: NodeId::new(0, 15623), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 21083); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21082), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21082), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_14(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("DataSetReaderNodeId"), - data_type: NodeId::new(0, 17), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("DataSetReaderNodeId"), + data_type: NodeId::new(0, 17), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 21084); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21082), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21082), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_15(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("DataSetReaderNodeId"), - data_type: NodeId::new(0, 17), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("DataSetReaderNodeId"), + data_type: NodeId::new(0, 17), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 21086); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 21085), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21085), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_16(address_space: &mut AddressSpace) { @@ -353,11 +685,26 @@ fn add_variable_16(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 21092); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15298), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15298), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_17(address_space: &mut AddressSpace) { @@ -365,12 +712,35 @@ fn add_variable_17(address_space: &mut AddressSpace) { let name = "DataSetFieldContentMask"; let value = Variant::Empty; let node_id = NodeId::new(0, 21093); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15583), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15298), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 15583), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15298), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_18(address_space: &mut AddressSpace) { @@ -379,11 +749,26 @@ fn add_variable_18(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 21094); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15298), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15298), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_19(address_space: &mut AddressSpace) { @@ -391,12 +776,35 @@ fn add_variable_19(address_space: &mut AddressSpace) { let name = "DataSetWriterProperties"; let value = Variant::Empty; let node_id = NodeId::new(0, 17493); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 14533), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15298), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 14533), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15298), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_20(address_space: &mut AddressSpace) { @@ -404,12 +812,35 @@ fn add_variable_20(address_space: &mut AddressSpace) { let name = "State"; let value = Variant::Empty; let node_id = NodeId::new(0, 15300); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 14647), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15299), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 14647), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15299), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_21(address_space: &mut AddressSpace) { @@ -417,12 +848,35 @@ fn add_variable_21(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 19551); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19550), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19550), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_22(address_space: &mut AddressSpace) { @@ -431,14 +885,41 @@ fn add_variable_22(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19552); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19553), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19554), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19555), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19550), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19553), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19554), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19555), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19550), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_23(address_space: &mut AddressSpace) { @@ -447,11 +928,26 @@ fn add_variable_23(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19553); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19552), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19552), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_24(address_space: &mut AddressSpace) { @@ -459,12 +955,35 @@ fn add_variable_24(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 19554); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19552), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19552), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_25(address_space: &mut AddressSpace) { @@ -472,12 +991,35 @@ fn add_variable_25(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 19555); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19552), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19552), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_26(address_space: &mut AddressSpace) { @@ -486,14 +1028,41 @@ fn add_variable_26(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19557); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19558), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19559), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19560), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19550), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19558), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19559), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19560), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19550), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_27(address_space: &mut AddressSpace) { @@ -502,11 +1071,26 @@ fn add_variable_27(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19558); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19557), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19557), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_28(address_space: &mut AddressSpace) { @@ -514,12 +1098,35 @@ fn add_variable_28(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 19559); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19557), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19557), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_29(address_space: &mut AddressSpace) { @@ -527,12 +1134,35 @@ fn add_variable_29(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 19560); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19557), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19557), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_30(address_space: &mut AddressSpace) { @@ -541,11 +1171,26 @@ fn add_variable_30(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19563); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19550), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19550), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_31(address_space: &mut AddressSpace) { @@ -554,14 +1199,41 @@ fn add_variable_31(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19565); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19566), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19567), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19568), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19564), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19566), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19567), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19568), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19564), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_32(address_space: &mut AddressSpace) { @@ -570,11 +1242,26 @@ fn add_variable_32(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19566); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19565), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19565), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_33(address_space: &mut AddressSpace) { @@ -582,12 +1269,35 @@ fn add_variable_33(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 19567); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19565), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19565), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_34(address_space: &mut AddressSpace) { @@ -595,12 +1305,35 @@ fn add_variable_34(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 19568); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19565), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19565), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_35(address_space: &mut AddressSpace) { @@ -609,14 +1342,41 @@ fn add_variable_35(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19570); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19571), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19572), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19573), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19564), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19571), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19572), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19573), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19564), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_36(address_space: &mut AddressSpace) { @@ -625,11 +1385,26 @@ fn add_variable_36(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19571); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19570), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19570), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_37(address_space: &mut AddressSpace) { @@ -637,12 +1412,35 @@ fn add_variable_37(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 19572); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19570), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19570), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_38(address_space: &mut AddressSpace) { @@ -650,12 +1448,35 @@ fn add_variable_38(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 19573); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19570), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19570), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_39(address_space: &mut AddressSpace) { @@ -664,14 +1485,41 @@ fn add_variable_39(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19575); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19576), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19577), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19578), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19564), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19576), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19577), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19578), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19564), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_40(address_space: &mut AddressSpace) { @@ -680,11 +1528,26 @@ fn add_variable_40(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19576); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19575), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19575), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_41(address_space: &mut AddressSpace) { @@ -692,12 +1555,35 @@ fn add_variable_41(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 19577); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19575), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19575), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_42(address_space: &mut AddressSpace) { @@ -705,12 +1591,35 @@ fn add_variable_42(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 19578); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19575), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19575), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_43(address_space: &mut AddressSpace) { @@ -719,14 +1628,41 @@ fn add_variable_43(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19580); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19581), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19582), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19583), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19564), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19581), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19582), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19583), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19564), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_44(address_space: &mut AddressSpace) { @@ -735,11 +1671,26 @@ fn add_variable_44(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19581); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19580), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19580), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_45(address_space: &mut AddressSpace) { @@ -747,12 +1698,35 @@ fn add_variable_45(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 19582); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19580), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19580), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_46(address_space: &mut AddressSpace) { @@ -760,12 +1734,35 @@ fn add_variable_46(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 19583); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19580), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19580), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_47(address_space: &mut AddressSpace) { @@ -774,14 +1771,41 @@ fn add_variable_47(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19585); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19586), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19587), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19588), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19564), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19586), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19587), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19588), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19564), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_48(address_space: &mut AddressSpace) { @@ -790,11 +1814,26 @@ fn add_variable_48(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19586); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19585), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19585), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_49(address_space: &mut AddressSpace) { @@ -802,12 +1841,35 @@ fn add_variable_49(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 19587); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19585), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19585), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_50(address_space: &mut AddressSpace) { @@ -815,12 +1877,35 @@ fn add_variable_50(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 19588); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19585), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19585), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_51(address_space: &mut AddressSpace) { @@ -829,14 +1914,41 @@ fn add_variable_51(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19590); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19591), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19592), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19593), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19564), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19591), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19592), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19593), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19564), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_52(address_space: &mut AddressSpace) { @@ -845,11 +1957,26 @@ fn add_variable_52(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19591); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19590), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19590), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_53(address_space: &mut AddressSpace) { @@ -857,12 +1984,35 @@ fn add_variable_53(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 19592); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19590), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19590), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_54(address_space: &mut AddressSpace) { @@ -870,12 +2020,35 @@ fn add_variable_54(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 19593); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19590), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19590), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_55(address_space: &mut AddressSpace) { @@ -884,14 +2057,41 @@ fn add_variable_55(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19596); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19597), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19598), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19599), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19564), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19597), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19598), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19599), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19564), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_56(address_space: &mut AddressSpace) { @@ -900,11 +2100,26 @@ fn add_variable_56(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19597); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19596), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19596), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_57(address_space: &mut AddressSpace) { @@ -912,12 +2127,35 @@ fn add_variable_57(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 19598); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19596), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19596), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_58(address_space: &mut AddressSpace) { @@ -925,12 +2163,35 @@ fn add_variable_58(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 19599); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19596), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19596), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_59(address_space: &mut AddressSpace) { @@ -938,12 +2199,28 @@ fn add_variable_59(address_space: &mut AddressSpace) { let name = "PublisherId"; let value = Variant::Empty; let node_id = NodeId::new(0, 21097); - let node = Variable::new_data_value(&node_id, name, name, DataTypeId::Boolean, None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15306), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, DataTypeId::Boolean, None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15306), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_60(address_space: &mut AddressSpace) { @@ -952,11 +2229,26 @@ fn add_variable_60(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 21098); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15306), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15306), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_61(address_space: &mut AddressSpace) { @@ -965,11 +2257,26 @@ fn add_variable_61(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 21099); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15306), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15306), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_62(address_space: &mut AddressSpace) { @@ -977,12 +2284,35 @@ fn add_variable_62(address_space: &mut AddressSpace) { let name = "DataSetMetaData"; let value = Variant::Empty; let node_id = NodeId::new(0, 21100); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 14523), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15306), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 14523), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15306), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_63(address_space: &mut AddressSpace) { @@ -990,12 +2320,35 @@ fn add_variable_63(address_space: &mut AddressSpace) { let name = "DataSetFieldContentMask"; let value = Variant::Empty; let node_id = NodeId::new(0, 21101); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15583), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15306), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 15583), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15306), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_64(address_space: &mut AddressSpace) { @@ -1003,12 +2356,28 @@ fn add_variable_64(address_space: &mut AddressSpace) { let name = "MessageReceiveTimeout"; let value = Variant::Empty; let node_id = NodeId::new(0, 21102); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15306), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15306), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_65(address_space: &mut AddressSpace) { @@ -1017,11 +2386,26 @@ fn add_variable_65(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17563); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15306), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15306), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_66(address_space: &mut AddressSpace) { @@ -1029,12 +2413,28 @@ fn add_variable_66(address_space: &mut AddressSpace) { let name = "HeaderLayoutUri"; let value = Variant::Empty; let node_id = NodeId::new(0, 17564); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15306), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15306), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_67(address_space: &mut AddressSpace) { @@ -1042,12 +2442,28 @@ fn add_variable_67(address_space: &mut AddressSpace) { let name = "SecurityMode"; let value = Variant::Empty; let node_id = NodeId::new(0, 15932); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 302), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15306), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 302), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15306), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_68(address_space: &mut AddressSpace) { @@ -1055,12 +2471,28 @@ fn add_variable_68(address_space: &mut AddressSpace) { let name = "SecurityGroupId"; let value = Variant::Empty; let node_id = NodeId::new(0, 15933); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15306), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15306), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_69(address_space: &mut AddressSpace) { @@ -1068,12 +2500,35 @@ fn add_variable_69(address_space: &mut AddressSpace) { let name = "SecurityKeyServices"; let value = Variant::Empty; let node_id = NodeId::new(0, 15934); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 312), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15306), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 312), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15306), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_70(address_space: &mut AddressSpace) { @@ -1081,12 +2536,35 @@ fn add_variable_70(address_space: &mut AddressSpace) { let name = "DataSetReaderProperties"; let value = Variant::Empty; let node_id = NodeId::new(0, 17494); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 14533), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15306), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 14533), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15306), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_71(address_space: &mut AddressSpace) { @@ -1094,12 +2572,35 @@ fn add_variable_71(address_space: &mut AddressSpace) { let name = "State"; let value = Variant::Empty; let node_id = NodeId::new(0, 15308); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 14647), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15307), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 14647), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15307), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_72(address_space: &mut AddressSpace) { @@ -1107,12 +2608,35 @@ fn add_variable_72(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 19610); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19609), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19609), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_73(address_space: &mut AddressSpace) { @@ -1121,14 +2645,41 @@ fn add_variable_73(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19611); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19612), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19613), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19614), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19609), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19612), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19613), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19614), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19609), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_74(address_space: &mut AddressSpace) { @@ -1137,11 +2688,26 @@ fn add_variable_74(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19612); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19611), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19611), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_75(address_space: &mut AddressSpace) { @@ -1149,12 +2715,35 @@ fn add_variable_75(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 19613); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19611), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19611), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_76(address_space: &mut AddressSpace) { @@ -1162,12 +2751,35 @@ fn add_variable_76(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 19614); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19611), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19611), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_77(address_space: &mut AddressSpace) { @@ -1176,14 +2788,41 @@ fn add_variable_77(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19616); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19617), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19618), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19619), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19609), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19617), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19618), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19619), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19609), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_78(address_space: &mut AddressSpace) { @@ -1192,11 +2831,26 @@ fn add_variable_78(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19617); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19616), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19616), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_79(address_space: &mut AddressSpace) { @@ -1204,12 +2858,35 @@ fn add_variable_79(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 19618); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19616), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19616), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_80(address_space: &mut AddressSpace) { @@ -1217,12 +2894,35 @@ fn add_variable_80(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 19619); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19616), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19616), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_81(address_space: &mut AddressSpace) { @@ -1231,11 +2931,26 @@ fn add_variable_81(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19622); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19609), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19609), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_82(address_space: &mut AddressSpace) { @@ -1244,14 +2959,41 @@ fn add_variable_82(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19624); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19625), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19626), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19627), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19623), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19625), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19626), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19627), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19623), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_83(address_space: &mut AddressSpace) { @@ -1260,11 +3002,26 @@ fn add_variable_83(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19625); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19624), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19624), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_84(address_space: &mut AddressSpace) { @@ -1272,12 +3029,35 @@ fn add_variable_84(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 19626); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19624), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19624), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_85(address_space: &mut AddressSpace) { @@ -1285,12 +3065,35 @@ fn add_variable_85(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 19627); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19624), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19624), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_86(address_space: &mut AddressSpace) { @@ -1299,14 +3102,41 @@ fn add_variable_86(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19629); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19630), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19631), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19632), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19623), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19630), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19631), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19632), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19623), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_87(address_space: &mut AddressSpace) { @@ -1315,11 +3145,26 @@ fn add_variable_87(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19630); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19629), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19629), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_88(address_space: &mut AddressSpace) { @@ -1327,12 +3172,35 @@ fn add_variable_88(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 19631); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19629), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19629), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_89(address_space: &mut AddressSpace) { @@ -1340,12 +3208,35 @@ fn add_variable_89(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 19632); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19629), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19629), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_90(address_space: &mut AddressSpace) { @@ -1354,14 +3245,41 @@ fn add_variable_90(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19634); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19635), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19636), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19637), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19623), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19635), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19636), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19637), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19623), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_91(address_space: &mut AddressSpace) { @@ -1370,11 +3288,26 @@ fn add_variable_91(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19635); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19634), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19634), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_92(address_space: &mut AddressSpace) { @@ -1382,12 +3315,35 @@ fn add_variable_92(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 19636); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19634), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19634), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_93(address_space: &mut AddressSpace) { @@ -1395,12 +3351,35 @@ fn add_variable_93(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 19637); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19634), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19634), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_94(address_space: &mut AddressSpace) { @@ -1409,14 +3388,41 @@ fn add_variable_94(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19639); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19640), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19641), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19642), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19623), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19640), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19641), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19642), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19623), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_95(address_space: &mut AddressSpace) { @@ -1425,11 +3431,26 @@ fn add_variable_95(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19640); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19639), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19639), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_96(address_space: &mut AddressSpace) { @@ -1437,12 +3458,35 @@ fn add_variable_96(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 19641); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19639), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19639), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_97(address_space: &mut AddressSpace) { @@ -1450,12 +3494,35 @@ fn add_variable_97(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 19642); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19639), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19639), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_98(address_space: &mut AddressSpace) { @@ -1464,14 +3531,41 @@ fn add_variable_98(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19644); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19645), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19646), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19647), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19623), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19645), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19646), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19647), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19623), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_99(address_space: &mut AddressSpace) { @@ -1480,11 +3574,26 @@ fn add_variable_99(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19645); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19644), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19644), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_100(address_space: &mut AddressSpace) { @@ -1492,11 +3601,33 @@ fn add_variable_100(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 19646); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19644), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19644), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } - diff --git a/server/src/address_space/generated/nodeset_14_9.rs b/server/src/address_space/generated/nodeset_14_9.rs index 376e7d4a1..91c892b93 100644 --- a/server/src/address_space/generated/nodeset_14_9.rs +++ b/server/src/address_space/generated/nodeset_14_9.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.NodeSet2.Part14.xml by tools/schema/gen_address_space.js // DO NOT EDIT THIS FILE @@ -9,8 +9,11 @@ use std::{convert::TryFrom, str::FromStr}; #[allow(unused_imports)] use crate::{ - address_space::{EventNotifier, types::*}, - prelude::{DataTypeId, ExtensionObject, LocalizedText, NodeId, ReferenceTypeId, service_types::Argument, UAString, Variant, VariantTypeId} + address_space::{types::*, EventNotifier}, + prelude::{ + service_types::Argument, DataTypeId, ExtensionObject, LocalizedText, NodeId, + ReferenceTypeId, UAString, Variant, VariantTypeId, + }, }; #[allow(unused_variables)] @@ -122,12 +125,35 @@ fn add_variable_1(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 19647); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19644), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19644), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_2(address_space: &mut AddressSpace) { @@ -136,14 +162,41 @@ fn add_variable_2(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19649); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19650), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19651), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19652), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19623), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19650), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19651), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19652), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19623), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_3(address_space: &mut AddressSpace) { @@ -152,11 +205,26 @@ fn add_variable_3(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19650); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19649), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19649), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_4(address_space: &mut AddressSpace) { @@ -164,12 +232,35 @@ fn add_variable_4(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 19651); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19649), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19649), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_5(address_space: &mut AddressSpace) { @@ -177,12 +268,35 @@ fn add_variable_5(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 19652); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19649), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19649), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_6(address_space: &mut AddressSpace) { @@ -191,14 +305,41 @@ fn add_variable_6(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19655); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19656), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19657), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19658), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19623), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19656), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19657), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19658), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19623), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_7(address_space: &mut AddressSpace) { @@ -207,11 +348,26 @@ fn add_variable_7(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19656); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19655), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19655), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_8(address_space: &mut AddressSpace) { @@ -219,12 +375,35 @@ fn add_variable_8(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 19657); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19655), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19655), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_9(address_space: &mut AddressSpace) { @@ -232,12 +411,35 @@ fn add_variable_9(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 19658); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19655), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19655), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_10(address_space: &mut AddressSpace) { @@ -245,51 +447,101 @@ fn add_variable_10(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("ConfigurationVersion"), data_type: NodeId::new(0, 14593), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("TargetVariablesToAdd"), data_type: NodeId::new(0, 14744), value_rank: 1, array_dimensions: Some(vec![0]), description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 17387); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17386), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17386), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_11(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("AddResults"), - data_type: NodeId::new(0, 19), - value_rank: 1, - array_dimensions: Some(vec![0]), - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("AddResults"), + data_type: NodeId::new(0, 19), + value_rank: 1, + array_dimensions: Some(vec![0]), + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 17388); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17386), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17386), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_12(address_space: &mut AddressSpace) { @@ -297,51 +549,101 @@ fn add_variable_12(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("ParentNodeName"), data_type: NodeId::new(0, 12), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("RolePermissions"), data_type: NodeId::new(0, 96), value_rank: 1, array_dimensions: Some(vec![0]), description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 17390); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17389), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17389), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_13(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("ParentNodeId"), - data_type: NodeId::new(0, 17), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("ParentNodeId"), + data_type: NodeId::new(0, 17), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 17391); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17389), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17389), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_14(address_space: &mut AddressSpace) { @@ -349,12 +651,35 @@ fn add_variable_14(address_space: &mut AddressSpace) { let name = "TargetVariables"; let value = Variant::Empty; let node_id = NodeId::new(0, 15114); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 14744), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15111), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 14744), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15111), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_15(address_space: &mut AddressSpace) { @@ -362,51 +687,101 @@ fn add_variable_15(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("ConfigurationVersion"), data_type: NodeId::new(0, 14593), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("TargetVariablesToAdd"), data_type: NodeId::new(0, 14744), value_rank: 1, array_dimensions: Some(vec![0]), description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 15116); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15115), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15115), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_16(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("AddResults"), - data_type: NodeId::new(0, 19), - value_rank: 1, - array_dimensions: Some(vec![0]), - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("AddResults"), + data_type: NodeId::new(0, 19), + value_rank: 1, + array_dimensions: Some(vec![0]), + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 15117); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15115), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15115), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_17(address_space: &mut AddressSpace) { @@ -414,51 +789,101 @@ fn add_variable_17(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("ConfigurationVersion"), data_type: NodeId::new(0, 14593), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("TargetsToRemove"), data_type: NodeId::new(0, 7), value_rank: 1, array_dimensions: Some(vec![0]), description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 15119); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15118), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15118), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_18(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("RemoveResults"), - data_type: NodeId::new(0, 19), - value_rank: 1, - array_dimensions: Some(vec![0]), - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("RemoveResults"), + data_type: NodeId::new(0, 19), + value_rank: 1, + array_dimensions: Some(vec![0]), + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 15120); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15118), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15118), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_19(address_space: &mut AddressSpace) { @@ -466,12 +891,35 @@ fn add_variable_19(address_space: &mut AddressSpace) { let name = "State"; let value = Variant::Empty; let node_id = NodeId::new(0, 14644); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 14647), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 14643), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 14647), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14643), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_20(address_space: &mut AddressSpace) { @@ -479,12 +927,35 @@ fn add_variable_20(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 19678); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19677), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19677), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_21(address_space: &mut AddressSpace) { @@ -493,14 +964,41 @@ fn add_variable_21(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19679); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19680), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19681), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19682), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19677), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19680), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19681), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19682), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19677), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_22(address_space: &mut AddressSpace) { @@ -509,11 +1007,26 @@ fn add_variable_22(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19680); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19679), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19679), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_23(address_space: &mut AddressSpace) { @@ -521,12 +1034,35 @@ fn add_variable_23(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 19681); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19679), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19679), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_24(address_space: &mut AddressSpace) { @@ -534,12 +1070,35 @@ fn add_variable_24(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 19682); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19679), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19679), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_25(address_space: &mut AddressSpace) { @@ -548,14 +1107,41 @@ fn add_variable_25(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19684); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19685), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19686), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19687), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19677), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19685), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19686), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19687), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19677), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_26(address_space: &mut AddressSpace) { @@ -564,11 +1150,26 @@ fn add_variable_26(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19685); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19684), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19684), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_27(address_space: &mut AddressSpace) { @@ -576,12 +1177,35 @@ fn add_variable_27(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 19686); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19684), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19684), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_28(address_space: &mut AddressSpace) { @@ -589,12 +1213,35 @@ fn add_variable_28(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 19687); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19684), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19684), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_29(address_space: &mut AddressSpace) { @@ -603,11 +1250,26 @@ fn add_variable_29(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19690); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19677), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19677), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_30(address_space: &mut AddressSpace) { @@ -616,14 +1278,41 @@ fn add_variable_30(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19692); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19693), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19694), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19695), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19691), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19693), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19694), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19695), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19691), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_31(address_space: &mut AddressSpace) { @@ -632,11 +1321,26 @@ fn add_variable_31(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19693); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19692), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19692), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_32(address_space: &mut AddressSpace) { @@ -644,12 +1348,35 @@ fn add_variable_32(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 19694); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19692), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19692), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_33(address_space: &mut AddressSpace) { @@ -657,12 +1384,35 @@ fn add_variable_33(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 19695); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19692), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19692), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_34(address_space: &mut AddressSpace) { @@ -671,14 +1421,41 @@ fn add_variable_34(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19697); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19698), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19699), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19700), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19691), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19698), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19699), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19700), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19691), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_35(address_space: &mut AddressSpace) { @@ -687,11 +1464,26 @@ fn add_variable_35(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19698); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19697), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19697), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_36(address_space: &mut AddressSpace) { @@ -699,12 +1491,35 @@ fn add_variable_36(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 19699); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19697), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19697), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_37(address_space: &mut AddressSpace) { @@ -712,12 +1527,35 @@ fn add_variable_37(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 19700); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19697), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19697), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_38(address_space: &mut AddressSpace) { @@ -726,14 +1564,41 @@ fn add_variable_38(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19702); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19703), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19704), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19705), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19691), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19703), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19704), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19705), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19691), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_39(address_space: &mut AddressSpace) { @@ -742,11 +1607,26 @@ fn add_variable_39(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19703); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19702), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19702), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_40(address_space: &mut AddressSpace) { @@ -754,12 +1634,35 @@ fn add_variable_40(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 19704); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19702), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19702), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_41(address_space: &mut AddressSpace) { @@ -767,12 +1670,35 @@ fn add_variable_41(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 19705); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19702), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19702), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_42(address_space: &mut AddressSpace) { @@ -781,14 +1707,41 @@ fn add_variable_42(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19707); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19708), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19709), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19710), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19691), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19708), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19709), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19710), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19691), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_43(address_space: &mut AddressSpace) { @@ -797,11 +1750,26 @@ fn add_variable_43(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19708); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19707), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19707), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_44(address_space: &mut AddressSpace) { @@ -809,12 +1777,35 @@ fn add_variable_44(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 19709); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19707), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19707), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_45(address_space: &mut AddressSpace) { @@ -822,12 +1813,35 @@ fn add_variable_45(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 19710); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19707), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19707), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_46(address_space: &mut AddressSpace) { @@ -836,14 +1850,41 @@ fn add_variable_46(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19712); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19713), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19714), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19715), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19691), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19713), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19714), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19715), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19691), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_47(address_space: &mut AddressSpace) { @@ -852,11 +1893,26 @@ fn add_variable_47(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19713); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19712), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19712), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_48(address_space: &mut AddressSpace) { @@ -864,12 +1920,35 @@ fn add_variable_48(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 19714); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19712), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19712), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_49(address_space: &mut AddressSpace) { @@ -877,12 +1956,35 @@ fn add_variable_49(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 19715); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19712), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19712), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_50(address_space: &mut AddressSpace) { @@ -891,14 +1993,41 @@ fn add_variable_50(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19717); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19718), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19719), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19720), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19691), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19718), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19719), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19720), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19691), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_51(address_space: &mut AddressSpace) { @@ -907,11 +2036,26 @@ fn add_variable_51(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19718); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19717), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19717), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_52(address_space: &mut AddressSpace) { @@ -919,12 +2063,35 @@ fn add_variable_52(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 19719); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19717), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19717), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_53(address_space: &mut AddressSpace) { @@ -932,12 +2099,35 @@ fn add_variable_53(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 19720); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19717), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19717), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_54(address_space: &mut AddressSpace) { @@ -945,12 +2135,35 @@ fn add_variable_54(address_space: &mut AddressSpace) { let name = "EnumStrings"; let value = Variant::Empty; let node_id = NodeId::new(0, 19724); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19723), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 21), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19723), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_55(address_space: &mut AddressSpace) { @@ -959,11 +2172,26 @@ fn add_variable_55(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19726); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_56(address_space: &mut AddressSpace) { @@ -971,12 +2199,35 @@ fn add_variable_56(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 19727); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_57(address_space: &mut AddressSpace) { @@ -984,12 +2235,35 @@ fn add_variable_57(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 19728); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_58(address_space: &mut AddressSpace) { @@ -997,12 +2271,28 @@ fn add_variable_58(address_space: &mut AddressSpace) { let name = "TimeFirstChange"; let value = Variant::Empty; let node_id = NodeId::new(0, 19729); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 13), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 13), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_59(address_space: &mut AddressSpace) { @@ -1010,12 +2300,35 @@ fn add_variable_59(address_space: &mut AddressSpace) { let name = "EnumStrings"; let value = Variant::Empty; let node_id = NodeId::new(0, 19731); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19730), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 21), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19730), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_60(address_space: &mut AddressSpace) { @@ -1024,12 +2337,31 @@ fn add_variable_60(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19778); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19779), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19777), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19779), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19777), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_61(address_space: &mut AddressSpace) { @@ -1037,12 +2369,35 @@ fn add_variable_61(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 19779); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19778), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19778), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_62(address_space: &mut AddressSpace) { @@ -1051,12 +2406,31 @@ fn add_variable_62(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19780); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19781), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19777), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19781), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19777), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_63(address_space: &mut AddressSpace) { @@ -1064,12 +2438,35 @@ fn add_variable_63(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 19781); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19780), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19780), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_64(address_space: &mut AddressSpace) { @@ -1078,12 +2475,31 @@ fn add_variable_64(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19782); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19783), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19777), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19783), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19777), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_65(address_space: &mut AddressSpace) { @@ -1091,12 +2507,35 @@ fn add_variable_65(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 19783); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19782), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19782), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_66(address_space: &mut AddressSpace) { @@ -1105,12 +2544,31 @@ fn add_variable_66(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19784); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19785), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19777), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19785), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19777), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_67(address_space: &mut AddressSpace) { @@ -1118,12 +2576,35 @@ fn add_variable_67(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 19785); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19784), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19784), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_68(address_space: &mut AddressSpace) { @@ -1131,13 +2612,33 @@ fn add_variable_68(address_space: &mut AddressSpace) { let name = "ResolvedAddress"; let value = Variant::Empty; let node_id = NodeId::new(0, 19832); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19833), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19831), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19833), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19831), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_69(address_space: &mut AddressSpace) { @@ -1145,12 +2646,35 @@ fn add_variable_69(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 19833); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19832), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19832), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_70(address_space: &mut AddressSpace) { @@ -1159,14 +2683,41 @@ fn add_variable_70(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19880); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19881), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19882), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19883), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19848), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19881), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19882), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19883), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19848), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_71(address_space: &mut AddressSpace) { @@ -1175,11 +2726,26 @@ fn add_variable_71(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19881); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19880), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19880), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_72(address_space: &mut AddressSpace) { @@ -1187,12 +2753,35 @@ fn add_variable_72(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 19882); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19880), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19880), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_73(address_space: &mut AddressSpace) { @@ -1200,12 +2789,35 @@ fn add_variable_73(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 19883); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19880), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19880), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_74(address_space: &mut AddressSpace) { @@ -1214,14 +2826,41 @@ fn add_variable_74(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19885); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19886), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19887), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19888), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19848), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19886), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19887), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19888), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19848), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_75(address_space: &mut AddressSpace) { @@ -1230,11 +2869,26 @@ fn add_variable_75(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19886); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19885), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19885), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_76(address_space: &mut AddressSpace) { @@ -1242,12 +2896,35 @@ fn add_variable_76(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 19887); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19885), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19885), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_77(address_space: &mut AddressSpace) { @@ -1255,12 +2932,35 @@ fn add_variable_77(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 19888); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19885), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19885), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_78(address_space: &mut AddressSpace) { @@ -1269,14 +2969,41 @@ fn add_variable_78(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19890); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19891), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19892), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19893), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19848), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19891), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19892), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19893), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19848), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_79(address_space: &mut AddressSpace) { @@ -1285,11 +3012,26 @@ fn add_variable_79(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19891); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19890), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19890), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_80(address_space: &mut AddressSpace) { @@ -1297,12 +3039,35 @@ fn add_variable_80(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 19892); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19890), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19890), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_81(address_space: &mut AddressSpace) { @@ -1310,12 +3075,35 @@ fn add_variable_81(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 19893); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19890), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19890), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_82(address_space: &mut AddressSpace) { @@ -1324,12 +3112,31 @@ fn add_variable_82(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19895); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19896), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19879), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19896), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19879), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_83(address_space: &mut AddressSpace) { @@ -1337,12 +3144,35 @@ fn add_variable_83(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 19896); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19895), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19895), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_84(address_space: &mut AddressSpace) { @@ -1351,12 +3181,31 @@ fn add_variable_84(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19897); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19898), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19879), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19898), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19879), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_85(address_space: &mut AddressSpace) { @@ -1364,12 +3213,35 @@ fn add_variable_85(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 19898); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19897), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19897), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_86(address_space: &mut AddressSpace) { @@ -1378,12 +3250,31 @@ fn add_variable_86(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19899); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19900), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19879), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19900), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19879), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_87(address_space: &mut AddressSpace) { @@ -1391,12 +3282,35 @@ fn add_variable_87(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 19900); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19899), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19899), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_88(address_space: &mut AddressSpace) { @@ -1404,13 +3318,33 @@ fn add_variable_88(address_space: &mut AddressSpace) { let name = "TimeToNextTokenID"; let value = Variant::Empty; let node_id = NodeId::new(0, 19901); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19902), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19879), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19902), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19879), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_89(address_space: &mut AddressSpace) { @@ -1418,12 +3352,35 @@ fn add_variable_89(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 19902); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19901), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19901), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_90(address_space: &mut AddressSpace) { @@ -1432,14 +3389,41 @@ fn add_variable_90(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19949); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19950), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19951), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19952), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19917), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19950), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19951), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19952), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19917), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_91(address_space: &mut AddressSpace) { @@ -1448,11 +3432,26 @@ fn add_variable_91(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19950); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19949), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19949), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_92(address_space: &mut AddressSpace) { @@ -1460,12 +3459,35 @@ fn add_variable_92(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 19951); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19949), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19949), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_93(address_space: &mut AddressSpace) { @@ -1473,12 +3495,35 @@ fn add_variable_93(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 19952); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19949), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19949), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_94(address_space: &mut AddressSpace) { @@ -1487,14 +3532,41 @@ fn add_variable_94(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19954); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19955), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19956), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19957), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19917), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19955), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19956), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19957), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19917), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_95(address_space: &mut AddressSpace) { @@ -1503,11 +3575,26 @@ fn add_variable_95(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19955); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19954), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19954), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_96(address_space: &mut AddressSpace) { @@ -1515,12 +3602,35 @@ fn add_variable_96(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 19956); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19954), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19954), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_97(address_space: &mut AddressSpace) { @@ -1528,12 +3638,35 @@ fn add_variable_97(address_space: &mut AddressSpace) { let name = "DiagnosticsLevel"; let value = Variant::Empty; let node_id = NodeId::new(0, 19957); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19723), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19954), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19723), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19954), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_98(address_space: &mut AddressSpace) { @@ -1542,14 +3675,41 @@ fn add_variable_98(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19959); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19960), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19961), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19962), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 19725), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19917), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19960), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19961), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19962), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19725), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19917), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_99(address_space: &mut AddressSpace) { @@ -1558,11 +3718,26 @@ fn add_variable_99(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 19960); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19959), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19959), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_100(address_space: &mut AddressSpace) { @@ -1570,11 +3745,33 @@ fn add_variable_100(address_space: &mut AddressSpace) { let name = "Classification"; let value = Variant::Empty; let node_id = NodeId::new(0, 19961); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19730), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 19959), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 19730), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19959), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } - diff --git a/server/src/address_space/generated/nodeset_3_1.rs b/server/src/address_space/generated/nodeset_3_1.rs index 506890480..71b0f92ff 100644 --- a/server/src/address_space/generated/nodeset_3_1.rs +++ b/server/src/address_space/generated/nodeset_3_1.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.NodeSet2.Part3.xml by tools/schema/gen_address_space.js // DO NOT EDIT THIS FILE @@ -9,8 +9,11 @@ use std::{convert::TryFrom, str::FromStr}; #[allow(unused_imports)] use crate::{ - address_space::{EventNotifier, types::*}, - prelude::{DataTypeId, ExtensionObject, LocalizedText, NodeId, ReferenceTypeId, service_types::Argument, UAString, Variant, VariantTypeId} + address_space::{types::*, EventNotifier}, + prelude::{ + service_types::Argument, DataTypeId, ExtensionObject, LocalizedText, NodeId, + ReferenceTypeId, UAString, Variant, VariantTypeId, + }, }; #[allow(unused_variables)] @@ -122,9 +125,14 @@ fn add_object_1(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 3062); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 58), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 58), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + )]), + ); } fn add_object_2(address_space: &mut AddressSpace) { @@ -132,9 +140,14 @@ fn add_object_2(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 3063); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 58), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 58), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + )]), + ); } fn add_object_3(address_space: &mut AddressSpace) { @@ -142,10 +155,21 @@ fn add_object_3(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 17863); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17861), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17861), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_4(address_space: &mut AddressSpace) { @@ -153,11 +177,26 @@ fn add_object_4(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 128); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 96), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 16131), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 96), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 16131), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_5(address_space: &mut AddressSpace) { @@ -165,11 +204,26 @@ fn add_object_5(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 121); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 97), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 18178), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 97), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 18178), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_6(address_space: &mut AddressSpace) { @@ -177,11 +231,26 @@ fn add_object_6(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 14844); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 101), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 18181), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 101), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 18181), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_7(address_space: &mut AddressSpace) { @@ -189,11 +258,26 @@ fn add_object_7(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 122); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 99), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 18184), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 99), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 18184), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_8(address_space: &mut AddressSpace) { @@ -201,11 +285,26 @@ fn add_object_8(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 123); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 100), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 18187), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 100), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 18187), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_9(address_space: &mut AddressSpace) { @@ -213,10 +312,21 @@ fn add_object_9(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 260); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 258), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 258), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_10(address_space: &mut AddressSpace) { @@ -224,10 +334,21 @@ fn add_object_10(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 11889); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11879), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11879), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_11(address_space: &mut AddressSpace) { @@ -235,10 +356,21 @@ fn add_object_11(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 11890); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11880), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11880), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_12(address_space: &mut AddressSpace) { @@ -246,10 +378,21 @@ fn add_object_12(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 263); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 261), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 261), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_13(address_space: &mut AddressSpace) { @@ -257,10 +400,21 @@ fn add_object_13(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 266); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 264), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 264), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_14(address_space: &mut AddressSpace) { @@ -268,10 +422,21 @@ fn add_object_14(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 269); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 267), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 267), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_15(address_space: &mut AddressSpace) { @@ -279,10 +444,21 @@ fn add_object_15(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 272); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 270), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 270), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_16(address_space: &mut AddressSpace) { @@ -290,10 +466,21 @@ fn add_object_16(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 275); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 273), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 273), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_17(address_space: &mut AddressSpace) { @@ -301,10 +488,21 @@ fn add_object_17(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 278); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 276), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 276), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_18(address_space: &mut AddressSpace) { @@ -312,10 +510,21 @@ fn add_object_18(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 281); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 279), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 279), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_19(address_space: &mut AddressSpace) { @@ -323,10 +532,21 @@ fn add_object_19(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 284); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 282), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 282), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_20(address_space: &mut AddressSpace) { @@ -334,10 +554,21 @@ fn add_object_20(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 287); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 285), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 285), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_21(address_space: &mut AddressSpace) { @@ -345,11 +576,26 @@ fn add_object_21(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 298); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 296), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 7650), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 296), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 7650), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_22(address_space: &mut AddressSpace) { @@ -357,11 +603,26 @@ fn add_object_22(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 8251); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 7594), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 7656), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 7594), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 7656), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_23(address_space: &mut AddressSpace) { @@ -369,11 +630,26 @@ fn add_object_23(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 14845); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 102), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 14870), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 102), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 14870), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_24(address_space: &mut AddressSpace) { @@ -381,11 +657,26 @@ fn add_object_24(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 12765); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12755), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 12767), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12755), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 12767), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_25(address_space: &mut AddressSpace) { @@ -393,11 +684,26 @@ fn add_object_25(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 12766); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12756), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 12770), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12756), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 12770), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_26(address_space: &mut AddressSpace) { @@ -405,11 +711,26 @@ fn add_object_26(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 8917); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 8912), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8914), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 8912), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8914), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_27(address_space: &mut AddressSpace) { @@ -417,10 +738,21 @@ fn add_object_27(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 17862); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17861), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17861), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_28(address_space: &mut AddressSpace) { @@ -428,11 +760,26 @@ fn add_object_28(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 16126); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 96), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 16127), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 96), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 16127), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_29(address_space: &mut AddressSpace) { @@ -440,11 +787,26 @@ fn add_object_29(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 14797); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 97), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 18166), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 97), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 18166), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_30(address_space: &mut AddressSpace) { @@ -452,11 +814,26 @@ fn add_object_30(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 14800); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 101), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 18169), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 101), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 18169), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_31(address_space: &mut AddressSpace) { @@ -464,11 +841,26 @@ fn add_object_31(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 14798); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 99), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 18172), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 99), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 18172), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_32(address_space: &mut AddressSpace) { @@ -476,11 +868,26 @@ fn add_object_32(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 14799); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 100), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 18175), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 100), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 18175), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_33(address_space: &mut AddressSpace) { @@ -488,10 +895,21 @@ fn add_object_33(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 259); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 258), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 258), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_34(address_space: &mut AddressSpace) { @@ -499,10 +917,21 @@ fn add_object_34(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 11887); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11879), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11879), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_35(address_space: &mut AddressSpace) { @@ -510,10 +939,21 @@ fn add_object_35(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 11888); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11880), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11880), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_36(address_space: &mut AddressSpace) { @@ -521,10 +961,21 @@ fn add_object_36(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 262); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 261), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 261), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_37(address_space: &mut AddressSpace) { @@ -532,10 +983,21 @@ fn add_object_37(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 265); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 264), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 264), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_38(address_space: &mut AddressSpace) { @@ -543,10 +1005,21 @@ fn add_object_38(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 268); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 267), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 267), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_39(address_space: &mut AddressSpace) { @@ -554,10 +1027,21 @@ fn add_object_39(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 271); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 270), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 270), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_40(address_space: &mut AddressSpace) { @@ -565,10 +1049,21 @@ fn add_object_40(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 274); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 273), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 273), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_41(address_space: &mut AddressSpace) { @@ -576,10 +1071,21 @@ fn add_object_41(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 277); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 276), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 276), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_42(address_space: &mut AddressSpace) { @@ -587,10 +1093,21 @@ fn add_object_42(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 280); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 279), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 279), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_43(address_space: &mut AddressSpace) { @@ -598,10 +1115,21 @@ fn add_object_43(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 283); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 282), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 282), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_44(address_space: &mut AddressSpace) { @@ -609,10 +1137,21 @@ fn add_object_44(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 286); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 285), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 285), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_45(address_space: &mut AddressSpace) { @@ -620,11 +1159,26 @@ fn add_object_45(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 297); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 296), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8285), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 296), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8285), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_46(address_space: &mut AddressSpace) { @@ -632,11 +1186,26 @@ fn add_object_46(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 7616); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 7594), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8291), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 7594), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8291), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_47(address_space: &mut AddressSpace) { @@ -644,11 +1213,26 @@ fn add_object_47(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 14801); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 102), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 14826), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 102), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 14826), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_48(address_space: &mut AddressSpace) { @@ -656,11 +1240,26 @@ fn add_object_48(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 12757); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12755), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 12759), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12755), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 12759), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_49(address_space: &mut AddressSpace) { @@ -668,11 +1267,26 @@ fn add_object_49(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 12758); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12756), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 12762), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12756), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 12762), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_50(address_space: &mut AddressSpace) { @@ -680,11 +1294,26 @@ fn add_object_50(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 8913); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 8912), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8918), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 8912), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8918), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_51(address_space: &mut AddressSpace) { @@ -692,10 +1321,21 @@ fn add_object_51(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15045); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17861), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17861), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_52(address_space: &mut AddressSpace) { @@ -703,10 +1343,21 @@ fn add_object_52(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15062); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 96), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 96), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_53(address_space: &mut AddressSpace) { @@ -714,10 +1365,21 @@ fn add_object_53(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15063); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 97), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 97), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_54(address_space: &mut AddressSpace) { @@ -725,10 +1387,21 @@ fn add_object_54(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15065); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 101), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 101), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_55(address_space: &mut AddressSpace) { @@ -736,10 +1409,21 @@ fn add_object_55(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15066); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 99), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 99), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_56(address_space: &mut AddressSpace) { @@ -747,10 +1431,21 @@ fn add_object_56(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15067); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 100), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 100), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_57(address_space: &mut AddressSpace) { @@ -758,10 +1453,21 @@ fn add_object_57(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15068); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 258), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 258), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_58(address_space: &mut AddressSpace) { @@ -769,10 +1475,21 @@ fn add_object_58(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15069); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11879), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11879), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_59(address_space: &mut AddressSpace) { @@ -780,10 +1497,21 @@ fn add_object_59(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15070); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11880), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11880), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_60(address_space: &mut AddressSpace) { @@ -791,10 +1519,21 @@ fn add_object_60(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15071); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 261), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 261), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_61(address_space: &mut AddressSpace) { @@ -802,10 +1541,21 @@ fn add_object_61(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15073); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 264), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 264), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_62(address_space: &mut AddressSpace) { @@ -813,10 +1563,21 @@ fn add_object_62(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15074); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 267), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 267), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_63(address_space: &mut AddressSpace) { @@ -824,10 +1585,21 @@ fn add_object_63(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15075); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 270), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 270), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_64(address_space: &mut AddressSpace) { @@ -835,10 +1607,21 @@ fn add_object_64(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15076); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 273), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 273), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_65(address_space: &mut AddressSpace) { @@ -846,10 +1629,21 @@ fn add_object_65(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15077); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 276), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 276), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_66(address_space: &mut AddressSpace) { @@ -857,10 +1651,21 @@ fn add_object_66(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15078); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 279), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 279), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_67(address_space: &mut AddressSpace) { @@ -868,10 +1673,21 @@ fn add_object_67(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15079); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 282), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 282), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_68(address_space: &mut AddressSpace) { @@ -879,10 +1695,21 @@ fn add_object_68(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15080); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 285), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 285), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_69(address_space: &mut AddressSpace) { @@ -890,10 +1717,21 @@ fn add_object_69(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15081); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 296), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 296), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_70(address_space: &mut AddressSpace) { @@ -901,10 +1739,21 @@ fn add_object_70(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15082); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 7594), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 7594), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_71(address_space: &mut AddressSpace) { @@ -912,10 +1761,21 @@ fn add_object_71(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15083); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 102), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 102), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_72(address_space: &mut AddressSpace) { @@ -923,10 +1783,21 @@ fn add_object_72(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15084); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12755), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12755), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_73(address_space: &mut AddressSpace) { @@ -934,10 +1805,21 @@ fn add_object_73(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15085); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12756), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12756), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_74(address_space: &mut AddressSpace) { @@ -945,10 +1827,21 @@ fn add_object_74(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15086); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 8912), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 8912), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_datatype_75(address_space: &mut AddressSpace) { @@ -964,9 +1857,14 @@ fn add_datatype_76(address_space: &mut AddressSpace) { let name = "Number"; let node_id = NodeId::new(0, 26); let node = DataType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 24), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 24), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_77(address_space: &mut AddressSpace) { @@ -974,9 +1872,14 @@ fn add_datatype_77(address_space: &mut AddressSpace) { let name = "Integer"; let node_id = NodeId::new(0, 27); let node = DataType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 26), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 26), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_78(address_space: &mut AddressSpace) { @@ -984,9 +1887,14 @@ fn add_datatype_78(address_space: &mut AddressSpace) { let name = "UInteger"; let node_id = NodeId::new(0, 28); let node = DataType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 26), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 26), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_79(address_space: &mut AddressSpace) { @@ -994,9 +1902,14 @@ fn add_datatype_79(address_space: &mut AddressSpace) { let name = "Enumeration"; let node_id = NodeId::new(0, 29); let node = DataType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 24), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 24), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_80(address_space: &mut AddressSpace) { @@ -1004,9 +1917,14 @@ fn add_datatype_80(address_space: &mut AddressSpace) { let name = "Boolean"; let node_id = NodeId::new(0, 1); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 24), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 24), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_81(address_space: &mut AddressSpace) { @@ -1014,9 +1932,14 @@ fn add_datatype_81(address_space: &mut AddressSpace) { let name = "SByte"; let node_id = NodeId::new(0, 2); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 27), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 27), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_82(address_space: &mut AddressSpace) { @@ -1024,9 +1947,14 @@ fn add_datatype_82(address_space: &mut AddressSpace) { let name = "Byte"; let node_id = NodeId::new(0, 3); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 28), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 28), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_83(address_space: &mut AddressSpace) { @@ -1034,9 +1962,14 @@ fn add_datatype_83(address_space: &mut AddressSpace) { let name = "Int16"; let node_id = NodeId::new(0, 4); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 27), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 27), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_84(address_space: &mut AddressSpace) { @@ -1044,9 +1977,14 @@ fn add_datatype_84(address_space: &mut AddressSpace) { let name = "UInt16"; let node_id = NodeId::new(0, 5); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 28), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 28), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_85(address_space: &mut AddressSpace) { @@ -1054,9 +1992,14 @@ fn add_datatype_85(address_space: &mut AddressSpace) { let name = "Int32"; let node_id = NodeId::new(0, 6); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 27), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 27), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_86(address_space: &mut AddressSpace) { @@ -1064,9 +2007,14 @@ fn add_datatype_86(address_space: &mut AddressSpace) { let name = "UInt32"; let node_id = NodeId::new(0, 7); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 28), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 28), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_87(address_space: &mut AddressSpace) { @@ -1074,9 +2022,14 @@ fn add_datatype_87(address_space: &mut AddressSpace) { let name = "Int64"; let node_id = NodeId::new(0, 8); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 27), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 27), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_88(address_space: &mut AddressSpace) { @@ -1084,9 +2037,14 @@ fn add_datatype_88(address_space: &mut AddressSpace) { let name = "UInt64"; let node_id = NodeId::new(0, 9); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 28), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 28), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_89(address_space: &mut AddressSpace) { @@ -1094,9 +2052,14 @@ fn add_datatype_89(address_space: &mut AddressSpace) { let name = "Float"; let node_id = NodeId::new(0, 10); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 26), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 26), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_90(address_space: &mut AddressSpace) { @@ -1104,9 +2067,14 @@ fn add_datatype_90(address_space: &mut AddressSpace) { let name = "Double"; let node_id = NodeId::new(0, 11); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 26), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 26), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_91(address_space: &mut AddressSpace) { @@ -1114,9 +2082,14 @@ fn add_datatype_91(address_space: &mut AddressSpace) { let name = "String"; let node_id = NodeId::new(0, 12); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 24), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 24), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_92(address_space: &mut AddressSpace) { @@ -1124,9 +2097,14 @@ fn add_datatype_92(address_space: &mut AddressSpace) { let name = "DateTime"; let node_id = NodeId::new(0, 13); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 24), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 24), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_93(address_space: &mut AddressSpace) { @@ -1134,9 +2112,14 @@ fn add_datatype_93(address_space: &mut AddressSpace) { let name = "Guid"; let node_id = NodeId::new(0, 14); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 24), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 24), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_94(address_space: &mut AddressSpace) { @@ -1144,9 +2127,14 @@ fn add_datatype_94(address_space: &mut AddressSpace) { let name = "ByteString"; let node_id = NodeId::new(0, 15); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 24), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 24), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_95(address_space: &mut AddressSpace) { @@ -1154,9 +2142,14 @@ fn add_datatype_95(address_space: &mut AddressSpace) { let name = "XmlElement"; let node_id = NodeId::new(0, 16); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 24), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 24), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_96(address_space: &mut AddressSpace) { @@ -1164,9 +2157,14 @@ fn add_datatype_96(address_space: &mut AddressSpace) { let name = "NodeId"; let node_id = NodeId::new(0, 17); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 24), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 24), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_97(address_space: &mut AddressSpace) { @@ -1174,9 +2172,14 @@ fn add_datatype_97(address_space: &mut AddressSpace) { let name = "QualifiedName"; let node_id = NodeId::new(0, 20); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 24), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 24), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_98(address_space: &mut AddressSpace) { @@ -1184,9 +2187,14 @@ fn add_datatype_98(address_space: &mut AddressSpace) { let name = "LocalizedText"; let node_id = NodeId::new(0, 21); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 24), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 24), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_99(address_space: &mut AddressSpace) { @@ -1194,9 +2202,14 @@ fn add_datatype_99(address_space: &mut AddressSpace) { let name = "Structure"; let node_id = NodeId::new(0, 22); let node = DataType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 24), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 24), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_100(address_space: &mut AddressSpace) { @@ -1204,8 +2217,12 @@ fn add_datatype_100(address_space: &mut AddressSpace) { let name = "Image"; let node_id = NodeId::new(0, 30); let node = DataType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 15), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } - diff --git a/server/src/address_space/generated/nodeset_3_2.rs b/server/src/address_space/generated/nodeset_3_2.rs index f13078da8..798d0e01c 100644 --- a/server/src/address_space/generated/nodeset_3_2.rs +++ b/server/src/address_space/generated/nodeset_3_2.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.NodeSet2.Part3.xml by tools/schema/gen_address_space.js // DO NOT EDIT THIS FILE @@ -9,8 +9,11 @@ use std::{convert::TryFrom, str::FromStr}; #[allow(unused_imports)] use crate::{ - address_space::{EventNotifier, types::*}, - prelude::{DataTypeId, ExtensionObject, LocalizedText, NodeId, ReferenceTypeId, service_types::Argument, UAString, Variant, VariantTypeId} + address_space::{types::*, EventNotifier}, + prelude::{ + service_types::Argument, DataTypeId, ExtensionObject, LocalizedText, NodeId, + ReferenceTypeId, UAString, Variant, VariantTypeId, + }, }; #[allow(unused_variables)] @@ -116,9 +119,14 @@ fn add_datatype_1(address_space: &mut AddressSpace) { let name = "Decimal"; let node_id = NodeId::new(0, 50); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 26), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 26), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_2(address_space: &mut AddressSpace) { @@ -126,10 +134,21 @@ fn add_datatype_2(address_space: &mut AddressSpace) { let name = "NamingRuleType"; let node_id = NodeId::new(0, 120); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12169), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 29), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12169), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 29), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_datatype_3(address_space: &mut AddressSpace) { @@ -137,9 +156,14 @@ fn add_datatype_3(address_space: &mut AddressSpace) { let name = "ImageBMP"; let node_id = NodeId::new(0, 2000); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 30), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 30), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_4(address_space: &mut AddressSpace) { @@ -147,9 +171,14 @@ fn add_datatype_4(address_space: &mut AddressSpace) { let name = "ImageGIF"; let node_id = NodeId::new(0, 2001); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 30), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 30), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_5(address_space: &mut AddressSpace) { @@ -157,9 +186,14 @@ fn add_datatype_5(address_space: &mut AddressSpace) { let name = "ImageJPG"; let node_id = NodeId::new(0, 2002); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 30), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 30), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_6(address_space: &mut AddressSpace) { @@ -167,9 +201,14 @@ fn add_datatype_6(address_space: &mut AddressSpace) { let name = "ImagePNG"; let node_id = NodeId::new(0, 2003); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 30), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 30), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_7(address_space: &mut AddressSpace) { @@ -177,9 +216,14 @@ fn add_datatype_7(address_space: &mut AddressSpace) { let name = "AudioDataType"; let node_id = NodeId::new(0, 16307); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 15), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_8(address_space: &mut AddressSpace) { @@ -187,9 +231,14 @@ fn add_datatype_8(address_space: &mut AddressSpace) { let name = "DecimalDataType"; let node_id = NodeId::new(0, 17861); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_9(address_space: &mut AddressSpace) { @@ -197,10 +246,21 @@ fn add_datatype_9(address_space: &mut AddressSpace) { let name = "IdType"; let node_id = NodeId::new(0, 256); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 7591), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 29), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 7591), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 29), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_datatype_10(address_space: &mut AddressSpace) { @@ -208,10 +268,21 @@ fn add_datatype_10(address_space: &mut AddressSpace) { let name = "NodeClass"; let node_id = NodeId::new(0, 257); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11878), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 29), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11878), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 29), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_datatype_11(address_space: &mut AddressSpace) { @@ -219,10 +290,21 @@ fn add_datatype_11(address_space: &mut AddressSpace) { let name = "PermissionType"; let node_id = NodeId::new(0, 94); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15030), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 7), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15030), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_datatype_12(address_space: &mut AddressSpace) { @@ -230,10 +312,21 @@ fn add_datatype_12(address_space: &mut AddressSpace) { let name = "AccessLevelType"; let node_id = NodeId::new(0, 15031); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15032), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 3), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15032), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_datatype_13(address_space: &mut AddressSpace) { @@ -241,10 +334,21 @@ fn add_datatype_13(address_space: &mut AddressSpace) { let name = "AccessLevelExType"; let node_id = NodeId::new(0, 15406); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15407), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 7), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15407), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_datatype_14(address_space: &mut AddressSpace) { @@ -252,10 +356,21 @@ fn add_datatype_14(address_space: &mut AddressSpace) { let name = "EventNotifierType"; let node_id = NodeId::new(0, 15033); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15034), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 3), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15034), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_datatype_15(address_space: &mut AddressSpace) { @@ -263,10 +378,21 @@ fn add_datatype_15(address_space: &mut AddressSpace) { let name = "AccessRestrictionType"; let node_id = NodeId::new(0, 95); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15035), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 5), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15035), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 5), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_datatype_16(address_space: &mut AddressSpace) { @@ -274,9 +400,14 @@ fn add_datatype_16(address_space: &mut AddressSpace) { let name = "RolePermissionType"; let node_id = NodeId::new(0, 96); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_17(address_space: &mut AddressSpace) { @@ -284,9 +415,14 @@ fn add_datatype_17(address_space: &mut AddressSpace) { let name = "DataTypeDefinition"; let node_id = NodeId::new(0, 97); let node = DataType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_18(address_space: &mut AddressSpace) { @@ -294,10 +430,21 @@ fn add_datatype_18(address_space: &mut AddressSpace) { let name = "StructureType"; let node_id = NodeId::new(0, 98); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 14528), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 29), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 14528), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 29), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_datatype_19(address_space: &mut AddressSpace) { @@ -305,9 +452,14 @@ fn add_datatype_19(address_space: &mut AddressSpace) { let name = "StructureField"; let node_id = NodeId::new(0, 101); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_20(address_space: &mut AddressSpace) { @@ -315,9 +467,14 @@ fn add_datatype_20(address_space: &mut AddressSpace) { let name = "StructureDefinition"; let node_id = NodeId::new(0, 99); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 97), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 97), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_21(address_space: &mut AddressSpace) { @@ -325,9 +482,14 @@ fn add_datatype_21(address_space: &mut AddressSpace) { let name = "EnumDefinition"; let node_id = NodeId::new(0, 100); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 97), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 97), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_22(address_space: &mut AddressSpace) { @@ -335,9 +497,14 @@ fn add_datatype_22(address_space: &mut AddressSpace) { let name = "Node"; let node_id = NodeId::new(0, 258); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_23(address_space: &mut AddressSpace) { @@ -345,9 +512,14 @@ fn add_datatype_23(address_space: &mut AddressSpace) { let name = "InstanceNode"; let node_id = NodeId::new(0, 11879); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 258), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 258), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_24(address_space: &mut AddressSpace) { @@ -355,9 +527,14 @@ fn add_datatype_24(address_space: &mut AddressSpace) { let name = "TypeNode"; let node_id = NodeId::new(0, 11880); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 258), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 258), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_25(address_space: &mut AddressSpace) { @@ -365,9 +542,14 @@ fn add_datatype_25(address_space: &mut AddressSpace) { let name = "ObjectNode"; let node_id = NodeId::new(0, 261); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11879), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 11879), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_26(address_space: &mut AddressSpace) { @@ -375,9 +557,14 @@ fn add_datatype_26(address_space: &mut AddressSpace) { let name = "ObjectTypeNode"; let node_id = NodeId::new(0, 264); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11880), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 11880), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_27(address_space: &mut AddressSpace) { @@ -385,9 +572,14 @@ fn add_datatype_27(address_space: &mut AddressSpace) { let name = "VariableNode"; let node_id = NodeId::new(0, 267); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11879), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 11879), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_28(address_space: &mut AddressSpace) { @@ -395,9 +587,14 @@ fn add_datatype_28(address_space: &mut AddressSpace) { let name = "VariableTypeNode"; let node_id = NodeId::new(0, 270); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11880), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 11880), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_29(address_space: &mut AddressSpace) { @@ -405,9 +602,14 @@ fn add_datatype_29(address_space: &mut AddressSpace) { let name = "ReferenceTypeNode"; let node_id = NodeId::new(0, 273); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11880), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 11880), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_30(address_space: &mut AddressSpace) { @@ -415,9 +617,14 @@ fn add_datatype_30(address_space: &mut AddressSpace) { let name = "MethodNode"; let node_id = NodeId::new(0, 276); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11879), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 11879), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_31(address_space: &mut AddressSpace) { @@ -425,9 +632,14 @@ fn add_datatype_31(address_space: &mut AddressSpace) { let name = "ViewNode"; let node_id = NodeId::new(0, 279); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11879), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 11879), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_32(address_space: &mut AddressSpace) { @@ -435,9 +647,14 @@ fn add_datatype_32(address_space: &mut AddressSpace) { let name = "DataTypeNode"; let node_id = NodeId::new(0, 282); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11880), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 11880), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_33(address_space: &mut AddressSpace) { @@ -445,9 +662,14 @@ fn add_datatype_33(address_space: &mut AddressSpace) { let name = "ReferenceNode"; let node_id = NodeId::new(0, 285); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_34(address_space: &mut AddressSpace) { @@ -455,9 +677,14 @@ fn add_datatype_34(address_space: &mut AddressSpace) { let name = "Argument"; let node_id = NodeId::new(0, 296); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_35(address_space: &mut AddressSpace) { @@ -465,9 +692,14 @@ fn add_datatype_35(address_space: &mut AddressSpace) { let name = "EnumValueType"; let node_id = NodeId::new(0, 7594); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_36(address_space: &mut AddressSpace) { @@ -475,9 +707,14 @@ fn add_datatype_36(address_space: &mut AddressSpace) { let name = "EnumField"; let node_id = NodeId::new(0, 102); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 7594), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 7594), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_37(address_space: &mut AddressSpace) { @@ -485,9 +722,14 @@ fn add_datatype_37(address_space: &mut AddressSpace) { let name = "OptionSet"; let node_id = NodeId::new(0, 12755); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_38(address_space: &mut AddressSpace) { @@ -495,9 +737,14 @@ fn add_datatype_38(address_space: &mut AddressSpace) { let name = "Union"; let node_id = NodeId::new(0, 12756); let node = DataType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_39(address_space: &mut AddressSpace) { @@ -505,9 +752,14 @@ fn add_datatype_39(address_space: &mut AddressSpace) { let name = "NormalizedString"; let node_id = NodeId::new(0, 12877); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 12), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_40(address_space: &mut AddressSpace) { @@ -515,9 +767,14 @@ fn add_datatype_40(address_space: &mut AddressSpace) { let name = "DecimalString"; let node_id = NodeId::new(0, 12878); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 12), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_41(address_space: &mut AddressSpace) { @@ -525,9 +782,14 @@ fn add_datatype_41(address_space: &mut AddressSpace) { let name = "DurationString"; let node_id = NodeId::new(0, 12879); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 12), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_42(address_space: &mut AddressSpace) { @@ -535,9 +797,14 @@ fn add_datatype_42(address_space: &mut AddressSpace) { let name = "TimeString"; let node_id = NodeId::new(0, 12880); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 12), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_43(address_space: &mut AddressSpace) { @@ -545,9 +812,14 @@ fn add_datatype_43(address_space: &mut AddressSpace) { let name = "DateString"; let node_id = NodeId::new(0, 12881); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 12), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_44(address_space: &mut AddressSpace) { @@ -555,9 +827,14 @@ fn add_datatype_44(address_space: &mut AddressSpace) { let name = "Duration"; let node_id = NodeId::new(0, 290); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 11), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_45(address_space: &mut AddressSpace) { @@ -565,9 +842,14 @@ fn add_datatype_45(address_space: &mut AddressSpace) { let name = "UtcTime"; let node_id = NodeId::new(0, 294); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 13), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_46(address_space: &mut AddressSpace) { @@ -575,9 +857,14 @@ fn add_datatype_46(address_space: &mut AddressSpace) { let name = "LocaleId"; let node_id = NodeId::new(0, 295); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 12), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_47(address_space: &mut AddressSpace) { @@ -585,9 +872,14 @@ fn add_datatype_47(address_space: &mut AddressSpace) { let name = "TimeZoneDataType"; let node_id = NodeId::new(0, 8912); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_referencetype_48(address_space: &mut AddressSpace) { @@ -603,189 +895,410 @@ fn add_referencetype_49(address_space: &mut AddressSpace) { let name = "NonHierarchicalReferences"; let node_id = NodeId::new(0, 32); let node = ReferenceType::new(&node_id, name, name, None, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 31), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 31), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_referencetype_50(address_space: &mut AddressSpace) { // ReferenceType let name = "HierarchicalReferences"; let node_id = NodeId::new(0, 33); - let node = ReferenceType::new(&node_id, name, name, Some(LocalizedText::new("", "HierarchicalReferences")), false, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 31), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let node = ReferenceType::new( + &node_id, + name, + name, + Some(LocalizedText::new("", "HierarchicalReferences")), + false, + true, + ); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 31), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_referencetype_51(address_space: &mut AddressSpace) { // ReferenceType let name = "HasChild"; let node_id = NodeId::new(0, 34); - let node = ReferenceType::new(&node_id, name, name, Some(LocalizedText::new("", "ChildOf")), false, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 33), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let node = ReferenceType::new( + &node_id, + name, + name, + Some(LocalizedText::new("", "ChildOf")), + false, + true, + ); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 33), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_referencetype_52(address_space: &mut AddressSpace) { // ReferenceType let name = "Organizes"; let node_id = NodeId::new(0, 35); - let node = ReferenceType::new(&node_id, name, name, Some(LocalizedText::new("", "OrganizedBy")), false, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 33), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let node = ReferenceType::new( + &node_id, + name, + name, + Some(LocalizedText::new("", "OrganizedBy")), + false, + false, + ); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 33), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_referencetype_53(address_space: &mut AddressSpace) { // ReferenceType let name = "HasEventSource"; let node_id = NodeId::new(0, 36); - let node = ReferenceType::new(&node_id, name, name, Some(LocalizedText::new("", "EventSourceOf")), false, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 33), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let node = ReferenceType::new( + &node_id, + name, + name, + Some(LocalizedText::new("", "EventSourceOf")), + false, + false, + ); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 33), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_referencetype_54(address_space: &mut AddressSpace) { // ReferenceType let name = "HasModellingRule"; let node_id = NodeId::new(0, 37); - let node = ReferenceType::new(&node_id, name, name, Some(LocalizedText::new("", "ModellingRuleOf")), false, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 32), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let node = ReferenceType::new( + &node_id, + name, + name, + Some(LocalizedText::new("", "ModellingRuleOf")), + false, + false, + ); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 32), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_referencetype_55(address_space: &mut AddressSpace) { // ReferenceType let name = "HasEncoding"; let node_id = NodeId::new(0, 38); - let node = ReferenceType::new(&node_id, name, name, Some(LocalizedText::new("", "EncodingOf")), false, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 32), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let node = ReferenceType::new( + &node_id, + name, + name, + Some(LocalizedText::new("", "EncodingOf")), + false, + false, + ); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 32), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_referencetype_56(address_space: &mut AddressSpace) { // ReferenceType let name = "HasDescription"; let node_id = NodeId::new(0, 39); - let node = ReferenceType::new(&node_id, name, name, Some(LocalizedText::new("", "DescriptionOf")), false, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 32), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let node = ReferenceType::new( + &node_id, + name, + name, + Some(LocalizedText::new("", "DescriptionOf")), + false, + false, + ); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 32), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_referencetype_57(address_space: &mut AddressSpace) { // ReferenceType let name = "HasTypeDefinition"; let node_id = NodeId::new(0, 40); - let node = ReferenceType::new(&node_id, name, name, Some(LocalizedText::new("", "TypeDefinitionOf")), false, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 32), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let node = ReferenceType::new( + &node_id, + name, + name, + Some(LocalizedText::new("", "TypeDefinitionOf")), + false, + false, + ); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 32), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_referencetype_58(address_space: &mut AddressSpace) { // ReferenceType let name = "GeneratesEvent"; let node_id = NodeId::new(0, 41); - let node = ReferenceType::new(&node_id, name, name, Some(LocalizedText::new("", "GeneratedBy")), false, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 32), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let node = ReferenceType::new( + &node_id, + name, + name, + Some(LocalizedText::new("", "GeneratedBy")), + false, + false, + ); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 32), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_referencetype_59(address_space: &mut AddressSpace) { // ReferenceType let name = "AlwaysGeneratesEvent"; let node_id = NodeId::new(0, 3065); - let node = ReferenceType::new(&node_id, name, name, Some(LocalizedText::new("", "AlwaysGeneratedBy")), false, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 41), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let node = ReferenceType::new( + &node_id, + name, + name, + Some(LocalizedText::new("", "AlwaysGeneratedBy")), + false, + false, + ); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 41), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_referencetype_60(address_space: &mut AddressSpace) { // ReferenceType let name = "Aggregates"; let node_id = NodeId::new(0, 44); - let node = ReferenceType::new(&node_id, name, name, Some(LocalizedText::new("", "AggregatedBy")), false, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 34), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let node = ReferenceType::new( + &node_id, + name, + name, + Some(LocalizedText::new("", "AggregatedBy")), + false, + true, + ); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 34), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_referencetype_61(address_space: &mut AddressSpace) { // ReferenceType let name = "HasSubtype"; let node_id = NodeId::new(0, 45); - let node = ReferenceType::new(&node_id, name, name, Some(LocalizedText::new("", "SubtypeOf")), false, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 34), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let node = ReferenceType::new( + &node_id, + name, + name, + Some(LocalizedText::new("", "SubtypeOf")), + false, + false, + ); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 34), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_referencetype_62(address_space: &mut AddressSpace) { // ReferenceType let name = "HasProperty"; let node_id = NodeId::new(0, 46); - let node = ReferenceType::new(&node_id, name, name, Some(LocalizedText::new("", "PropertyOf")), false, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 44), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let node = ReferenceType::new( + &node_id, + name, + name, + Some(LocalizedText::new("", "PropertyOf")), + false, + false, + ); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 44), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_referencetype_63(address_space: &mut AddressSpace) { // ReferenceType let name = "HasComponent"; let node_id = NodeId::new(0, 47); - let node = ReferenceType::new(&node_id, name, name, Some(LocalizedText::new("", "ComponentOf")), false, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 44), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let node = ReferenceType::new( + &node_id, + name, + name, + Some(LocalizedText::new("", "ComponentOf")), + false, + false, + ); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 44), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_referencetype_64(address_space: &mut AddressSpace) { // ReferenceType let name = "HasNotifier"; let node_id = NodeId::new(0, 48); - let node = ReferenceType::new(&node_id, name, name, Some(LocalizedText::new("", "NotifierOf")), false, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 36), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let node = ReferenceType::new( + &node_id, + name, + name, + Some(LocalizedText::new("", "NotifierOf")), + false, + false, + ); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 36), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_referencetype_65(address_space: &mut AddressSpace) { // ReferenceType let name = "HasOrderedComponent"; let node_id = NodeId::new(0, 49); - let node = ReferenceType::new(&node_id, name, name, Some(LocalizedText::new("", "OrderedComponentOf")), false, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 47), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let node = ReferenceType::new( + &node_id, + name, + name, + Some(LocalizedText::new("", "OrderedComponentOf")), + false, + false, + ); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 47), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_referencetype_66(address_space: &mut AddressSpace) { // ReferenceType let name = "HasArgumentDescription"; let node_id = NodeId::new(0, 129); - let node = ReferenceType::new(&node_id, name, name, Some(LocalizedText::new("", "ArgumentDescriptionOf")), false, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 47), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let node = ReferenceType::new( + &node_id, + name, + name, + Some(LocalizedText::new("", "ArgumentDescriptionOf")), + false, + false, + ); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 47), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_referencetype_67(address_space: &mut AddressSpace) { // ReferenceType let name = "HasOptionalInputArgumentDescription"; let node_id = NodeId::new(0, 131); - let node = ReferenceType::new(&node_id, name, name, Some(LocalizedText::new("", "OptionalInputArgumentDescriptionOf")), false, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 129), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let node = ReferenceType::new( + &node_id, + name, + name, + Some(LocalizedText::new("", "OptionalInputArgumentDescriptionOf")), + false, + false, + ); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 129), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_variable_68(address_space: &mut AddressSpace) { @@ -793,12 +1306,35 @@ fn add_variable_68(address_space: &mut AddressSpace) { let name = "EnumValues"; let value = Variant::Empty; let node_id = NodeId::new(0, 12169); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7594), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 120), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 7594), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 120), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_69(address_space: &mut AddressSpace) { @@ -806,10 +1342,16 @@ fn add_variable_69(address_space: &mut AddressSpace) { let name = "NodeVersion"; let value = Variant::Empty; let node_id = NodeId::new(0, 3068); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + )]), + ); } fn add_variable_70(address_space: &mut AddressSpace) { @@ -818,9 +1360,14 @@ fn add_variable_70(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 12170); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + )]), + ); } fn add_variable_71(address_space: &mut AddressSpace) { @@ -828,10 +1375,16 @@ fn add_variable_71(address_space: &mut AddressSpace) { let name = "Icon"; let value = Variant::Empty; let node_id = NodeId::new(0, 3067); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 30), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 30), None, None, value); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + )]), + ); } fn add_variable_72(address_space: &mut AddressSpace) { @@ -839,10 +1392,23 @@ fn add_variable_72(address_space: &mut AddressSpace) { let name = "LocalTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 3069); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 8912), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 8912), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + )]), + ); } fn add_variable_73(address_space: &mut AddressSpace) { @@ -851,9 +1417,14 @@ fn add_variable_73(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 3070); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + )]), + ); } fn add_variable_74(address_space: &mut AddressSpace) { @@ -861,10 +1432,16 @@ fn add_variable_74(address_space: &mut AddressSpace) { let name = "ValueAsText"; let value = Variant::Empty; let node_id = NodeId::new(0, 11433); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + )]), + ); } fn add_variable_75(address_space: &mut AddressSpace) { @@ -873,9 +1450,14 @@ fn add_variable_75(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11498); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + )]), + ); } fn add_variable_76(address_space: &mut AddressSpace) { @@ -884,9 +1466,14 @@ fn add_variable_76(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 15002); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + )]), + ); } fn add_variable_77(address_space: &mut AddressSpace) { @@ -895,9 +1482,14 @@ fn add_variable_77(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 12908); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + )]), + ); } fn add_variable_78(address_space: &mut AddressSpace) { @@ -906,9 +1498,14 @@ fn add_variable_78(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11512); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + )]), + ); } fn add_variable_79(address_space: &mut AddressSpace) { @@ -916,10 +1513,16 @@ fn add_variable_79(address_space: &mut AddressSpace) { let name = "EngineeringUnits"; let value = Variant::Empty; let node_id = NodeId::new(0, 11513); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 887), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 887), None, None, value); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + )]), + ); } fn add_variable_80(address_space: &mut AddressSpace) { @@ -927,10 +1530,23 @@ fn add_variable_80(address_space: &mut AddressSpace) { let name = "EnumStrings"; let value = Variant::Empty; let node_id = NodeId::new(0, 11432); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 21), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + )]), + ); } fn add_variable_81(address_space: &mut AddressSpace) { @@ -938,10 +1554,23 @@ fn add_variable_81(address_space: &mut AddressSpace) { let name = "EnumValues"; let value = Variant::Empty; let node_id = NodeId::new(0, 3071); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7594), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 7594), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + )]), + ); } fn add_variable_82(address_space: &mut AddressSpace) { @@ -949,10 +1578,23 @@ fn add_variable_82(address_space: &mut AddressSpace) { let name = "OptionSetValues"; let value = Variant::Empty; let node_id = NodeId::new(0, 12745); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 21), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + )]), + ); } fn add_variable_83(address_space: &mut AddressSpace) { @@ -960,10 +1602,23 @@ fn add_variable_83(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = Variant::Empty; let node_id = NodeId::new(0, 3072); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + )]), + ); } fn add_variable_84(address_space: &mut AddressSpace) { @@ -971,10 +1626,23 @@ fn add_variable_84(address_space: &mut AddressSpace) { let name = "OutputArguments"; let value = Variant::Empty; let node_id = NodeId::new(0, 3073); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + )]), + ); } fn add_variable_85(address_space: &mut AddressSpace) { @@ -982,10 +1650,16 @@ fn add_variable_85(address_space: &mut AddressSpace) { let name = "DefaultInstanceBrowseName"; let value = Variant::Empty; let node_id = NodeId::new(0, 17605); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 20), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 20), None, None, value); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + )]), + ); } fn add_variable_86(address_space: &mut AddressSpace) { @@ -993,10 +1667,23 @@ fn add_variable_86(address_space: &mut AddressSpace) { let name = "CurrencyUnit"; let value = Variant::Empty; let node_id = NodeId::new(0, 23501); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 23498), Some(-2), None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 23498), + Some(-2), + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + )]), + ); } fn add_variable_87(address_space: &mut AddressSpace) { @@ -1004,12 +1691,35 @@ fn add_variable_87(address_space: &mut AddressSpace) { let name = "EnumStrings"; let value = Variant::Empty; let node_id = NodeId::new(0, 7591); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 256), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 21), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 256), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_88(address_space: &mut AddressSpace) { @@ -1017,12 +1727,35 @@ fn add_variable_88(address_space: &mut AddressSpace) { let name = "EnumValues"; let value = Variant::Empty; let node_id = NodeId::new(0, 11878); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7594), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 257), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 7594), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 257), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_89(address_space: &mut AddressSpace) { @@ -1030,12 +1763,35 @@ fn add_variable_89(address_space: &mut AddressSpace) { let name = "OptionSetValues"; let value = Variant::Empty; let node_id = NodeId::new(0, 15030); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 94), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 21), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 94), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_90(address_space: &mut AddressSpace) { @@ -1043,12 +1799,35 @@ fn add_variable_90(address_space: &mut AddressSpace) { let name = "OptionSetValues"; let value = Variant::Empty; let node_id = NodeId::new(0, 15032); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15031), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 21), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15031), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_91(address_space: &mut AddressSpace) { @@ -1056,12 +1835,35 @@ fn add_variable_91(address_space: &mut AddressSpace) { let name = "OptionSetValues"; let value = Variant::Empty; let node_id = NodeId::new(0, 15407); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15406), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 21), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15406), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_92(address_space: &mut AddressSpace) { @@ -1069,12 +1871,35 @@ fn add_variable_92(address_space: &mut AddressSpace) { let name = "OptionSetValues"; let value = Variant::Empty; let node_id = NodeId::new(0, 15034); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15033), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 21), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15033), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_93(address_space: &mut AddressSpace) { @@ -1082,12 +1907,35 @@ fn add_variable_93(address_space: &mut AddressSpace) { let name = "OptionSetValues"; let value = Variant::Empty; let node_id = NodeId::new(0, 15035); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 95), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 21), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 95), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_94(address_space: &mut AddressSpace) { @@ -1095,11 +1943,33 @@ fn add_variable_94(address_space: &mut AddressSpace) { let name = "EnumStrings"; let value = Variant::Empty; let node_id = NodeId::new(0, 14528); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 98), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 21), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 98), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } - diff --git a/server/src/address_space/generated/nodeset_4_1.rs b/server/src/address_space/generated/nodeset_4_1.rs index 11a2188d0..8aba0aea8 100644 --- a/server/src/address_space/generated/nodeset_4_1.rs +++ b/server/src/address_space/generated/nodeset_4_1.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.NodeSet2.Part4.xml by tools/schema/gen_address_space.js // DO NOT EDIT THIS FILE @@ -9,8 +9,11 @@ use std::{convert::TryFrom, str::FromStr}; #[allow(unused_imports)] use crate::{ - address_space::{EventNotifier, types::*}, - prelude::{DataTypeId, ExtensionObject, LocalizedText, NodeId, ReferenceTypeId, service_types::Argument, UAString, Variant, VariantTypeId} + address_space::{types::*, EventNotifier}, + prelude::{ + service_types::Argument, DataTypeId, ExtensionObject, LocalizedText, NodeId, + ReferenceTypeId, UAString, Variant, VariantTypeId, + }, }; #[allow(unused_variables)] @@ -122,11 +125,26 @@ fn add_object_1(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 310); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 308), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 7665), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 308), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 7665), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_2(address_space: &mut AddressSpace) { @@ -134,10 +152,21 @@ fn add_object_2(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 391); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 389), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 389), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_3(address_space: &mut AddressSpace) { @@ -145,10 +174,21 @@ fn add_object_3(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 394); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 392), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 392), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_4(address_space: &mut AddressSpace) { @@ -156,10 +196,21 @@ fn add_object_4(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 397); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 395), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 395), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_5(address_space: &mut AddressSpace) { @@ -167,10 +218,21 @@ fn add_object_5(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 15903); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15901), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15901), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_6(address_space: &mut AddressSpace) { @@ -178,10 +240,21 @@ fn add_object_6(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 21001); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 20999), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 20999), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_7(address_space: &mut AddressSpace) { @@ -189,10 +262,21 @@ fn add_object_7(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 422); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 420), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 420), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_8(address_space: &mut AddressSpace) { @@ -200,10 +284,21 @@ fn add_object_8(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 425); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 423), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 423), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_9(address_space: &mut AddressSpace) { @@ -211,11 +306,26 @@ fn add_object_9(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 12207); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12189), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 12213), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12189), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 12213), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_10(address_space: &mut AddressSpace) { @@ -223,10 +333,21 @@ fn add_object_10(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 12208); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12190), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12190), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_11(address_space: &mut AddressSpace) { @@ -234,10 +355,21 @@ fn add_object_11(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 12209); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12191), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12191), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_12(address_space: &mut AddressSpace) { @@ -245,11 +377,26 @@ fn add_object_12(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 306); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 304), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 7662), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 304), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 7662), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_13(address_space: &mut AddressSpace) { @@ -257,11 +404,26 @@ fn add_object_13(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 314); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 312), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 7668), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 312), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 7668), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_14(address_space: &mut AddressSpace) { @@ -269,10 +431,21 @@ fn add_object_14(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 428); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 426), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 426), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_15(address_space: &mut AddressSpace) { @@ -280,10 +453,21 @@ fn add_object_15(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 431); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 429), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 429), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_16(address_space: &mut AddressSpace) { @@ -291,11 +475,26 @@ fn add_object_16(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 434); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 432), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 7782), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 432), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 7782), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_17(address_space: &mut AddressSpace) { @@ -303,10 +502,21 @@ fn add_object_17(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 437); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 435), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 435), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_18(address_space: &mut AddressSpace) { @@ -314,10 +524,21 @@ fn add_object_18(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 440); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 438), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 438), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_19(address_space: &mut AddressSpace) { @@ -325,11 +546,26 @@ fn add_object_19(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 12900); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12890), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 12902), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12890), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 12902), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_20(address_space: &mut AddressSpace) { @@ -337,11 +573,26 @@ fn add_object_20(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 12901); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12891), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 12905), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12891), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 12905), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_21(address_space: &mut AddressSpace) { @@ -349,10 +600,21 @@ fn add_object_21(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 12211); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12193), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12193), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_22(address_space: &mut AddressSpace) { @@ -360,10 +622,21 @@ fn add_object_22(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 12212); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12194), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12194), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_23(address_space: &mut AddressSpace) { @@ -371,10 +644,21 @@ fn add_object_23(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 443); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 441), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 441), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_24(address_space: &mut AddressSpace) { @@ -382,10 +666,21 @@ fn add_object_24(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 446); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 444), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 444), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_25(address_space: &mut AddressSpace) { @@ -393,10 +688,21 @@ fn add_object_25(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 449); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 447), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 447), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_26(address_space: &mut AddressSpace) { @@ -404,10 +710,21 @@ fn add_object_26(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 452); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 450), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 450), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_27(address_space: &mut AddressSpace) { @@ -415,10 +732,21 @@ fn add_object_27(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 455); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 453), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 453), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_28(address_space: &mut AddressSpace) { @@ -426,11 +754,26 @@ fn add_object_28(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 346); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 344), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 7698), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 344), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 7698), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_29(address_space: &mut AddressSpace) { @@ -438,10 +781,21 @@ fn add_object_29(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 458); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 456), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 456), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_30(address_space: &mut AddressSpace) { @@ -449,10 +803,21 @@ fn add_object_30(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 461); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 459), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 459), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_31(address_space: &mut AddressSpace) { @@ -460,10 +825,21 @@ fn add_object_31(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 464); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 462), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 462), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_32(address_space: &mut AddressSpace) { @@ -471,11 +847,26 @@ fn add_object_32(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 318); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 316), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 7671), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 316), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 7671), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_33(address_space: &mut AddressSpace) { @@ -483,11 +874,26 @@ fn add_object_33(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 321); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 319), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 7674), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 319), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 7674), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_34(address_space: &mut AddressSpace) { @@ -495,11 +901,26 @@ fn add_object_34(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 324); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 322), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 7677), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 322), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 7677), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_35(address_space: &mut AddressSpace) { @@ -507,11 +928,26 @@ fn add_object_35(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 327); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 325), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 7680), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 325), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 7680), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_36(address_space: &mut AddressSpace) { @@ -519,11 +955,26 @@ fn add_object_36(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 940); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 938), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 7683), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 938), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 7683), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_37(address_space: &mut AddressSpace) { @@ -531,10 +982,21 @@ fn add_object_37(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 467); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 465), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 465), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_38(address_space: &mut AddressSpace) { @@ -542,10 +1004,21 @@ fn add_object_38(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 470); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 468), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 468), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_39(address_space: &mut AddressSpace) { @@ -553,10 +1026,21 @@ fn add_object_39(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 473); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 471), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 471), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_40(address_space: &mut AddressSpace) { @@ -564,10 +1048,21 @@ fn add_object_40(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 476); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 474), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 474), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_41(address_space: &mut AddressSpace) { @@ -575,10 +1070,21 @@ fn add_object_41(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 479); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 477), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 477), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_42(address_space: &mut AddressSpace) { @@ -586,10 +1092,21 @@ fn add_object_42(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 482); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 480), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 480), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_43(address_space: &mut AddressSpace) { @@ -597,10 +1114,21 @@ fn add_object_43(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 351); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 349), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 349), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_44(address_space: &mut AddressSpace) { @@ -608,10 +1136,21 @@ fn add_object_44(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 354); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 352), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 352), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_45(address_space: &mut AddressSpace) { @@ -619,10 +1158,21 @@ fn add_object_45(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 357); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 355), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 355), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_46(address_space: &mut AddressSpace) { @@ -630,10 +1180,21 @@ fn add_object_46(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 360); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 358), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 358), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_47(address_space: &mut AddressSpace) { @@ -641,10 +1202,21 @@ fn add_object_47(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 363); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 361), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 361), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_48(address_space: &mut AddressSpace) { @@ -652,10 +1224,21 @@ fn add_object_48(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 366); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 364), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 364), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_49(address_space: &mut AddressSpace) { @@ -663,10 +1246,21 @@ fn add_object_49(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 369); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 367), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 367), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_50(address_space: &mut AddressSpace) { @@ -674,10 +1268,21 @@ fn add_object_50(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 372); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 370), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 370), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_51(address_space: &mut AddressSpace) { @@ -685,10 +1290,21 @@ fn add_object_51(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 375); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 373), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 373), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_52(address_space: &mut AddressSpace) { @@ -696,10 +1312,21 @@ fn add_object_52(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 17610); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17606), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17606), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_53(address_space: &mut AddressSpace) { @@ -707,10 +1334,21 @@ fn add_object_53(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 17611); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17607), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17607), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_54(address_space: &mut AddressSpace) { @@ -718,11 +1356,26 @@ fn add_object_54(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 378); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 376), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 7728), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 376), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 7728), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_55(address_space: &mut AddressSpace) { @@ -730,10 +1383,21 @@ fn add_object_55(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 485); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 483), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 483), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_56(address_space: &mut AddressSpace) { @@ -741,10 +1405,21 @@ fn add_object_56(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 488); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 486), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 486), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_57(address_space: &mut AddressSpace) { @@ -752,10 +1427,21 @@ fn add_object_57(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 491); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 489), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 489), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_58(address_space: &mut AddressSpace) { @@ -763,11 +1449,26 @@ fn add_object_58(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 381); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 379), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 7731), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 379), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 7731), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_59(address_space: &mut AddressSpace) { @@ -775,10 +1476,21 @@ fn add_object_59(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 494); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 492), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 492), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_60(address_space: &mut AddressSpace) { @@ -786,10 +1498,21 @@ fn add_object_60(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 497); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 495), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 495), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_61(address_space: &mut AddressSpace) { @@ -797,11 +1520,26 @@ fn add_object_61(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 384); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 382), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 7734), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 382), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 7734), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_62(address_space: &mut AddressSpace) { @@ -809,10 +1547,21 @@ fn add_object_62(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 500); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 498), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 498), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_63(address_space: &mut AddressSpace) { @@ -820,10 +1569,21 @@ fn add_object_63(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 503); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 501), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 501), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_64(address_space: &mut AddressSpace) { @@ -831,11 +1591,26 @@ fn add_object_64(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 387); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 385), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 7737), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 385), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 7737), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_65(address_space: &mut AddressSpace) { @@ -843,10 +1618,21 @@ fn add_object_65(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 506); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 504), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 504), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_66(address_space: &mut AddressSpace) { @@ -854,10 +1640,21 @@ fn add_object_66(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 509); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 507), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 507), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_67(address_space: &mut AddressSpace) { @@ -865,10 +1662,21 @@ fn add_object_67(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 513); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 511), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 511), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_68(address_space: &mut AddressSpace) { @@ -876,10 +1684,21 @@ fn add_object_68(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 516); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 514), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 514), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_69(address_space: &mut AddressSpace) { @@ -887,10 +1706,21 @@ fn add_object_69(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 520); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 518), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 518), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_70(address_space: &mut AddressSpace) { @@ -898,10 +1728,21 @@ fn add_object_70(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 524); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 522), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 522), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_71(address_space: &mut AddressSpace) { @@ -909,10 +1750,21 @@ fn add_object_71(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 527); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 525), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 525), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_72(address_space: &mut AddressSpace) { @@ -920,10 +1772,21 @@ fn add_object_72(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 530); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 528), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 528), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_73(address_space: &mut AddressSpace) { @@ -931,10 +1794,21 @@ fn add_object_73(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 533); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 531), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 531), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_74(address_space: &mut AddressSpace) { @@ -942,10 +1816,21 @@ fn add_object_74(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 536); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 534), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 534), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_75(address_space: &mut AddressSpace) { @@ -953,11 +1838,26 @@ fn add_object_75(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 539); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 537), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 12718), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 537), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 12718), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_76(address_space: &mut AddressSpace) { @@ -965,11 +1865,26 @@ fn add_object_76(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 542); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 540), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 12721), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 540), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 12721), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_77(address_space: &mut AddressSpace) { @@ -977,10 +1892,21 @@ fn add_object_77(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 545); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 543), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 543), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_78(address_space: &mut AddressSpace) { @@ -988,10 +1914,21 @@ fn add_object_78(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 548); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 546), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 546), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_79(address_space: &mut AddressSpace) { @@ -999,10 +1936,21 @@ fn add_object_79(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 551); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 549), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 549), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_80(address_space: &mut AddressSpace) { @@ -1010,10 +1958,21 @@ fn add_object_80(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 554); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 552), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 552), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_81(address_space: &mut AddressSpace) { @@ -1021,10 +1980,21 @@ fn add_object_81(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 557); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 555), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 555), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_82(address_space: &mut AddressSpace) { @@ -1032,10 +2002,21 @@ fn add_object_82(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 560); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 558), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 558), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_83(address_space: &mut AddressSpace) { @@ -1043,10 +2024,21 @@ fn add_object_83(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 563); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 561), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 561), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_84(address_space: &mut AddressSpace) { @@ -1054,10 +2046,21 @@ fn add_object_84(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 566); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 564), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 564), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_85(address_space: &mut AddressSpace) { @@ -1065,10 +2068,21 @@ fn add_object_85(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 569); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 567), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 567), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_86(address_space: &mut AddressSpace) { @@ -1076,11 +2090,26 @@ fn add_object_86(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 333); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 331), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 7686), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 331), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 7686), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_87(address_space: &mut AddressSpace) { @@ -1088,10 +2117,21 @@ fn add_object_87(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 572); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 570), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 570), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_88(address_space: &mut AddressSpace) { @@ -1099,10 +2139,21 @@ fn add_object_88(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 575); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 573), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 573), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_89(address_space: &mut AddressSpace) { @@ -1110,10 +2161,21 @@ fn add_object_89(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 579); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 577), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 577), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_90(address_space: &mut AddressSpace) { @@ -1121,10 +2183,21 @@ fn add_object_90(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 582); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 580), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 580), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_91(address_space: &mut AddressSpace) { @@ -1132,11 +2205,26 @@ fn add_object_91(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 585); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 583), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 7929), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 583), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 7929), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_92(address_space: &mut AddressSpace) { @@ -1144,11 +2232,26 @@ fn add_object_92(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 588); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 586), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 7932), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 586), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 7932), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_93(address_space: &mut AddressSpace) { @@ -1156,11 +2259,26 @@ fn add_object_93(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 591); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 589), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 7935), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 589), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 7935), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_94(address_space: &mut AddressSpace) { @@ -1168,11 +2286,26 @@ fn add_object_94(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 594); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 592), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 7938), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 592), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 7938), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_95(address_space: &mut AddressSpace) { @@ -1180,11 +2313,26 @@ fn add_object_95(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 597); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 595), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 7941), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 595), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 7941), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_96(address_space: &mut AddressSpace) { @@ -1192,11 +2340,26 @@ fn add_object_96(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 600); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 598), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 7944), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 598), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 7944), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_97(address_space: &mut AddressSpace) { @@ -1204,11 +2367,26 @@ fn add_object_97(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 603); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 601), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 7947), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 601), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 7947), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_98(address_space: &mut AddressSpace) { @@ -1216,10 +2394,21 @@ fn add_object_98(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 606); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 604), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 604), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_99(address_space: &mut AddressSpace) { @@ -1227,10 +2416,21 @@ fn add_object_99(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 609); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 607), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 607), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_100(address_space: &mut AddressSpace) { @@ -1238,9 +2438,19 @@ fn add_object_100(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 612); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 610), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 610), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } - diff --git a/server/src/address_space/generated/nodeset_4_2.rs b/server/src/address_space/generated/nodeset_4_2.rs index 61433117a..4c78b0224 100644 --- a/server/src/address_space/generated/nodeset_4_2.rs +++ b/server/src/address_space/generated/nodeset_4_2.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.NodeSet2.Part4.xml by tools/schema/gen_address_space.js // DO NOT EDIT THIS FILE @@ -9,8 +9,11 @@ use std::{convert::TryFrom, str::FromStr}; #[allow(unused_imports)] use crate::{ - address_space::{EventNotifier, types::*}, - prelude::{DataTypeId, ExtensionObject, LocalizedText, NodeId, ReferenceTypeId, service_types::Argument, UAString, Variant, VariantTypeId} + address_space::{types::*, EventNotifier}, + prelude::{ + service_types::Argument, DataTypeId, ExtensionObject, LocalizedText, NodeId, + ReferenceTypeId, UAString, Variant, VariantTypeId, + }, }; #[allow(unused_variables)] @@ -122,10 +125,21 @@ fn add_object_1(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 615); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 613), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 613), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_2(address_space: &mut AddressSpace) { @@ -133,10 +147,21 @@ fn add_object_2(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 618); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 616), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 616), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_3(address_space: &mut AddressSpace) { @@ -144,10 +169,21 @@ fn add_object_3(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 621); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 619), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 619), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_4(address_space: &mut AddressSpace) { @@ -155,10 +191,21 @@ fn add_object_4(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 624); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 622), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 622), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_5(address_space: &mut AddressSpace) { @@ -166,10 +213,21 @@ fn add_object_5(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 628); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 626), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 626), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_6(address_space: &mut AddressSpace) { @@ -177,10 +235,21 @@ fn add_object_6(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 631); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 629), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 629), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_7(address_space: &mut AddressSpace) { @@ -188,10 +257,21 @@ fn add_object_7(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 634); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 632), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 632), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_8(address_space: &mut AddressSpace) { @@ -199,10 +279,21 @@ fn add_object_8(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 637); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 635), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 635), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_9(address_space: &mut AddressSpace) { @@ -210,10 +301,21 @@ fn add_object_9(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 640); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 638), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 638), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_10(address_space: &mut AddressSpace) { @@ -221,10 +323,21 @@ fn add_object_10(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 643); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 641), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 641), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_11(address_space: &mut AddressSpace) { @@ -232,10 +345,21 @@ fn add_object_11(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 646); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 644), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 644), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_12(address_space: &mut AddressSpace) { @@ -243,10 +367,21 @@ fn add_object_12(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 649); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 647), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 647), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_13(address_space: &mut AddressSpace) { @@ -254,10 +389,21 @@ fn add_object_13(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 652); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 650), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 650), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_14(address_space: &mut AddressSpace) { @@ -265,10 +411,21 @@ fn add_object_14(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 655); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 653), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 653), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_15(address_space: &mut AddressSpace) { @@ -276,10 +433,21 @@ fn add_object_15(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 23500); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 23497), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 23497), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_16(address_space: &mut AddressSpace) { @@ -287,10 +455,21 @@ fn add_object_16(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 658); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 656), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 656), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_17(address_space: &mut AddressSpace) { @@ -298,10 +477,21 @@ fn add_object_17(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 11226); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11216), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11216), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_18(address_space: &mut AddressSpace) { @@ -309,10 +499,21 @@ fn add_object_18(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 11227); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11217), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11217), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_19(address_space: &mut AddressSpace) { @@ -320,11 +521,26 @@ fn add_object_19(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 661); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 659), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8004), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 659), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8004), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_20(address_space: &mut AddressSpace) { @@ -332,10 +548,21 @@ fn add_object_20(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 664); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 662), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 662), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_21(address_space: &mut AddressSpace) { @@ -343,10 +570,21 @@ fn add_object_21(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 667); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 665), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 665), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_22(address_space: &mut AddressSpace) { @@ -354,10 +592,21 @@ fn add_object_22(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 670); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 668), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 668), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_23(address_space: &mut AddressSpace) { @@ -365,10 +614,21 @@ fn add_object_23(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 673); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 671), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 671), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_24(address_space: &mut AddressSpace) { @@ -376,10 +636,21 @@ fn add_object_24(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 676); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 674), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 674), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_25(address_space: &mut AddressSpace) { @@ -387,10 +658,21 @@ fn add_object_25(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 679); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 677), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 677), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_26(address_space: &mut AddressSpace) { @@ -398,10 +680,21 @@ fn add_object_26(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 682); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 680), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 680), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_27(address_space: &mut AddressSpace) { @@ -409,10 +702,21 @@ fn add_object_27(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 11300); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11295), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11295), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_28(address_space: &mut AddressSpace) { @@ -420,10 +724,21 @@ fn add_object_28(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 685); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 683), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 683), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_29(address_space: &mut AddressSpace) { @@ -431,10 +746,21 @@ fn add_object_29(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 688); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 686), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 686), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_30(address_space: &mut AddressSpace) { @@ -442,10 +768,21 @@ fn add_object_30(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 691); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 689), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 689), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_31(address_space: &mut AddressSpace) { @@ -453,10 +790,21 @@ fn add_object_31(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 694); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 692), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 692), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_32(address_space: &mut AddressSpace) { @@ -464,10 +812,21 @@ fn add_object_32(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 697); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 695), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 695), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_33(address_space: &mut AddressSpace) { @@ -475,10 +834,21 @@ fn add_object_33(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 700); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 698), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 698), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_34(address_space: &mut AddressSpace) { @@ -486,10 +856,21 @@ fn add_object_34(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 703); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 701), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 701), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_35(address_space: &mut AddressSpace) { @@ -497,10 +878,21 @@ fn add_object_35(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 706); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 704), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 704), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_36(address_space: &mut AddressSpace) { @@ -508,10 +900,21 @@ fn add_object_36(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 709); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 707), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 707), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_37(address_space: &mut AddressSpace) { @@ -519,10 +922,21 @@ fn add_object_37(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 712); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 710), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 710), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_38(address_space: &mut AddressSpace) { @@ -530,10 +944,21 @@ fn add_object_38(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 715); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 713), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 713), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_39(address_space: &mut AddressSpace) { @@ -541,11 +966,26 @@ fn add_object_39(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 721); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 719), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8067), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 719), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8067), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_40(address_space: &mut AddressSpace) { @@ -553,10 +993,21 @@ fn add_object_40(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 724); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 722), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 722), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_41(address_space: &mut AddressSpace) { @@ -564,11 +1015,26 @@ fn add_object_41(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 727); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 725), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8073), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 725), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8073), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_42(address_space: &mut AddressSpace) { @@ -576,11 +1042,26 @@ fn add_object_42(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 950); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 948), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8076), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 948), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8076), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_43(address_space: &mut AddressSpace) { @@ -588,10 +1069,21 @@ fn add_object_43(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 730); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 728), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 728), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_44(address_space: &mut AddressSpace) { @@ -599,10 +1091,21 @@ fn add_object_44(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 733); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 731), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 731), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_45(address_space: &mut AddressSpace) { @@ -610,10 +1113,21 @@ fn add_object_45(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 736); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 734), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 734), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_46(address_space: &mut AddressSpace) { @@ -621,10 +1135,21 @@ fn add_object_46(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 739); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 737), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 737), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_47(address_space: &mut AddressSpace) { @@ -632,10 +1157,21 @@ fn add_object_47(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 742); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 740), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 740), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_48(address_space: &mut AddressSpace) { @@ -643,10 +1179,21 @@ fn add_object_48(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 745); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 743), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 743), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_49(address_space: &mut AddressSpace) { @@ -654,10 +1201,21 @@ fn add_object_49(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 748); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 746), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 746), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_50(address_space: &mut AddressSpace) { @@ -665,10 +1223,21 @@ fn add_object_50(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 751); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 749), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 749), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_51(address_space: &mut AddressSpace) { @@ -676,10 +1245,21 @@ fn add_object_51(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 754); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 752), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 752), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_52(address_space: &mut AddressSpace) { @@ -687,10 +1267,21 @@ fn add_object_52(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 757); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 755), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 755), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_53(address_space: &mut AddressSpace) { @@ -698,10 +1289,21 @@ fn add_object_53(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 760); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 758), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 758), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_54(address_space: &mut AddressSpace) { @@ -709,10 +1311,21 @@ fn add_object_54(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 763); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 761), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 761), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_55(address_space: &mut AddressSpace) { @@ -720,10 +1333,21 @@ fn add_object_55(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 766); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 764), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 764), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_56(address_space: &mut AddressSpace) { @@ -731,10 +1355,21 @@ fn add_object_56(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 769); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 767), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 767), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_57(address_space: &mut AddressSpace) { @@ -742,10 +1377,21 @@ fn add_object_57(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 772); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 770), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 770), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_58(address_space: &mut AddressSpace) { @@ -753,10 +1399,21 @@ fn add_object_58(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 775); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 773), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 773), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_59(address_space: &mut AddressSpace) { @@ -764,10 +1421,21 @@ fn add_object_59(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 778); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 776), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 776), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_60(address_space: &mut AddressSpace) { @@ -775,10 +1443,21 @@ fn add_object_60(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 781); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 779), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 779), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_61(address_space: &mut AddressSpace) { @@ -786,10 +1465,21 @@ fn add_object_61(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 784); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 782), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 782), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_62(address_space: &mut AddressSpace) { @@ -797,10 +1487,21 @@ fn add_object_62(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 787); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 785), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 785), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_63(address_space: &mut AddressSpace) { @@ -808,10 +1509,21 @@ fn add_object_63(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 790); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 788), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 788), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_64(address_space: &mut AddressSpace) { @@ -819,10 +1531,21 @@ fn add_object_64(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 793); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 791), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 791), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_65(address_space: &mut AddressSpace) { @@ -830,10 +1553,21 @@ fn add_object_65(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 796); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 794), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 794), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_66(address_space: &mut AddressSpace) { @@ -841,10 +1575,21 @@ fn add_object_66(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 799); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 797), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 797), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_67(address_space: &mut AddressSpace) { @@ -852,10 +1597,21 @@ fn add_object_67(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 802); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 800), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 800), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_68(address_space: &mut AddressSpace) { @@ -863,10 +1619,21 @@ fn add_object_68(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 805); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 803), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 803), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_69(address_space: &mut AddressSpace) { @@ -874,10 +1641,21 @@ fn add_object_69(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 947); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 945), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 945), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_70(address_space: &mut AddressSpace) { @@ -885,10 +1663,21 @@ fn add_object_70(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 811); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 809), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 809), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_71(address_space: &mut AddressSpace) { @@ -896,10 +1685,21 @@ fn add_object_71(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 808); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 806), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 806), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_72(address_space: &mut AddressSpace) { @@ -907,10 +1707,21 @@ fn add_object_72(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 916); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 914), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 914), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_73(address_space: &mut AddressSpace) { @@ -918,10 +1729,21 @@ fn add_object_73(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 919); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 917), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 917), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_74(address_space: &mut AddressSpace) { @@ -929,11 +1751,26 @@ fn add_object_74(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 922); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 920), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8172), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 920), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8172), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_75(address_space: &mut AddressSpace) { @@ -941,10 +1778,21 @@ fn add_object_75(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 820); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 818), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 818), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_76(address_space: &mut AddressSpace) { @@ -952,10 +1800,21 @@ fn add_object_76(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 823); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 821), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 821), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_77(address_space: &mut AddressSpace) { @@ -963,10 +1822,21 @@ fn add_object_77(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 826); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 824), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 824), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_78(address_space: &mut AddressSpace) { @@ -974,10 +1844,21 @@ fn add_object_78(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 829); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 827), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 827), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_79(address_space: &mut AddressSpace) { @@ -985,10 +1866,21 @@ fn add_object_79(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 832); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 830), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 830), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_80(address_space: &mut AddressSpace) { @@ -996,10 +1888,21 @@ fn add_object_80(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 835); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 833), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 833), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_81(address_space: &mut AddressSpace) { @@ -1007,10 +1910,21 @@ fn add_object_81(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 838); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 836), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 836), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_82(address_space: &mut AddressSpace) { @@ -1018,10 +1932,21 @@ fn add_object_82(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 841); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 839), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 839), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_83(address_space: &mut AddressSpace) { @@ -1029,10 +1954,21 @@ fn add_object_83(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 844); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 842), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 842), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_84(address_space: &mut AddressSpace) { @@ -1040,10 +1976,21 @@ fn add_object_84(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 847); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 845), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 845), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_85(address_space: &mut AddressSpace) { @@ -1051,10 +1998,21 @@ fn add_object_85(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 850); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 848), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 848), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_86(address_space: &mut AddressSpace) { @@ -1062,11 +2020,26 @@ fn add_object_86(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 309); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 308), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8300), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 308), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8300), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_87(address_space: &mut AddressSpace) { @@ -1074,10 +2047,21 @@ fn add_object_87(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 390); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 389), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 389), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_88(address_space: &mut AddressSpace) { @@ -1085,10 +2069,21 @@ fn add_object_88(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 393); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 392), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 392), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_89(address_space: &mut AddressSpace) { @@ -1096,10 +2091,21 @@ fn add_object_89(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 396); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 395), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 395), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_90(address_space: &mut AddressSpace) { @@ -1107,10 +2113,21 @@ fn add_object_90(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 15902); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15901), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15901), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_91(address_space: &mut AddressSpace) { @@ -1118,10 +2135,21 @@ fn add_object_91(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 21000); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 20999), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 20999), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_92(address_space: &mut AddressSpace) { @@ -1129,10 +2157,21 @@ fn add_object_92(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 421); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 420), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 420), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_93(address_space: &mut AddressSpace) { @@ -1140,10 +2179,21 @@ fn add_object_93(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 424); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 423), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 423), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_94(address_space: &mut AddressSpace) { @@ -1151,11 +2201,26 @@ fn add_object_94(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 12195); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12189), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 12201), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12189), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 12201), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_95(address_space: &mut AddressSpace) { @@ -1163,10 +2228,21 @@ fn add_object_95(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 12196); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12190), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12190), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_96(address_space: &mut AddressSpace) { @@ -1174,10 +2250,21 @@ fn add_object_96(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 12197); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12191), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12191), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_97(address_space: &mut AddressSpace) { @@ -1185,11 +2272,26 @@ fn add_object_97(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 305); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 304), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8297), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 304), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8297), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_98(address_space: &mut AddressSpace) { @@ -1197,11 +2299,26 @@ fn add_object_98(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 313); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 312), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8303), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 312), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8303), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_99(address_space: &mut AddressSpace) { @@ -1209,10 +2326,21 @@ fn add_object_99(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 427); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 426), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 426), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_100(address_space: &mut AddressSpace) { @@ -1220,9 +2348,19 @@ fn add_object_100(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 430); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 429), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 429), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } - diff --git a/server/src/address_space/generated/nodeset_4_3.rs b/server/src/address_space/generated/nodeset_4_3.rs index a9ca899fc..5fbc484a5 100644 --- a/server/src/address_space/generated/nodeset_4_3.rs +++ b/server/src/address_space/generated/nodeset_4_3.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.NodeSet2.Part4.xml by tools/schema/gen_address_space.js // DO NOT EDIT THIS FILE @@ -9,8 +9,11 @@ use std::{convert::TryFrom, str::FromStr}; #[allow(unused_imports)] use crate::{ - address_space::{EventNotifier, types::*}, - prelude::{DataTypeId, ExtensionObject, LocalizedText, NodeId, ReferenceTypeId, service_types::Argument, UAString, Variant, VariantTypeId} + address_space::{types::*, EventNotifier}, + prelude::{ + service_types::Argument, DataTypeId, ExtensionObject, LocalizedText, NodeId, + ReferenceTypeId, UAString, Variant, VariantTypeId, + }, }; #[allow(unused_variables)] @@ -122,11 +125,26 @@ fn add_object_1(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 433); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 432), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8417), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 432), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8417), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_2(address_space: &mut AddressSpace) { @@ -134,10 +152,21 @@ fn add_object_2(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 436); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 435), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 435), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_3(address_space: &mut AddressSpace) { @@ -145,10 +174,21 @@ fn add_object_3(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 439); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 438), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 438), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_4(address_space: &mut AddressSpace) { @@ -156,11 +196,26 @@ fn add_object_4(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 12892); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12890), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 12894), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12890), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 12894), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_5(address_space: &mut AddressSpace) { @@ -168,11 +223,26 @@ fn add_object_5(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 12893); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12891), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 12897), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12891), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 12897), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_6(address_space: &mut AddressSpace) { @@ -180,10 +250,21 @@ fn add_object_6(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 12199); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12193), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12193), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_7(address_space: &mut AddressSpace) { @@ -191,10 +272,21 @@ fn add_object_7(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 12200); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12194), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12194), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_8(address_space: &mut AddressSpace) { @@ -202,10 +294,21 @@ fn add_object_8(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 442); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 441), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 441), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_9(address_space: &mut AddressSpace) { @@ -213,10 +316,21 @@ fn add_object_9(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 445); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 444), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 444), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_10(address_space: &mut AddressSpace) { @@ -224,10 +338,21 @@ fn add_object_10(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 448); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 447), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 447), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_11(address_space: &mut AddressSpace) { @@ -235,10 +360,21 @@ fn add_object_11(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 451); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 450), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 450), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_12(address_space: &mut AddressSpace) { @@ -246,10 +382,21 @@ fn add_object_12(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 454); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 453), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 453), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_13(address_space: &mut AddressSpace) { @@ -257,11 +404,26 @@ fn add_object_13(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 345); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 344), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8333), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 344), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8333), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_14(address_space: &mut AddressSpace) { @@ -269,10 +431,21 @@ fn add_object_14(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 457); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 456), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 456), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_15(address_space: &mut AddressSpace) { @@ -280,10 +453,21 @@ fn add_object_15(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 460); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 459), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 459), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_16(address_space: &mut AddressSpace) { @@ -291,10 +475,21 @@ fn add_object_16(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 463); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 462), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 462), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_17(address_space: &mut AddressSpace) { @@ -302,11 +497,26 @@ fn add_object_17(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 317); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 316), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8306), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 316), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8306), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_18(address_space: &mut AddressSpace) { @@ -314,11 +524,26 @@ fn add_object_18(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 320); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 319), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8309), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 319), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8309), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_19(address_space: &mut AddressSpace) { @@ -326,11 +551,26 @@ fn add_object_19(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 323); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 322), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8312), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 322), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8312), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_20(address_space: &mut AddressSpace) { @@ -338,11 +578,26 @@ fn add_object_20(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 326); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 325), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8315), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 325), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8315), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_21(address_space: &mut AddressSpace) { @@ -350,11 +605,26 @@ fn add_object_21(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 939); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 938), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8318), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 938), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8318), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_22(address_space: &mut AddressSpace) { @@ -362,10 +632,21 @@ fn add_object_22(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 466); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 465), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 465), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_23(address_space: &mut AddressSpace) { @@ -373,10 +654,21 @@ fn add_object_23(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 469); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 468), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 468), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_24(address_space: &mut AddressSpace) { @@ -384,10 +676,21 @@ fn add_object_24(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 472); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 471), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 471), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_25(address_space: &mut AddressSpace) { @@ -395,10 +698,21 @@ fn add_object_25(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 475); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 474), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 474), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_26(address_space: &mut AddressSpace) { @@ -406,10 +720,21 @@ fn add_object_26(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 478); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 477), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 477), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_27(address_space: &mut AddressSpace) { @@ -417,10 +742,21 @@ fn add_object_27(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 481); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 480), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 480), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_28(address_space: &mut AddressSpace) { @@ -428,10 +764,21 @@ fn add_object_28(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 350); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 349), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 349), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_29(address_space: &mut AddressSpace) { @@ -439,10 +786,21 @@ fn add_object_29(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 353); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 352), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 352), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_30(address_space: &mut AddressSpace) { @@ -450,10 +808,21 @@ fn add_object_30(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 356); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 355), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 355), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_31(address_space: &mut AddressSpace) { @@ -461,10 +830,21 @@ fn add_object_31(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 359); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 358), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 358), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_32(address_space: &mut AddressSpace) { @@ -472,10 +852,21 @@ fn add_object_32(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 362); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 361), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 361), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_33(address_space: &mut AddressSpace) { @@ -483,10 +874,21 @@ fn add_object_33(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 365); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 364), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 364), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_34(address_space: &mut AddressSpace) { @@ -494,10 +896,21 @@ fn add_object_34(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 368); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 367), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 367), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_35(address_space: &mut AddressSpace) { @@ -505,10 +918,21 @@ fn add_object_35(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 371); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 370), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 370), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_36(address_space: &mut AddressSpace) { @@ -516,10 +940,21 @@ fn add_object_36(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 374); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 373), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 373), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_37(address_space: &mut AddressSpace) { @@ -527,10 +962,21 @@ fn add_object_37(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 17608); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17606), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17606), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_38(address_space: &mut AddressSpace) { @@ -538,10 +984,21 @@ fn add_object_38(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 17609); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17607), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17607), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_39(address_space: &mut AddressSpace) { @@ -549,11 +1006,26 @@ fn add_object_39(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 377); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 376), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8363), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 376), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8363), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_40(address_space: &mut AddressSpace) { @@ -561,10 +1033,21 @@ fn add_object_40(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 484); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 483), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 483), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_41(address_space: &mut AddressSpace) { @@ -572,10 +1055,21 @@ fn add_object_41(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 487); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 486), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 486), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_42(address_space: &mut AddressSpace) { @@ -583,10 +1077,21 @@ fn add_object_42(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 490); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 489), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 489), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_43(address_space: &mut AddressSpace) { @@ -594,11 +1099,26 @@ fn add_object_43(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 380); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 379), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8366), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 379), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8366), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_44(address_space: &mut AddressSpace) { @@ -606,10 +1126,21 @@ fn add_object_44(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 493); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 492), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 492), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_45(address_space: &mut AddressSpace) { @@ -617,10 +1148,21 @@ fn add_object_45(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 496); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 495), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 495), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_46(address_space: &mut AddressSpace) { @@ -628,11 +1170,26 @@ fn add_object_46(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 383); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 382), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8369), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 382), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8369), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_47(address_space: &mut AddressSpace) { @@ -640,10 +1197,21 @@ fn add_object_47(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 499); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 498), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 498), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_48(address_space: &mut AddressSpace) { @@ -651,10 +1219,21 @@ fn add_object_48(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 502); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 501), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 501), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_49(address_space: &mut AddressSpace) { @@ -662,11 +1241,26 @@ fn add_object_49(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 386); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 385), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8372), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 385), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8372), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_50(address_space: &mut AddressSpace) { @@ -674,10 +1268,21 @@ fn add_object_50(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 505); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 504), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 504), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_51(address_space: &mut AddressSpace) { @@ -685,10 +1290,21 @@ fn add_object_51(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 508); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 507), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 507), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_52(address_space: &mut AddressSpace) { @@ -696,10 +1312,21 @@ fn add_object_52(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 512); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 511), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 511), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_53(address_space: &mut AddressSpace) { @@ -707,10 +1334,21 @@ fn add_object_53(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 515); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 514), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 514), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_54(address_space: &mut AddressSpace) { @@ -718,10 +1356,21 @@ fn add_object_54(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 519); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 518), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 518), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_55(address_space: &mut AddressSpace) { @@ -729,10 +1378,21 @@ fn add_object_55(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 523); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 522), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 522), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_56(address_space: &mut AddressSpace) { @@ -740,10 +1400,21 @@ fn add_object_56(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 526); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 525), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 525), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_57(address_space: &mut AddressSpace) { @@ -751,10 +1422,21 @@ fn add_object_57(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 529); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 528), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 528), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_58(address_space: &mut AddressSpace) { @@ -762,10 +1444,21 @@ fn add_object_58(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 532); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 531), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 531), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_59(address_space: &mut AddressSpace) { @@ -773,10 +1466,21 @@ fn add_object_59(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 535); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 534), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 534), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_60(address_space: &mut AddressSpace) { @@ -784,11 +1488,26 @@ fn add_object_60(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 538); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 537), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 12712), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 537), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 12712), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_61(address_space: &mut AddressSpace) { @@ -796,11 +1515,26 @@ fn add_object_61(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 541); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 540), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 12715), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 540), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 12715), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_62(address_space: &mut AddressSpace) { @@ -808,10 +1542,21 @@ fn add_object_62(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 544); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 543), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 543), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_63(address_space: &mut AddressSpace) { @@ -819,10 +1564,21 @@ fn add_object_63(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 547); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 546), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 546), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_64(address_space: &mut AddressSpace) { @@ -830,10 +1586,21 @@ fn add_object_64(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 550); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 549), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 549), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_65(address_space: &mut AddressSpace) { @@ -841,10 +1608,21 @@ fn add_object_65(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 553); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 552), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 552), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_66(address_space: &mut AddressSpace) { @@ -852,10 +1630,21 @@ fn add_object_66(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 556); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 555), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 555), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_67(address_space: &mut AddressSpace) { @@ -863,10 +1652,21 @@ fn add_object_67(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 559); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 558), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 558), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_68(address_space: &mut AddressSpace) { @@ -874,10 +1674,21 @@ fn add_object_68(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 562); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 561), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 561), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_69(address_space: &mut AddressSpace) { @@ -885,10 +1696,21 @@ fn add_object_69(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 565); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 564), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 564), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_70(address_space: &mut AddressSpace) { @@ -896,10 +1718,21 @@ fn add_object_70(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 568); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 567), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 567), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_71(address_space: &mut AddressSpace) { @@ -907,11 +1740,26 @@ fn add_object_71(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 332); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 331), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8321), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 331), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8321), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_72(address_space: &mut AddressSpace) { @@ -919,10 +1767,21 @@ fn add_object_72(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 571); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 570), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 570), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_73(address_space: &mut AddressSpace) { @@ -930,10 +1789,21 @@ fn add_object_73(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 574); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 573), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 573), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_74(address_space: &mut AddressSpace) { @@ -941,10 +1811,21 @@ fn add_object_74(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 578); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 577), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 577), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_75(address_space: &mut AddressSpace) { @@ -952,10 +1833,21 @@ fn add_object_75(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 581); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 580), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 580), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_76(address_space: &mut AddressSpace) { @@ -963,11 +1855,26 @@ fn add_object_76(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 584); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 583), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8564), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 583), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8564), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_77(address_space: &mut AddressSpace) { @@ -975,11 +1882,26 @@ fn add_object_77(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 587); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 586), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8567), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 586), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8567), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_78(address_space: &mut AddressSpace) { @@ -987,11 +1909,26 @@ fn add_object_78(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 590); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 589), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8570), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 589), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8570), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_79(address_space: &mut AddressSpace) { @@ -999,11 +1936,26 @@ fn add_object_79(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 593); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 592), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8573), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 592), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8573), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_80(address_space: &mut AddressSpace) { @@ -1011,11 +1963,26 @@ fn add_object_80(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 596); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 595), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8576), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 595), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8576), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_81(address_space: &mut AddressSpace) { @@ -1023,11 +1990,26 @@ fn add_object_81(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 599); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 598), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8579), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 598), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8579), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_82(address_space: &mut AddressSpace) { @@ -1035,11 +2017,26 @@ fn add_object_82(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 602); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 601), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8582), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 601), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8582), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_83(address_space: &mut AddressSpace) { @@ -1047,10 +2044,21 @@ fn add_object_83(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 605); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 604), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 604), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_84(address_space: &mut AddressSpace) { @@ -1058,10 +2066,21 @@ fn add_object_84(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 608); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 607), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 607), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_85(address_space: &mut AddressSpace) { @@ -1069,10 +2088,21 @@ fn add_object_85(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 611); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 610), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 610), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_86(address_space: &mut AddressSpace) { @@ -1080,10 +2110,21 @@ fn add_object_86(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 614); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 613), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 613), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_87(address_space: &mut AddressSpace) { @@ -1091,10 +2132,21 @@ fn add_object_87(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 617); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 616), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 616), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_88(address_space: &mut AddressSpace) { @@ -1102,10 +2154,21 @@ fn add_object_88(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 620); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 619), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 619), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_89(address_space: &mut AddressSpace) { @@ -1113,10 +2176,21 @@ fn add_object_89(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 623); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 622), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 622), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_90(address_space: &mut AddressSpace) { @@ -1124,10 +2198,21 @@ fn add_object_90(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 627); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 626), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 626), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_91(address_space: &mut AddressSpace) { @@ -1135,10 +2220,21 @@ fn add_object_91(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 630); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 629), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 629), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_92(address_space: &mut AddressSpace) { @@ -1146,10 +2242,21 @@ fn add_object_92(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 633); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 632), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 632), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_93(address_space: &mut AddressSpace) { @@ -1157,10 +2264,21 @@ fn add_object_93(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 636); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 635), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 635), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_94(address_space: &mut AddressSpace) { @@ -1168,10 +2286,21 @@ fn add_object_94(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 639); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 638), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 638), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_95(address_space: &mut AddressSpace) { @@ -1179,10 +2308,21 @@ fn add_object_95(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 642); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 641), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 641), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_96(address_space: &mut AddressSpace) { @@ -1190,10 +2330,21 @@ fn add_object_96(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 645); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 644), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 644), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_97(address_space: &mut AddressSpace) { @@ -1201,10 +2352,21 @@ fn add_object_97(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 648); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 647), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 647), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_98(address_space: &mut AddressSpace) { @@ -1212,10 +2374,21 @@ fn add_object_98(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 651); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 650), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 650), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_99(address_space: &mut AddressSpace) { @@ -1223,10 +2396,21 @@ fn add_object_99(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 654); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 653), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 653), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_100(address_space: &mut AddressSpace) { @@ -1234,9 +2418,19 @@ fn add_object_100(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 23506); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 23497), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 23497), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } - diff --git a/server/src/address_space/generated/nodeset_4_4.rs b/server/src/address_space/generated/nodeset_4_4.rs index cda9b1f51..c48f9138a 100644 --- a/server/src/address_space/generated/nodeset_4_4.rs +++ b/server/src/address_space/generated/nodeset_4_4.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.NodeSet2.Part4.xml by tools/schema/gen_address_space.js // DO NOT EDIT THIS FILE @@ -9,8 +9,11 @@ use std::{convert::TryFrom, str::FromStr}; #[allow(unused_imports)] use crate::{ - address_space::{EventNotifier, types::*}, - prelude::{DataTypeId, ExtensionObject, LocalizedText, NodeId, ReferenceTypeId, service_types::Argument, UAString, Variant, VariantTypeId} + address_space::{types::*, EventNotifier}, + prelude::{ + service_types::Argument, DataTypeId, ExtensionObject, LocalizedText, NodeId, + ReferenceTypeId, UAString, Variant, VariantTypeId, + }, }; #[allow(unused_variables)] @@ -122,10 +125,21 @@ fn add_object_1(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 657); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 656), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 656), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_2(address_space: &mut AddressSpace) { @@ -133,10 +147,21 @@ fn add_object_2(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 11218); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11216), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11216), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_3(address_space: &mut AddressSpace) { @@ -144,10 +169,21 @@ fn add_object_3(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 11219); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11217), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11217), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_4(address_space: &mut AddressSpace) { @@ -155,11 +191,26 @@ fn add_object_4(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 660); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 659), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8639), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 659), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8639), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_5(address_space: &mut AddressSpace) { @@ -167,10 +218,21 @@ fn add_object_5(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 663); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 662), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 662), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_6(address_space: &mut AddressSpace) { @@ -178,10 +240,21 @@ fn add_object_6(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 666); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 665), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 665), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_7(address_space: &mut AddressSpace) { @@ -189,10 +262,21 @@ fn add_object_7(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 669); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 668), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 668), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_8(address_space: &mut AddressSpace) { @@ -200,10 +284,21 @@ fn add_object_8(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 672); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 671), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 671), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_9(address_space: &mut AddressSpace) { @@ -211,10 +306,21 @@ fn add_object_9(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 675); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 674), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 674), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_10(address_space: &mut AddressSpace) { @@ -222,10 +328,21 @@ fn add_object_10(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 678); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 677), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 677), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_11(address_space: &mut AddressSpace) { @@ -233,10 +350,21 @@ fn add_object_11(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 681); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 680), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 680), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_12(address_space: &mut AddressSpace) { @@ -244,10 +372,21 @@ fn add_object_12(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 11296); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11295), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11295), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_13(address_space: &mut AddressSpace) { @@ -255,10 +394,21 @@ fn add_object_13(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 684); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 683), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 683), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_14(address_space: &mut AddressSpace) { @@ -266,10 +416,21 @@ fn add_object_14(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 687); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 686), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 686), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_15(address_space: &mut AddressSpace) { @@ -277,10 +438,21 @@ fn add_object_15(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 690); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 689), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 689), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_16(address_space: &mut AddressSpace) { @@ -288,10 +460,21 @@ fn add_object_16(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 693); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 692), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 692), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_17(address_space: &mut AddressSpace) { @@ -299,10 +482,21 @@ fn add_object_17(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 696); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 695), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 695), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_18(address_space: &mut AddressSpace) { @@ -310,10 +504,21 @@ fn add_object_18(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 699); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 698), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 698), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_19(address_space: &mut AddressSpace) { @@ -321,10 +526,21 @@ fn add_object_19(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 702); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 701), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 701), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_20(address_space: &mut AddressSpace) { @@ -332,10 +548,21 @@ fn add_object_20(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 705); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 704), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 704), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_21(address_space: &mut AddressSpace) { @@ -343,10 +570,21 @@ fn add_object_21(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 708); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 707), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 707), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_22(address_space: &mut AddressSpace) { @@ -354,10 +592,21 @@ fn add_object_22(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 711); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 710), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 710), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_23(address_space: &mut AddressSpace) { @@ -365,10 +614,21 @@ fn add_object_23(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 714); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 713), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 713), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_24(address_space: &mut AddressSpace) { @@ -376,11 +636,26 @@ fn add_object_24(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 720); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 719), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8702), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 719), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8702), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_25(address_space: &mut AddressSpace) { @@ -388,10 +663,21 @@ fn add_object_25(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 723); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 722), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 722), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_26(address_space: &mut AddressSpace) { @@ -399,11 +685,26 @@ fn add_object_26(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 726); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 725), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8708), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 725), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8708), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_27(address_space: &mut AddressSpace) { @@ -411,11 +712,26 @@ fn add_object_27(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 949); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 948), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8711), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 948), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8711), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_28(address_space: &mut AddressSpace) { @@ -423,10 +739,21 @@ fn add_object_28(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 729); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 728), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 728), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_29(address_space: &mut AddressSpace) { @@ -434,10 +761,21 @@ fn add_object_29(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 732); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 731), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 731), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_30(address_space: &mut AddressSpace) { @@ -445,10 +783,21 @@ fn add_object_30(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 735); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 734), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 734), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_31(address_space: &mut AddressSpace) { @@ -456,10 +805,21 @@ fn add_object_31(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 738); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 737), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 737), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_32(address_space: &mut AddressSpace) { @@ -467,10 +827,21 @@ fn add_object_32(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 741); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 740), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 740), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_33(address_space: &mut AddressSpace) { @@ -478,10 +849,21 @@ fn add_object_33(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 744); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 743), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 743), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_34(address_space: &mut AddressSpace) { @@ -489,10 +871,21 @@ fn add_object_34(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 747); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 746), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 746), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_35(address_space: &mut AddressSpace) { @@ -500,10 +893,21 @@ fn add_object_35(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 750); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 749), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 749), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_36(address_space: &mut AddressSpace) { @@ -511,10 +915,21 @@ fn add_object_36(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 753); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 752), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 752), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_37(address_space: &mut AddressSpace) { @@ -522,10 +937,21 @@ fn add_object_37(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 756); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 755), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 755), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_38(address_space: &mut AddressSpace) { @@ -533,10 +959,21 @@ fn add_object_38(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 759); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 758), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 758), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_39(address_space: &mut AddressSpace) { @@ -544,10 +981,21 @@ fn add_object_39(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 762); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 761), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 761), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_40(address_space: &mut AddressSpace) { @@ -555,10 +1003,21 @@ fn add_object_40(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 765); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 764), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 764), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_41(address_space: &mut AddressSpace) { @@ -566,10 +1025,21 @@ fn add_object_41(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 768); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 767), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 767), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_42(address_space: &mut AddressSpace) { @@ -577,10 +1047,21 @@ fn add_object_42(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 771); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 770), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 770), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_43(address_space: &mut AddressSpace) { @@ -588,10 +1069,21 @@ fn add_object_43(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 774); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 773), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 773), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_44(address_space: &mut AddressSpace) { @@ -599,10 +1091,21 @@ fn add_object_44(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 777); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 776), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 776), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_45(address_space: &mut AddressSpace) { @@ -610,10 +1113,21 @@ fn add_object_45(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 780); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 779), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 779), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_46(address_space: &mut AddressSpace) { @@ -621,10 +1135,21 @@ fn add_object_46(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 783); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 782), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 782), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_47(address_space: &mut AddressSpace) { @@ -632,10 +1157,21 @@ fn add_object_47(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 786); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 785), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 785), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_48(address_space: &mut AddressSpace) { @@ -643,10 +1179,21 @@ fn add_object_48(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 789); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 788), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 788), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_49(address_space: &mut AddressSpace) { @@ -654,10 +1201,21 @@ fn add_object_49(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 792); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 791), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 791), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_50(address_space: &mut AddressSpace) { @@ -665,10 +1223,21 @@ fn add_object_50(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 795); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 794), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 794), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_51(address_space: &mut AddressSpace) { @@ -676,10 +1245,21 @@ fn add_object_51(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 798); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 797), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 797), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_52(address_space: &mut AddressSpace) { @@ -687,10 +1267,21 @@ fn add_object_52(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 801); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 800), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 800), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_53(address_space: &mut AddressSpace) { @@ -698,10 +1289,21 @@ fn add_object_53(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 804); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 803), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 803), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_54(address_space: &mut AddressSpace) { @@ -709,10 +1311,21 @@ fn add_object_54(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 946); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 945), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 945), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_55(address_space: &mut AddressSpace) { @@ -720,10 +1333,21 @@ fn add_object_55(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 810); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 809), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 809), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_56(address_space: &mut AddressSpace) { @@ -731,10 +1355,21 @@ fn add_object_56(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 807); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 806), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 806), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_57(address_space: &mut AddressSpace) { @@ -742,10 +1377,21 @@ fn add_object_57(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 915); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 914), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 914), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_58(address_space: &mut AddressSpace) { @@ -753,10 +1399,21 @@ fn add_object_58(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 918); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 917), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 917), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_59(address_space: &mut AddressSpace) { @@ -764,11 +1421,26 @@ fn add_object_59(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 921); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 920), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8807), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 920), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8807), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_60(address_space: &mut AddressSpace) { @@ -776,10 +1448,21 @@ fn add_object_60(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 819); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 818), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 818), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_61(address_space: &mut AddressSpace) { @@ -787,10 +1470,21 @@ fn add_object_61(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 822); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 821), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 821), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_62(address_space: &mut AddressSpace) { @@ -798,10 +1492,21 @@ fn add_object_62(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 825); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 824), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 824), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_63(address_space: &mut AddressSpace) { @@ -809,10 +1514,21 @@ fn add_object_63(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 828); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 827), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 827), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_64(address_space: &mut AddressSpace) { @@ -820,10 +1536,21 @@ fn add_object_64(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 831); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 830), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 830), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_65(address_space: &mut AddressSpace) { @@ -831,10 +1558,21 @@ fn add_object_65(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 834); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 833), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 833), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_66(address_space: &mut AddressSpace) { @@ -842,10 +1580,21 @@ fn add_object_66(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 837); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 836), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 836), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_67(address_space: &mut AddressSpace) { @@ -853,10 +1602,21 @@ fn add_object_67(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 840); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 839), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 839), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_68(address_space: &mut AddressSpace) { @@ -864,10 +1624,21 @@ fn add_object_68(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 843); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 842), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 842), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_69(address_space: &mut AddressSpace) { @@ -875,10 +1646,21 @@ fn add_object_69(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 846); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 845), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 845), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_70(address_space: &mut AddressSpace) { @@ -886,10 +1668,21 @@ fn add_object_70(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 849); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 848), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 848), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_71(address_space: &mut AddressSpace) { @@ -897,10 +1690,21 @@ fn add_object_71(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15087); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 308), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 308), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_72(address_space: &mut AddressSpace) { @@ -908,10 +1712,21 @@ fn add_object_72(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15088); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 389), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 389), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_73(address_space: &mut AddressSpace) { @@ -919,10 +1734,21 @@ fn add_object_73(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15089); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 392), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 392), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_74(address_space: &mut AddressSpace) { @@ -930,10 +1756,21 @@ fn add_object_74(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15090); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 395), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 395), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_75(address_space: &mut AddressSpace) { @@ -941,10 +1778,21 @@ fn add_object_75(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15091); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15901), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15901), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_76(address_space: &mut AddressSpace) { @@ -952,10 +1800,21 @@ fn add_object_76(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15092); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 20999), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 20999), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_77(address_space: &mut AddressSpace) { @@ -963,10 +1822,21 @@ fn add_object_77(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15093); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 420), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 420), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_78(address_space: &mut AddressSpace) { @@ -974,10 +1844,21 @@ fn add_object_78(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15094); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 423), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 423), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_79(address_space: &mut AddressSpace) { @@ -985,10 +1866,21 @@ fn add_object_79(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15095); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12189), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12189), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_80(address_space: &mut AddressSpace) { @@ -996,10 +1888,21 @@ fn add_object_80(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15096); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12190), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12190), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_81(address_space: &mut AddressSpace) { @@ -1007,10 +1910,21 @@ fn add_object_81(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15097); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12191), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12191), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_82(address_space: &mut AddressSpace) { @@ -1018,10 +1932,21 @@ fn add_object_82(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15098); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 304), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 304), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_83(address_space: &mut AddressSpace) { @@ -1029,10 +1954,21 @@ fn add_object_83(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15099); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 312), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 312), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_84(address_space: &mut AddressSpace) { @@ -1040,10 +1976,21 @@ fn add_object_84(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15100); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 426), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 426), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_85(address_space: &mut AddressSpace) { @@ -1051,10 +1998,21 @@ fn add_object_85(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15101); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 429), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 429), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_86(address_space: &mut AddressSpace) { @@ -1062,10 +2020,21 @@ fn add_object_86(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15102); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 432), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 432), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_87(address_space: &mut AddressSpace) { @@ -1073,10 +2042,21 @@ fn add_object_87(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15103); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 435), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 435), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_88(address_space: &mut AddressSpace) { @@ -1084,10 +2064,21 @@ fn add_object_88(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15104); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 438), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 438), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_89(address_space: &mut AddressSpace) { @@ -1095,10 +2086,21 @@ fn add_object_89(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15105); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12890), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12890), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_90(address_space: &mut AddressSpace) { @@ -1106,10 +2108,21 @@ fn add_object_90(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15106); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12891), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12891), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_91(address_space: &mut AddressSpace) { @@ -1117,10 +2130,21 @@ fn add_object_91(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15107); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12193), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12193), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_92(address_space: &mut AddressSpace) { @@ -1128,10 +2152,21 @@ fn add_object_92(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15130); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12194), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12194), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_93(address_space: &mut AddressSpace) { @@ -1139,10 +2174,21 @@ fn add_object_93(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15131); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 441), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 441), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_94(address_space: &mut AddressSpace) { @@ -1150,10 +2196,21 @@ fn add_object_94(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15132); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 444), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 444), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_95(address_space: &mut AddressSpace) { @@ -1161,10 +2218,21 @@ fn add_object_95(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15133); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 447), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 447), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_96(address_space: &mut AddressSpace) { @@ -1172,10 +2240,21 @@ fn add_object_96(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15134); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 450), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 450), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_97(address_space: &mut AddressSpace) { @@ -1183,10 +2262,21 @@ fn add_object_97(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15135); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 453), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 453), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_98(address_space: &mut AddressSpace) { @@ -1194,10 +2284,21 @@ fn add_object_98(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15136); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 344), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 344), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_99(address_space: &mut AddressSpace) { @@ -1205,10 +2306,21 @@ fn add_object_99(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15137); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 456), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 456), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_100(address_space: &mut AddressSpace) { @@ -1216,9 +2328,19 @@ fn add_object_100(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15138); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 459), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 459), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } - diff --git a/server/src/address_space/generated/nodeset_4_5.rs b/server/src/address_space/generated/nodeset_4_5.rs index b4448efc2..91edcd007 100644 --- a/server/src/address_space/generated/nodeset_4_5.rs +++ b/server/src/address_space/generated/nodeset_4_5.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.NodeSet2.Part4.xml by tools/schema/gen_address_space.js // DO NOT EDIT THIS FILE @@ -9,8 +9,11 @@ use std::{convert::TryFrom, str::FromStr}; #[allow(unused_imports)] use crate::{ - address_space::{EventNotifier, types::*}, - prelude::{DataTypeId, ExtensionObject, LocalizedText, NodeId, ReferenceTypeId, service_types::Argument, UAString, Variant, VariantTypeId} + address_space::{types::*, EventNotifier}, + prelude::{ + service_types::Argument, DataTypeId, ExtensionObject, LocalizedText, NodeId, + ReferenceTypeId, UAString, Variant, VariantTypeId, + }, }; #[allow(unused_variables)] @@ -122,10 +125,21 @@ fn add_object_1(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15139); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 462), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 462), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_2(address_space: &mut AddressSpace) { @@ -133,10 +147,21 @@ fn add_object_2(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15140); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 316), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 316), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_3(address_space: &mut AddressSpace) { @@ -144,10 +169,21 @@ fn add_object_3(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15141); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 319), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 319), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_4(address_space: &mut AddressSpace) { @@ -155,10 +191,21 @@ fn add_object_4(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15142); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 322), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 322), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_5(address_space: &mut AddressSpace) { @@ -166,10 +213,21 @@ fn add_object_5(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15143); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 325), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 325), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_6(address_space: &mut AddressSpace) { @@ -177,10 +235,21 @@ fn add_object_6(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15144); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 938), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 938), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_7(address_space: &mut AddressSpace) { @@ -188,10 +257,21 @@ fn add_object_7(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15145); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 465), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 465), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_8(address_space: &mut AddressSpace) { @@ -199,10 +279,21 @@ fn add_object_8(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15146); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 468), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 468), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_9(address_space: &mut AddressSpace) { @@ -210,10 +301,21 @@ fn add_object_9(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15147); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 471), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 471), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_10(address_space: &mut AddressSpace) { @@ -221,10 +323,21 @@ fn add_object_10(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15148); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 474), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 474), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_11(address_space: &mut AddressSpace) { @@ -232,10 +345,21 @@ fn add_object_11(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15149); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 477), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 477), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_12(address_space: &mut AddressSpace) { @@ -243,10 +367,21 @@ fn add_object_12(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15150); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 480), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 480), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_13(address_space: &mut AddressSpace) { @@ -254,10 +389,21 @@ fn add_object_13(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15151); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 349), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 349), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_14(address_space: &mut AddressSpace) { @@ -265,10 +411,21 @@ fn add_object_14(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15152); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 352), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 352), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_15(address_space: &mut AddressSpace) { @@ -276,10 +433,21 @@ fn add_object_15(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15153); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 355), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 355), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_16(address_space: &mut AddressSpace) { @@ -287,10 +455,21 @@ fn add_object_16(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15157); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 358), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 358), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_17(address_space: &mut AddressSpace) { @@ -298,10 +477,21 @@ fn add_object_17(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15158); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 361), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 361), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_18(address_space: &mut AddressSpace) { @@ -309,10 +499,21 @@ fn add_object_18(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15159); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 364), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 364), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_19(address_space: &mut AddressSpace) { @@ -320,10 +521,21 @@ fn add_object_19(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15160); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 367), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 367), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_20(address_space: &mut AddressSpace) { @@ -331,10 +543,21 @@ fn add_object_20(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15161); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 370), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 370), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_21(address_space: &mut AddressSpace) { @@ -342,10 +565,21 @@ fn add_object_21(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15162); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 373), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 373), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_22(address_space: &mut AddressSpace) { @@ -353,10 +587,21 @@ fn add_object_22(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15163); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17606), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17606), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_23(address_space: &mut AddressSpace) { @@ -364,10 +609,21 @@ fn add_object_23(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15164); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17607), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17607), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_24(address_space: &mut AddressSpace) { @@ -375,10 +631,21 @@ fn add_object_24(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15165); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 376), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 376), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_25(address_space: &mut AddressSpace) { @@ -386,10 +653,21 @@ fn add_object_25(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15166); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 483), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 483), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_26(address_space: &mut AddressSpace) { @@ -397,10 +675,21 @@ fn add_object_26(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15167); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 486), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 486), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_27(address_space: &mut AddressSpace) { @@ -408,10 +697,21 @@ fn add_object_27(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15168); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 489), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 489), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_28(address_space: &mut AddressSpace) { @@ -419,10 +719,21 @@ fn add_object_28(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15169); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 379), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 379), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_29(address_space: &mut AddressSpace) { @@ -430,10 +741,21 @@ fn add_object_29(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15170); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 492), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 492), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_30(address_space: &mut AddressSpace) { @@ -441,10 +763,21 @@ fn add_object_30(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15171); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 495), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 495), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_31(address_space: &mut AddressSpace) { @@ -452,10 +785,21 @@ fn add_object_31(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15172); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 382), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 382), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_32(address_space: &mut AddressSpace) { @@ -463,10 +807,21 @@ fn add_object_32(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15173); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 498), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 498), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_33(address_space: &mut AddressSpace) { @@ -474,10 +829,21 @@ fn add_object_33(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15174); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 501), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 501), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_34(address_space: &mut AddressSpace) { @@ -485,10 +851,21 @@ fn add_object_34(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15175); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 385), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 385), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_35(address_space: &mut AddressSpace) { @@ -496,10 +873,21 @@ fn add_object_35(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15176); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 504), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 504), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_36(address_space: &mut AddressSpace) { @@ -507,10 +895,21 @@ fn add_object_36(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15177); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 507), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 507), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_37(address_space: &mut AddressSpace) { @@ -518,10 +917,21 @@ fn add_object_37(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15179); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 511), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 511), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_38(address_space: &mut AddressSpace) { @@ -529,10 +939,21 @@ fn add_object_38(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15180); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 514), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 514), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_39(address_space: &mut AddressSpace) { @@ -540,10 +961,21 @@ fn add_object_39(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15182); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 518), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 518), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_40(address_space: &mut AddressSpace) { @@ -551,10 +983,21 @@ fn add_object_40(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15183); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 522), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 522), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_41(address_space: &mut AddressSpace) { @@ -562,10 +1005,21 @@ fn add_object_41(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15184); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 525), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 525), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_42(address_space: &mut AddressSpace) { @@ -573,10 +1027,21 @@ fn add_object_42(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15185); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 528), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 528), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_43(address_space: &mut AddressSpace) { @@ -584,10 +1049,21 @@ fn add_object_43(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15186); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 531), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 531), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_44(address_space: &mut AddressSpace) { @@ -595,10 +1071,21 @@ fn add_object_44(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15187); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 534), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 534), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_45(address_space: &mut AddressSpace) { @@ -606,10 +1093,21 @@ fn add_object_45(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15188); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 537), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 537), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_46(address_space: &mut AddressSpace) { @@ -617,10 +1115,21 @@ fn add_object_46(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15189); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 540), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 540), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_47(address_space: &mut AddressSpace) { @@ -628,10 +1137,21 @@ fn add_object_47(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15190); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 543), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 543), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_48(address_space: &mut AddressSpace) { @@ -639,10 +1159,21 @@ fn add_object_48(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15191); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 546), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 546), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_49(address_space: &mut AddressSpace) { @@ -650,10 +1181,21 @@ fn add_object_49(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15192); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 549), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 549), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_50(address_space: &mut AddressSpace) { @@ -661,10 +1203,21 @@ fn add_object_50(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15193); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 552), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 552), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_51(address_space: &mut AddressSpace) { @@ -672,10 +1225,21 @@ fn add_object_51(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15194); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 555), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 555), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_52(address_space: &mut AddressSpace) { @@ -683,10 +1247,21 @@ fn add_object_52(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15195); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 558), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 558), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_53(address_space: &mut AddressSpace) { @@ -694,10 +1269,21 @@ fn add_object_53(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15196); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 561), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 561), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_54(address_space: &mut AddressSpace) { @@ -705,10 +1291,21 @@ fn add_object_54(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15197); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 564), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 564), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_55(address_space: &mut AddressSpace) { @@ -716,10 +1313,21 @@ fn add_object_55(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15198); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 567), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 567), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_56(address_space: &mut AddressSpace) { @@ -727,10 +1335,21 @@ fn add_object_56(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15199); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 331), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 331), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_57(address_space: &mut AddressSpace) { @@ -738,10 +1357,21 @@ fn add_object_57(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15200); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 570), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 570), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_58(address_space: &mut AddressSpace) { @@ -749,10 +1379,21 @@ fn add_object_58(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15201); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 573), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 573), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_59(address_space: &mut AddressSpace) { @@ -760,10 +1401,21 @@ fn add_object_59(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15202); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 577), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 577), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_60(address_space: &mut AddressSpace) { @@ -771,10 +1423,21 @@ fn add_object_60(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15203); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 580), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 580), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_61(address_space: &mut AddressSpace) { @@ -782,10 +1445,21 @@ fn add_object_61(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15204); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 583), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 583), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_62(address_space: &mut AddressSpace) { @@ -793,10 +1467,21 @@ fn add_object_62(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15205); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 586), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 586), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_63(address_space: &mut AddressSpace) { @@ -804,10 +1489,21 @@ fn add_object_63(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15206); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 589), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 589), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_64(address_space: &mut AddressSpace) { @@ -815,10 +1511,21 @@ fn add_object_64(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15207); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 592), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 592), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_65(address_space: &mut AddressSpace) { @@ -826,10 +1533,21 @@ fn add_object_65(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15208); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 595), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 595), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_66(address_space: &mut AddressSpace) { @@ -837,10 +1555,21 @@ fn add_object_66(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15209); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 598), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 598), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_67(address_space: &mut AddressSpace) { @@ -848,10 +1577,21 @@ fn add_object_67(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15210); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 601), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 601), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_68(address_space: &mut AddressSpace) { @@ -859,10 +1599,21 @@ fn add_object_68(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15211); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 604), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 604), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_69(address_space: &mut AddressSpace) { @@ -870,10 +1621,21 @@ fn add_object_69(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15228); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 607), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 607), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_70(address_space: &mut AddressSpace) { @@ -881,10 +1643,21 @@ fn add_object_70(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15236); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 610), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 610), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_71(address_space: &mut AddressSpace) { @@ -892,10 +1665,21 @@ fn add_object_71(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15244); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 613), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 613), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_72(address_space: &mut AddressSpace) { @@ -903,10 +1687,21 @@ fn add_object_72(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15252); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 616), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 616), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_73(address_space: &mut AddressSpace) { @@ -914,10 +1709,21 @@ fn add_object_73(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15254); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 619), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 619), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_74(address_space: &mut AddressSpace) { @@ -925,10 +1731,21 @@ fn add_object_74(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15255); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 622), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 622), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_75(address_space: &mut AddressSpace) { @@ -936,10 +1753,21 @@ fn add_object_75(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15256); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 626), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 626), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_76(address_space: &mut AddressSpace) { @@ -947,10 +1775,21 @@ fn add_object_76(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15257); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 629), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 629), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_77(address_space: &mut AddressSpace) { @@ -958,10 +1797,21 @@ fn add_object_77(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15258); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 632), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 632), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_78(address_space: &mut AddressSpace) { @@ -969,10 +1819,21 @@ fn add_object_78(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15259); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 635), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 635), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_79(address_space: &mut AddressSpace) { @@ -980,10 +1841,21 @@ fn add_object_79(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15260); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 638), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 638), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_80(address_space: &mut AddressSpace) { @@ -991,10 +1863,21 @@ fn add_object_80(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15261); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 641), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 641), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_81(address_space: &mut AddressSpace) { @@ -1002,10 +1885,21 @@ fn add_object_81(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15262); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 644), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 644), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_82(address_space: &mut AddressSpace) { @@ -1013,10 +1907,21 @@ fn add_object_82(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15263); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 647), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 647), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_83(address_space: &mut AddressSpace) { @@ -1024,10 +1929,21 @@ fn add_object_83(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15264); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 650), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 650), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_84(address_space: &mut AddressSpace) { @@ -1035,10 +1951,21 @@ fn add_object_84(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15269); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 653), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 653), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_85(address_space: &mut AddressSpace) { @@ -1046,10 +1973,21 @@ fn add_object_85(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 23512); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 23497), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 23497), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_86(address_space: &mut AddressSpace) { @@ -1057,10 +1995,21 @@ fn add_object_86(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15270); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 656), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 656), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_87(address_space: &mut AddressSpace) { @@ -1068,10 +2017,21 @@ fn add_object_87(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15271); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11216), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11216), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_88(address_space: &mut AddressSpace) { @@ -1079,10 +2039,21 @@ fn add_object_88(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15272); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11217), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11217), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_89(address_space: &mut AddressSpace) { @@ -1090,10 +2061,21 @@ fn add_object_89(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15273); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 659), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 659), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_90(address_space: &mut AddressSpace) { @@ -1101,10 +2083,21 @@ fn add_object_90(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15274); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 662), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 662), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_91(address_space: &mut AddressSpace) { @@ -1112,10 +2105,21 @@ fn add_object_91(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15275); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 665), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 665), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_92(address_space: &mut AddressSpace) { @@ -1123,10 +2127,21 @@ fn add_object_92(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15276); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 668), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 668), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_93(address_space: &mut AddressSpace) { @@ -1134,10 +2149,21 @@ fn add_object_93(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15277); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 671), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 671), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_94(address_space: &mut AddressSpace) { @@ -1145,10 +2171,21 @@ fn add_object_94(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15278); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 674), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 674), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_95(address_space: &mut AddressSpace) { @@ -1156,10 +2193,21 @@ fn add_object_95(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15279); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 677), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 677), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_96(address_space: &mut AddressSpace) { @@ -1167,10 +2215,21 @@ fn add_object_96(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15280); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 680), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 680), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_97(address_space: &mut AddressSpace) { @@ -1178,10 +2237,21 @@ fn add_object_97(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15281); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11295), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11295), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_98(address_space: &mut AddressSpace) { @@ -1189,10 +2259,21 @@ fn add_object_98(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15282); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 683), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 683), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_99(address_space: &mut AddressSpace) { @@ -1200,10 +2281,21 @@ fn add_object_99(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15283); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 686), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 686), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_100(address_space: &mut AddressSpace) { @@ -1211,9 +2303,19 @@ fn add_object_100(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15284); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 689), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 689), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } - diff --git a/server/src/address_space/generated/nodeset_4_6.rs b/server/src/address_space/generated/nodeset_4_6.rs index b34e8283c..c2e8521ed 100644 --- a/server/src/address_space/generated/nodeset_4_6.rs +++ b/server/src/address_space/generated/nodeset_4_6.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.NodeSet2.Part4.xml by tools/schema/gen_address_space.js // DO NOT EDIT THIS FILE @@ -9,8 +9,11 @@ use std::{convert::TryFrom, str::FromStr}; #[allow(unused_imports)] use crate::{ - address_space::{EventNotifier, types::*}, - prelude::{DataTypeId, ExtensionObject, LocalizedText, NodeId, ReferenceTypeId, service_types::Argument, UAString, Variant, VariantTypeId} + address_space::{types::*, EventNotifier}, + prelude::{ + service_types::Argument, DataTypeId, ExtensionObject, LocalizedText, NodeId, + ReferenceTypeId, UAString, Variant, VariantTypeId, + }, }; #[allow(unused_variables)] @@ -122,10 +125,21 @@ fn add_object_1(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15285); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 692), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 692), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_2(address_space: &mut AddressSpace) { @@ -133,10 +147,21 @@ fn add_object_2(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15286); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 695), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 695), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_3(address_space: &mut AddressSpace) { @@ -144,10 +169,21 @@ fn add_object_3(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15287); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 698), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 698), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_4(address_space: &mut AddressSpace) { @@ -155,10 +191,21 @@ fn add_object_4(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15288); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 701), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 701), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_5(address_space: &mut AddressSpace) { @@ -166,10 +213,21 @@ fn add_object_5(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15289); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 704), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 704), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_6(address_space: &mut AddressSpace) { @@ -177,10 +235,21 @@ fn add_object_6(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15290); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 707), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 707), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_7(address_space: &mut AddressSpace) { @@ -188,10 +257,21 @@ fn add_object_7(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15291); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 710), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 710), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_8(address_space: &mut AddressSpace) { @@ -199,10 +279,21 @@ fn add_object_8(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15292); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 713), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 713), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_9(address_space: &mut AddressSpace) { @@ -210,10 +301,21 @@ fn add_object_9(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15293); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 719), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 719), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_10(address_space: &mut AddressSpace) { @@ -221,10 +323,21 @@ fn add_object_10(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15294); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 722), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 722), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_11(address_space: &mut AddressSpace) { @@ -232,10 +345,21 @@ fn add_object_11(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15295); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 725), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 725), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_12(address_space: &mut AddressSpace) { @@ -243,10 +367,21 @@ fn add_object_12(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15304); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 948), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 948), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_13(address_space: &mut AddressSpace) { @@ -254,10 +389,21 @@ fn add_object_13(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15312); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 728), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 728), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_14(address_space: &mut AddressSpace) { @@ -265,10 +411,21 @@ fn add_object_14(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15313); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 731), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 731), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_15(address_space: &mut AddressSpace) { @@ -276,10 +433,21 @@ fn add_object_15(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15314); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 734), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 734), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_16(address_space: &mut AddressSpace) { @@ -287,10 +455,21 @@ fn add_object_16(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15315); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 737), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 737), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_17(address_space: &mut AddressSpace) { @@ -298,10 +477,21 @@ fn add_object_17(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15320); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 740), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 740), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_18(address_space: &mut AddressSpace) { @@ -309,10 +499,21 @@ fn add_object_18(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15321); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 743), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 743), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_19(address_space: &mut AddressSpace) { @@ -320,10 +521,21 @@ fn add_object_19(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15322); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 746), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 746), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_20(address_space: &mut AddressSpace) { @@ -331,10 +543,21 @@ fn add_object_20(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15323); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 749), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 749), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_21(address_space: &mut AddressSpace) { @@ -342,10 +565,21 @@ fn add_object_21(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15324); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 752), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 752), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_22(address_space: &mut AddressSpace) { @@ -353,10 +587,21 @@ fn add_object_22(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15325); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 755), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 755), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_23(address_space: &mut AddressSpace) { @@ -364,10 +609,21 @@ fn add_object_23(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15326); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 758), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 758), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_24(address_space: &mut AddressSpace) { @@ -375,10 +631,21 @@ fn add_object_24(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15327); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 761), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 761), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_25(address_space: &mut AddressSpace) { @@ -386,10 +653,21 @@ fn add_object_25(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15328); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 764), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 764), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_26(address_space: &mut AddressSpace) { @@ -397,10 +675,21 @@ fn add_object_26(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15329); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 767), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 767), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_27(address_space: &mut AddressSpace) { @@ -408,10 +697,21 @@ fn add_object_27(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15331); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 770), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 770), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_28(address_space: &mut AddressSpace) { @@ -419,10 +719,21 @@ fn add_object_28(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15332); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 773), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 773), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_29(address_space: &mut AddressSpace) { @@ -430,10 +741,21 @@ fn add_object_29(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15333); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 776), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 776), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_30(address_space: &mut AddressSpace) { @@ -441,10 +763,21 @@ fn add_object_30(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15335); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 779), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 779), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_31(address_space: &mut AddressSpace) { @@ -452,10 +785,21 @@ fn add_object_31(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15336); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 782), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 782), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_32(address_space: &mut AddressSpace) { @@ -463,10 +807,21 @@ fn add_object_32(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15337); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 785), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 785), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_33(address_space: &mut AddressSpace) { @@ -474,10 +829,21 @@ fn add_object_33(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15338); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 788), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 788), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_34(address_space: &mut AddressSpace) { @@ -485,10 +851,21 @@ fn add_object_34(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15339); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 791), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 791), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_35(address_space: &mut AddressSpace) { @@ -496,10 +873,21 @@ fn add_object_35(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15340); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 794), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 794), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_36(address_space: &mut AddressSpace) { @@ -507,10 +895,21 @@ fn add_object_36(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15341); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 797), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 797), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_37(address_space: &mut AddressSpace) { @@ -518,10 +917,21 @@ fn add_object_37(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15342); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 800), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 800), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_38(address_space: &mut AddressSpace) { @@ -529,10 +939,21 @@ fn add_object_38(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15343); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 803), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 803), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_39(address_space: &mut AddressSpace) { @@ -540,10 +961,21 @@ fn add_object_39(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15344); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 945), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 945), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_40(address_space: &mut AddressSpace) { @@ -551,10 +983,21 @@ fn add_object_40(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15345); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 809), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 809), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_41(address_space: &mut AddressSpace) { @@ -562,10 +1005,21 @@ fn add_object_41(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15346); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 806), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 806), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_42(address_space: &mut AddressSpace) { @@ -573,10 +1027,21 @@ fn add_object_42(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15347); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 914), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 914), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_43(address_space: &mut AddressSpace) { @@ -584,10 +1049,21 @@ fn add_object_43(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15348); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 917), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 917), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_44(address_space: &mut AddressSpace) { @@ -595,10 +1071,21 @@ fn add_object_44(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15349); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 920), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 920), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_45(address_space: &mut AddressSpace) { @@ -606,10 +1093,21 @@ fn add_object_45(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15350); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 818), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 818), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_46(address_space: &mut AddressSpace) { @@ -617,10 +1115,21 @@ fn add_object_46(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15351); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 821), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 821), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_47(address_space: &mut AddressSpace) { @@ -628,10 +1137,21 @@ fn add_object_47(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15352); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 824), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 824), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_48(address_space: &mut AddressSpace) { @@ -639,10 +1159,21 @@ fn add_object_48(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15353); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 827), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 827), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_49(address_space: &mut AddressSpace) { @@ -650,10 +1181,21 @@ fn add_object_49(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15354); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 830), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 830), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_50(address_space: &mut AddressSpace) { @@ -661,10 +1203,21 @@ fn add_object_50(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15355); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 833), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 833), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_51(address_space: &mut AddressSpace) { @@ -672,10 +1225,21 @@ fn add_object_51(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15356); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 836), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 836), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_52(address_space: &mut AddressSpace) { @@ -683,10 +1247,21 @@ fn add_object_52(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15357); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 839), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 839), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_53(address_space: &mut AddressSpace) { @@ -694,10 +1269,21 @@ fn add_object_53(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15358); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 842), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 842), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_54(address_space: &mut AddressSpace) { @@ -705,10 +1291,21 @@ fn add_object_54(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15359); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 845), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 845), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_55(address_space: &mut AddressSpace) { @@ -716,10 +1313,21 @@ fn add_object_55(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15360); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 848), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 848), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_datatype_56(address_space: &mut AddressSpace) { @@ -727,9 +1335,14 @@ fn add_datatype_56(address_space: &mut AddressSpace) { let name = "ExpandedNodeId"; let node_id = NodeId::new(0, 18); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 24), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 24), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_57(address_space: &mut AddressSpace) { @@ -737,9 +1350,14 @@ fn add_datatype_57(address_space: &mut AddressSpace) { let name = "StatusCode"; let node_id = NodeId::new(0, 19); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 24), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 24), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_58(address_space: &mut AddressSpace) { @@ -747,9 +1365,14 @@ fn add_datatype_58(address_space: &mut AddressSpace) { let name = "DataValue"; let node_id = NodeId::new(0, 23); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 24), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 24), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_59(address_space: &mut AddressSpace) { @@ -757,9 +1380,14 @@ fn add_datatype_59(address_space: &mut AddressSpace) { let name = "DiagnosticInfo"; let node_id = NodeId::new(0, 25); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 24), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 24), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_60(address_space: &mut AddressSpace) { @@ -767,9 +1395,14 @@ fn add_datatype_60(address_space: &mut AddressSpace) { let name = "Index"; let node_id = NodeId::new(0, 17588); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 7), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 7), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_61(address_space: &mut AddressSpace) { @@ -777,9 +1410,14 @@ fn add_datatype_61(address_space: &mut AddressSpace) { let name = "IntegerId"; let node_id = NodeId::new(0, 288); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 7), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 7), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_62(address_space: &mut AddressSpace) { @@ -787,10 +1425,21 @@ fn add_datatype_62(address_space: &mut AddressSpace) { let name = "ApplicationType"; let node_id = NodeId::new(0, 307); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 7597), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 29), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 7597), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 29), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_datatype_63(address_space: &mut AddressSpace) { @@ -798,9 +1447,14 @@ fn add_datatype_63(address_space: &mut AddressSpace) { let name = "ApplicationDescription"; let node_id = NodeId::new(0, 308); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_64(address_space: &mut AddressSpace) { @@ -808,9 +1462,14 @@ fn add_datatype_64(address_space: &mut AddressSpace) { let name = "RequestHeader"; let node_id = NodeId::new(0, 389); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_65(address_space: &mut AddressSpace) { @@ -818,9 +1477,14 @@ fn add_datatype_65(address_space: &mut AddressSpace) { let name = "ResponseHeader"; let node_id = NodeId::new(0, 392); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_66(address_space: &mut AddressSpace) { @@ -828,9 +1492,14 @@ fn add_datatype_66(address_space: &mut AddressSpace) { let name = "VersionTime"; let node_id = NodeId::new(0, 20998); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 7), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 7), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_67(address_space: &mut AddressSpace) { @@ -838,9 +1507,14 @@ fn add_datatype_67(address_space: &mut AddressSpace) { let name = "ServiceFault"; let node_id = NodeId::new(0, 395); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_68(address_space: &mut AddressSpace) { @@ -848,9 +1522,14 @@ fn add_datatype_68(address_space: &mut AddressSpace) { let name = "SessionlessInvokeRequestType"; let node_id = NodeId::new(0, 15901); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_69(address_space: &mut AddressSpace) { @@ -858,9 +1537,14 @@ fn add_datatype_69(address_space: &mut AddressSpace) { let name = "SessionlessInvokeResponseType"; let node_id = NodeId::new(0, 20999); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_70(address_space: &mut AddressSpace) { @@ -868,9 +1552,14 @@ fn add_datatype_70(address_space: &mut AddressSpace) { let name = "FindServersRequest"; let node_id = NodeId::new(0, 420); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_71(address_space: &mut AddressSpace) { @@ -878,9 +1567,14 @@ fn add_datatype_71(address_space: &mut AddressSpace) { let name = "FindServersResponse"; let node_id = NodeId::new(0, 423); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_72(address_space: &mut AddressSpace) { @@ -888,9 +1582,14 @@ fn add_datatype_72(address_space: &mut AddressSpace) { let name = "ServerOnNetwork"; let node_id = NodeId::new(0, 12189); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_73(address_space: &mut AddressSpace) { @@ -898,9 +1597,14 @@ fn add_datatype_73(address_space: &mut AddressSpace) { let name = "FindServersOnNetworkRequest"; let node_id = NodeId::new(0, 12190); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_74(address_space: &mut AddressSpace) { @@ -908,9 +1612,14 @@ fn add_datatype_74(address_space: &mut AddressSpace) { let name = "FindServersOnNetworkResponse"; let node_id = NodeId::new(0, 12191); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_75(address_space: &mut AddressSpace) { @@ -918,9 +1627,14 @@ fn add_datatype_75(address_space: &mut AddressSpace) { let name = "ApplicationInstanceCertificate"; let node_id = NodeId::new(0, 311); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 15), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_76(address_space: &mut AddressSpace) { @@ -928,10 +1642,21 @@ fn add_datatype_76(address_space: &mut AddressSpace) { let name = "MessageSecurityMode"; let node_id = NodeId::new(0, 302); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 7595), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 29), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 7595), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 29), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_datatype_77(address_space: &mut AddressSpace) { @@ -939,10 +1664,21 @@ fn add_datatype_77(address_space: &mut AddressSpace) { let name = "UserTokenType"; let node_id = NodeId::new(0, 303); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 7596), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 29), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 7596), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 29), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_datatype_78(address_space: &mut AddressSpace) { @@ -950,9 +1686,14 @@ fn add_datatype_78(address_space: &mut AddressSpace) { let name = "UserTokenPolicy"; let node_id = NodeId::new(0, 304); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_79(address_space: &mut AddressSpace) { @@ -960,9 +1701,14 @@ fn add_datatype_79(address_space: &mut AddressSpace) { let name = "EndpointDescription"; let node_id = NodeId::new(0, 312); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_80(address_space: &mut AddressSpace) { @@ -970,9 +1716,14 @@ fn add_datatype_80(address_space: &mut AddressSpace) { let name = "GetEndpointsRequest"; let node_id = NodeId::new(0, 426); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_81(address_space: &mut AddressSpace) { @@ -980,9 +1731,14 @@ fn add_datatype_81(address_space: &mut AddressSpace) { let name = "GetEndpointsResponse"; let node_id = NodeId::new(0, 429); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_82(address_space: &mut AddressSpace) { @@ -990,9 +1746,14 @@ fn add_datatype_82(address_space: &mut AddressSpace) { let name = "RegisteredServer"; let node_id = NodeId::new(0, 432); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_83(address_space: &mut AddressSpace) { @@ -1000,9 +1761,14 @@ fn add_datatype_83(address_space: &mut AddressSpace) { let name = "RegisterServerRequest"; let node_id = NodeId::new(0, 435); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_84(address_space: &mut AddressSpace) { @@ -1010,9 +1776,14 @@ fn add_datatype_84(address_space: &mut AddressSpace) { let name = "RegisterServerResponse"; let node_id = NodeId::new(0, 438); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_85(address_space: &mut AddressSpace) { @@ -1020,9 +1791,14 @@ fn add_datatype_85(address_space: &mut AddressSpace) { let name = "DiscoveryConfiguration"; let node_id = NodeId::new(0, 12890); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_86(address_space: &mut AddressSpace) { @@ -1030,9 +1806,14 @@ fn add_datatype_86(address_space: &mut AddressSpace) { let name = "MdnsDiscoveryConfiguration"; let node_id = NodeId::new(0, 12891); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12890), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 12890), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_87(address_space: &mut AddressSpace) { @@ -1040,9 +1821,14 @@ fn add_datatype_87(address_space: &mut AddressSpace) { let name = "RegisterServer2Request"; let node_id = NodeId::new(0, 12193); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_88(address_space: &mut AddressSpace) { @@ -1050,9 +1836,14 @@ fn add_datatype_88(address_space: &mut AddressSpace) { let name = "RegisterServer2Response"; let node_id = NodeId::new(0, 12194); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_89(address_space: &mut AddressSpace) { @@ -1060,10 +1851,21 @@ fn add_datatype_89(address_space: &mut AddressSpace) { let name = "SecurityTokenRequestType"; let node_id = NodeId::new(0, 315); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 7598), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 29), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 7598), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 29), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_datatype_90(address_space: &mut AddressSpace) { @@ -1071,9 +1873,14 @@ fn add_datatype_90(address_space: &mut AddressSpace) { let name = "ChannelSecurityToken"; let node_id = NodeId::new(0, 441); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_91(address_space: &mut AddressSpace) { @@ -1081,9 +1888,14 @@ fn add_datatype_91(address_space: &mut AddressSpace) { let name = "OpenSecureChannelRequest"; let node_id = NodeId::new(0, 444); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_92(address_space: &mut AddressSpace) { @@ -1091,9 +1903,14 @@ fn add_datatype_92(address_space: &mut AddressSpace) { let name = "OpenSecureChannelResponse"; let node_id = NodeId::new(0, 447); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_93(address_space: &mut AddressSpace) { @@ -1101,9 +1918,14 @@ fn add_datatype_93(address_space: &mut AddressSpace) { let name = "CloseSecureChannelRequest"; let node_id = NodeId::new(0, 450); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_94(address_space: &mut AddressSpace) { @@ -1111,9 +1933,14 @@ fn add_datatype_94(address_space: &mut AddressSpace) { let name = "CloseSecureChannelResponse"; let node_id = NodeId::new(0, 453); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_95(address_space: &mut AddressSpace) { @@ -1121,9 +1948,14 @@ fn add_datatype_95(address_space: &mut AddressSpace) { let name = "SignedSoftwareCertificate"; let node_id = NodeId::new(0, 344); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_96(address_space: &mut AddressSpace) { @@ -1131,9 +1963,14 @@ fn add_datatype_96(address_space: &mut AddressSpace) { let name = "SessionAuthenticationToken"; let node_id = NodeId::new(0, 388); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 17), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_97(address_space: &mut AddressSpace) { @@ -1141,9 +1978,14 @@ fn add_datatype_97(address_space: &mut AddressSpace) { let name = "SignatureData"; let node_id = NodeId::new(0, 456); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_98(address_space: &mut AddressSpace) { @@ -1151,9 +1993,14 @@ fn add_datatype_98(address_space: &mut AddressSpace) { let name = "CreateSessionRequest"; let node_id = NodeId::new(0, 459); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_99(address_space: &mut AddressSpace) { @@ -1161,9 +2008,14 @@ fn add_datatype_99(address_space: &mut AddressSpace) { let name = "CreateSessionResponse"; let node_id = NodeId::new(0, 462); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_100(address_space: &mut AddressSpace) { @@ -1171,8 +2023,12 @@ fn add_datatype_100(address_space: &mut AddressSpace) { let name = "UserIdentityToken"; let node_id = NodeId::new(0, 316); let node = DataType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } - diff --git a/server/src/address_space/generated/nodeset_4_7.rs b/server/src/address_space/generated/nodeset_4_7.rs index b98d80108..5cd1c23d2 100644 --- a/server/src/address_space/generated/nodeset_4_7.rs +++ b/server/src/address_space/generated/nodeset_4_7.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.NodeSet2.Part4.xml by tools/schema/gen_address_space.js // DO NOT EDIT THIS FILE @@ -9,8 +9,11 @@ use std::{convert::TryFrom, str::FromStr}; #[allow(unused_imports)] use crate::{ - address_space::{EventNotifier, types::*}, - prelude::{DataTypeId, ExtensionObject, LocalizedText, NodeId, ReferenceTypeId, service_types::Argument, UAString, Variant, VariantTypeId} + address_space::{types::*, EventNotifier}, + prelude::{ + service_types::Argument, DataTypeId, ExtensionObject, LocalizedText, NodeId, + ReferenceTypeId, UAString, Variant, VariantTypeId, + }, }; #[allow(unused_variables)] @@ -122,9 +125,14 @@ fn add_datatype_1(address_space: &mut AddressSpace) { let name = "AnonymousIdentityToken"; let node_id = NodeId::new(0, 319); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 316), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 316), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_2(address_space: &mut AddressSpace) { @@ -132,9 +140,14 @@ fn add_datatype_2(address_space: &mut AddressSpace) { let name = "UserNameIdentityToken"; let node_id = NodeId::new(0, 322); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 316), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 316), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_3(address_space: &mut AddressSpace) { @@ -142,9 +155,14 @@ fn add_datatype_3(address_space: &mut AddressSpace) { let name = "X509IdentityToken"; let node_id = NodeId::new(0, 325); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 316), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 316), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_4(address_space: &mut AddressSpace) { @@ -152,9 +170,14 @@ fn add_datatype_4(address_space: &mut AddressSpace) { let name = "IssuedIdentityToken"; let node_id = NodeId::new(0, 938); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 316), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 316), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_5(address_space: &mut AddressSpace) { @@ -162,9 +185,14 @@ fn add_datatype_5(address_space: &mut AddressSpace) { let name = "RsaEncryptedSecret"; let node_id = NodeId::new(0, 17545); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 24), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 24), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_6(address_space: &mut AddressSpace) { @@ -172,9 +200,14 @@ fn add_datatype_6(address_space: &mut AddressSpace) { let name = "EccEncryptedSecret"; let node_id = NodeId::new(0, 17546); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 24), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 24), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_7(address_space: &mut AddressSpace) { @@ -182,9 +215,14 @@ fn add_datatype_7(address_space: &mut AddressSpace) { let name = "ActivateSessionRequest"; let node_id = NodeId::new(0, 465); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_8(address_space: &mut AddressSpace) { @@ -192,9 +230,14 @@ fn add_datatype_8(address_space: &mut AddressSpace) { let name = "ActivateSessionResponse"; let node_id = NodeId::new(0, 468); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_9(address_space: &mut AddressSpace) { @@ -202,9 +245,14 @@ fn add_datatype_9(address_space: &mut AddressSpace) { let name = "CloseSessionRequest"; let node_id = NodeId::new(0, 471); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_10(address_space: &mut AddressSpace) { @@ -212,9 +260,14 @@ fn add_datatype_10(address_space: &mut AddressSpace) { let name = "CloseSessionResponse"; let node_id = NodeId::new(0, 474); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_11(address_space: &mut AddressSpace) { @@ -222,9 +275,14 @@ fn add_datatype_11(address_space: &mut AddressSpace) { let name = "CancelRequest"; let node_id = NodeId::new(0, 477); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_12(address_space: &mut AddressSpace) { @@ -232,9 +290,14 @@ fn add_datatype_12(address_space: &mut AddressSpace) { let name = "CancelResponse"; let node_id = NodeId::new(0, 480); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_13(address_space: &mut AddressSpace) { @@ -242,10 +305,21 @@ fn add_datatype_13(address_space: &mut AddressSpace) { let name = "NodeAttributesMask"; let node_id = NodeId::new(0, 348); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11881), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 29), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11881), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 29), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_datatype_14(address_space: &mut AddressSpace) { @@ -253,9 +327,14 @@ fn add_datatype_14(address_space: &mut AddressSpace) { let name = "NodeAttributes"; let node_id = NodeId::new(0, 349); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_15(address_space: &mut AddressSpace) { @@ -263,9 +342,14 @@ fn add_datatype_15(address_space: &mut AddressSpace) { let name = "ObjectAttributes"; let node_id = NodeId::new(0, 352); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 349), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 349), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_16(address_space: &mut AddressSpace) { @@ -273,9 +357,14 @@ fn add_datatype_16(address_space: &mut AddressSpace) { let name = "VariableAttributes"; let node_id = NodeId::new(0, 355); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 349), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 349), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_17(address_space: &mut AddressSpace) { @@ -283,9 +372,14 @@ fn add_datatype_17(address_space: &mut AddressSpace) { let name = "MethodAttributes"; let node_id = NodeId::new(0, 358); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 349), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 349), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_18(address_space: &mut AddressSpace) { @@ -293,9 +387,14 @@ fn add_datatype_18(address_space: &mut AddressSpace) { let name = "ObjectTypeAttributes"; let node_id = NodeId::new(0, 361); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 349), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 349), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_19(address_space: &mut AddressSpace) { @@ -303,9 +402,14 @@ fn add_datatype_19(address_space: &mut AddressSpace) { let name = "VariableTypeAttributes"; let node_id = NodeId::new(0, 364); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 349), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 349), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_20(address_space: &mut AddressSpace) { @@ -313,9 +417,14 @@ fn add_datatype_20(address_space: &mut AddressSpace) { let name = "ReferenceTypeAttributes"; let node_id = NodeId::new(0, 367); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 349), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 349), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_21(address_space: &mut AddressSpace) { @@ -323,9 +432,14 @@ fn add_datatype_21(address_space: &mut AddressSpace) { let name = "DataTypeAttributes"; let node_id = NodeId::new(0, 370); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 349), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 349), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_22(address_space: &mut AddressSpace) { @@ -333,9 +447,14 @@ fn add_datatype_22(address_space: &mut AddressSpace) { let name = "ViewAttributes"; let node_id = NodeId::new(0, 373); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 349), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 349), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_23(address_space: &mut AddressSpace) { @@ -343,9 +462,14 @@ fn add_datatype_23(address_space: &mut AddressSpace) { let name = "GenericAttributeValue"; let node_id = NodeId::new(0, 17606); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_24(address_space: &mut AddressSpace) { @@ -353,9 +477,14 @@ fn add_datatype_24(address_space: &mut AddressSpace) { let name = "GenericAttributes"; let node_id = NodeId::new(0, 17607); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 349), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 349), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_25(address_space: &mut AddressSpace) { @@ -363,9 +492,14 @@ fn add_datatype_25(address_space: &mut AddressSpace) { let name = "AddNodesItem"; let node_id = NodeId::new(0, 376); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_26(address_space: &mut AddressSpace) { @@ -373,9 +507,14 @@ fn add_datatype_26(address_space: &mut AddressSpace) { let name = "AddNodesResult"; let node_id = NodeId::new(0, 483); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_27(address_space: &mut AddressSpace) { @@ -383,9 +522,14 @@ fn add_datatype_27(address_space: &mut AddressSpace) { let name = "AddNodesRequest"; let node_id = NodeId::new(0, 486); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_28(address_space: &mut AddressSpace) { @@ -393,9 +537,14 @@ fn add_datatype_28(address_space: &mut AddressSpace) { let name = "AddNodesResponse"; let node_id = NodeId::new(0, 489); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_29(address_space: &mut AddressSpace) { @@ -403,9 +552,14 @@ fn add_datatype_29(address_space: &mut AddressSpace) { let name = "AddReferencesItem"; let node_id = NodeId::new(0, 379); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_30(address_space: &mut AddressSpace) { @@ -413,9 +567,14 @@ fn add_datatype_30(address_space: &mut AddressSpace) { let name = "AddReferencesRequest"; let node_id = NodeId::new(0, 492); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_31(address_space: &mut AddressSpace) { @@ -423,9 +582,14 @@ fn add_datatype_31(address_space: &mut AddressSpace) { let name = "AddReferencesResponse"; let node_id = NodeId::new(0, 495); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_32(address_space: &mut AddressSpace) { @@ -433,9 +597,14 @@ fn add_datatype_32(address_space: &mut AddressSpace) { let name = "DeleteNodesItem"; let node_id = NodeId::new(0, 382); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_33(address_space: &mut AddressSpace) { @@ -443,9 +612,14 @@ fn add_datatype_33(address_space: &mut AddressSpace) { let name = "DeleteNodesRequest"; let node_id = NodeId::new(0, 498); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_34(address_space: &mut AddressSpace) { @@ -453,9 +627,14 @@ fn add_datatype_34(address_space: &mut AddressSpace) { let name = "DeleteNodesResponse"; let node_id = NodeId::new(0, 501); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_35(address_space: &mut AddressSpace) { @@ -463,9 +642,14 @@ fn add_datatype_35(address_space: &mut AddressSpace) { let name = "DeleteReferencesItem"; let node_id = NodeId::new(0, 385); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_36(address_space: &mut AddressSpace) { @@ -473,9 +657,14 @@ fn add_datatype_36(address_space: &mut AddressSpace) { let name = "DeleteReferencesRequest"; let node_id = NodeId::new(0, 504); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_37(address_space: &mut AddressSpace) { @@ -483,9 +672,14 @@ fn add_datatype_37(address_space: &mut AddressSpace) { let name = "DeleteReferencesResponse"; let node_id = NodeId::new(0, 507); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_38(address_space: &mut AddressSpace) { @@ -493,10 +687,21 @@ fn add_datatype_38(address_space: &mut AddressSpace) { let name = "AttributeWriteMask"; let node_id = NodeId::new(0, 347); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15036), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 7), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15036), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_datatype_39(address_space: &mut AddressSpace) { @@ -504,10 +709,21 @@ fn add_datatype_39(address_space: &mut AddressSpace) { let name = "BrowseDirection"; let node_id = NodeId::new(0, 510); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 7603), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 29), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 7603), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 29), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_datatype_40(address_space: &mut AddressSpace) { @@ -515,9 +731,14 @@ fn add_datatype_40(address_space: &mut AddressSpace) { let name = "ViewDescription"; let node_id = NodeId::new(0, 511); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_41(address_space: &mut AddressSpace) { @@ -525,9 +746,14 @@ fn add_datatype_41(address_space: &mut AddressSpace) { let name = "BrowseDescription"; let node_id = NodeId::new(0, 514); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_42(address_space: &mut AddressSpace) { @@ -535,10 +761,21 @@ fn add_datatype_42(address_space: &mut AddressSpace) { let name = "BrowseResultMask"; let node_id = NodeId::new(0, 517); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11883), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 29), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11883), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 29), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_datatype_43(address_space: &mut AddressSpace) { @@ -546,9 +783,14 @@ fn add_datatype_43(address_space: &mut AddressSpace) { let name = "ReferenceDescription"; let node_id = NodeId::new(0, 518); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_44(address_space: &mut AddressSpace) { @@ -556,9 +798,14 @@ fn add_datatype_44(address_space: &mut AddressSpace) { let name = "ContinuationPoint"; let node_id = NodeId::new(0, 521); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 15), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_45(address_space: &mut AddressSpace) { @@ -566,9 +813,14 @@ fn add_datatype_45(address_space: &mut AddressSpace) { let name = "BrowseResult"; let node_id = NodeId::new(0, 522); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_46(address_space: &mut AddressSpace) { @@ -576,9 +828,14 @@ fn add_datatype_46(address_space: &mut AddressSpace) { let name = "BrowseRequest"; let node_id = NodeId::new(0, 525); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_47(address_space: &mut AddressSpace) { @@ -586,9 +843,14 @@ fn add_datatype_47(address_space: &mut AddressSpace) { let name = "BrowseResponse"; let node_id = NodeId::new(0, 528); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_48(address_space: &mut AddressSpace) { @@ -596,9 +858,14 @@ fn add_datatype_48(address_space: &mut AddressSpace) { let name = "BrowseNextRequest"; let node_id = NodeId::new(0, 531); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_49(address_space: &mut AddressSpace) { @@ -606,9 +873,14 @@ fn add_datatype_49(address_space: &mut AddressSpace) { let name = "BrowseNextResponse"; let node_id = NodeId::new(0, 534); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_50(address_space: &mut AddressSpace) { @@ -616,9 +888,14 @@ fn add_datatype_50(address_space: &mut AddressSpace) { let name = "RelativePathElement"; let node_id = NodeId::new(0, 537); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_51(address_space: &mut AddressSpace) { @@ -626,9 +903,14 @@ fn add_datatype_51(address_space: &mut AddressSpace) { let name = "RelativePath"; let node_id = NodeId::new(0, 540); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_52(address_space: &mut AddressSpace) { @@ -636,9 +918,14 @@ fn add_datatype_52(address_space: &mut AddressSpace) { let name = "BrowsePath"; let node_id = NodeId::new(0, 543); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_53(address_space: &mut AddressSpace) { @@ -646,9 +933,14 @@ fn add_datatype_53(address_space: &mut AddressSpace) { let name = "BrowsePathTarget"; let node_id = NodeId::new(0, 546); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_54(address_space: &mut AddressSpace) { @@ -656,9 +948,14 @@ fn add_datatype_54(address_space: &mut AddressSpace) { let name = "BrowsePathResult"; let node_id = NodeId::new(0, 549); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_55(address_space: &mut AddressSpace) { @@ -666,9 +963,14 @@ fn add_datatype_55(address_space: &mut AddressSpace) { let name = "TranslateBrowsePathsToNodeIdsRequest"; let node_id = NodeId::new(0, 552); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_56(address_space: &mut AddressSpace) { @@ -676,9 +978,14 @@ fn add_datatype_56(address_space: &mut AddressSpace) { let name = "TranslateBrowsePathsToNodeIdsResponse"; let node_id = NodeId::new(0, 555); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_57(address_space: &mut AddressSpace) { @@ -686,9 +993,14 @@ fn add_datatype_57(address_space: &mut AddressSpace) { let name = "RegisterNodesRequest"; let node_id = NodeId::new(0, 558); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_58(address_space: &mut AddressSpace) { @@ -696,9 +1008,14 @@ fn add_datatype_58(address_space: &mut AddressSpace) { let name = "RegisterNodesResponse"; let node_id = NodeId::new(0, 561); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_59(address_space: &mut AddressSpace) { @@ -706,9 +1023,14 @@ fn add_datatype_59(address_space: &mut AddressSpace) { let name = "UnregisterNodesRequest"; let node_id = NodeId::new(0, 564); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_60(address_space: &mut AddressSpace) { @@ -716,9 +1038,14 @@ fn add_datatype_60(address_space: &mut AddressSpace) { let name = "UnregisterNodesResponse"; let node_id = NodeId::new(0, 567); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_61(address_space: &mut AddressSpace) { @@ -726,9 +1053,14 @@ fn add_datatype_61(address_space: &mut AddressSpace) { let name = "Counter"; let node_id = NodeId::new(0, 289); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 7), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 7), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_62(address_space: &mut AddressSpace) { @@ -736,9 +1068,14 @@ fn add_datatype_62(address_space: &mut AddressSpace) { let name = "NumericRange"; let node_id = NodeId::new(0, 291); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 12), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_63(address_space: &mut AddressSpace) { @@ -746,9 +1083,14 @@ fn add_datatype_63(address_space: &mut AddressSpace) { let name = "EndpointConfiguration"; let node_id = NodeId::new(0, 331); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_64(address_space: &mut AddressSpace) { @@ -756,9 +1098,14 @@ fn add_datatype_64(address_space: &mut AddressSpace) { let name = "QueryDataDescription"; let node_id = NodeId::new(0, 570); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_65(address_space: &mut AddressSpace) { @@ -766,9 +1113,14 @@ fn add_datatype_65(address_space: &mut AddressSpace) { let name = "NodeTypeDescription"; let node_id = NodeId::new(0, 573); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_66(address_space: &mut AddressSpace) { @@ -776,10 +1128,21 @@ fn add_datatype_66(address_space: &mut AddressSpace) { let name = "FilterOperator"; let node_id = NodeId::new(0, 576); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 7605), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 29), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 7605), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 29), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_datatype_67(address_space: &mut AddressSpace) { @@ -787,9 +1150,14 @@ fn add_datatype_67(address_space: &mut AddressSpace) { let name = "QueryDataSet"; let node_id = NodeId::new(0, 577); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_68(address_space: &mut AddressSpace) { @@ -797,9 +1165,14 @@ fn add_datatype_68(address_space: &mut AddressSpace) { let name = "NodeReference"; let node_id = NodeId::new(0, 580); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_69(address_space: &mut AddressSpace) { @@ -807,9 +1180,14 @@ fn add_datatype_69(address_space: &mut AddressSpace) { let name = "ContentFilterElement"; let node_id = NodeId::new(0, 583); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_70(address_space: &mut AddressSpace) { @@ -817,9 +1195,14 @@ fn add_datatype_70(address_space: &mut AddressSpace) { let name = "ContentFilter"; let node_id = NodeId::new(0, 586); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_71(address_space: &mut AddressSpace) { @@ -827,9 +1210,14 @@ fn add_datatype_71(address_space: &mut AddressSpace) { let name = "FilterOperand"; let node_id = NodeId::new(0, 589); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_72(address_space: &mut AddressSpace) { @@ -837,9 +1225,14 @@ fn add_datatype_72(address_space: &mut AddressSpace) { let name = "ElementOperand"; let node_id = NodeId::new(0, 592); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 589), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 589), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_73(address_space: &mut AddressSpace) { @@ -847,9 +1240,14 @@ fn add_datatype_73(address_space: &mut AddressSpace) { let name = "LiteralOperand"; let node_id = NodeId::new(0, 595); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 589), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 589), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_74(address_space: &mut AddressSpace) { @@ -857,9 +1255,14 @@ fn add_datatype_74(address_space: &mut AddressSpace) { let name = "AttributeOperand"; let node_id = NodeId::new(0, 598); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 589), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 589), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_75(address_space: &mut AddressSpace) { @@ -867,9 +1270,14 @@ fn add_datatype_75(address_space: &mut AddressSpace) { let name = "SimpleAttributeOperand"; let node_id = NodeId::new(0, 601); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 589), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 589), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_76(address_space: &mut AddressSpace) { @@ -877,9 +1285,14 @@ fn add_datatype_76(address_space: &mut AddressSpace) { let name = "ContentFilterElementResult"; let node_id = NodeId::new(0, 604); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_77(address_space: &mut AddressSpace) { @@ -887,9 +1300,14 @@ fn add_datatype_77(address_space: &mut AddressSpace) { let name = "ContentFilterResult"; let node_id = NodeId::new(0, 607); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_78(address_space: &mut AddressSpace) { @@ -897,9 +1315,14 @@ fn add_datatype_78(address_space: &mut AddressSpace) { let name = "ParsingResult"; let node_id = NodeId::new(0, 610); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_79(address_space: &mut AddressSpace) { @@ -907,9 +1330,14 @@ fn add_datatype_79(address_space: &mut AddressSpace) { let name = "QueryFirstRequest"; let node_id = NodeId::new(0, 613); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_80(address_space: &mut AddressSpace) { @@ -917,9 +1345,14 @@ fn add_datatype_80(address_space: &mut AddressSpace) { let name = "QueryFirstResponse"; let node_id = NodeId::new(0, 616); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_81(address_space: &mut AddressSpace) { @@ -927,9 +1360,14 @@ fn add_datatype_81(address_space: &mut AddressSpace) { let name = "QueryNextRequest"; let node_id = NodeId::new(0, 619); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_82(address_space: &mut AddressSpace) { @@ -937,9 +1375,14 @@ fn add_datatype_82(address_space: &mut AddressSpace) { let name = "QueryNextResponse"; let node_id = NodeId::new(0, 622); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_83(address_space: &mut AddressSpace) { @@ -947,10 +1390,21 @@ fn add_datatype_83(address_space: &mut AddressSpace) { let name = "TimestampsToReturn"; let node_id = NodeId::new(0, 625); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 7606), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 29), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 7606), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 29), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_datatype_84(address_space: &mut AddressSpace) { @@ -958,9 +1412,14 @@ fn add_datatype_84(address_space: &mut AddressSpace) { let name = "ReadValueId"; let node_id = NodeId::new(0, 626); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_85(address_space: &mut AddressSpace) { @@ -968,9 +1427,14 @@ fn add_datatype_85(address_space: &mut AddressSpace) { let name = "ReadRequest"; let node_id = NodeId::new(0, 629); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_86(address_space: &mut AddressSpace) { @@ -978,9 +1442,14 @@ fn add_datatype_86(address_space: &mut AddressSpace) { let name = "ReadResponse"; let node_id = NodeId::new(0, 632); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_87(address_space: &mut AddressSpace) { @@ -988,9 +1457,14 @@ fn add_datatype_87(address_space: &mut AddressSpace) { let name = "HistoryReadValueId"; let node_id = NodeId::new(0, 635); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_88(address_space: &mut AddressSpace) { @@ -998,9 +1472,14 @@ fn add_datatype_88(address_space: &mut AddressSpace) { let name = "HistoryReadResult"; let node_id = NodeId::new(0, 638); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_89(address_space: &mut AddressSpace) { @@ -1008,9 +1487,14 @@ fn add_datatype_89(address_space: &mut AddressSpace) { let name = "HistoryReadDetails"; let node_id = NodeId::new(0, 641); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_90(address_space: &mut AddressSpace) { @@ -1018,9 +1502,14 @@ fn add_datatype_90(address_space: &mut AddressSpace) { let name = "ReadEventDetails"; let node_id = NodeId::new(0, 644); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 641), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 641), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_91(address_space: &mut AddressSpace) { @@ -1028,9 +1517,14 @@ fn add_datatype_91(address_space: &mut AddressSpace) { let name = "ReadRawModifiedDetails"; let node_id = NodeId::new(0, 647); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 641), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 641), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_92(address_space: &mut AddressSpace) { @@ -1038,9 +1532,14 @@ fn add_datatype_92(address_space: &mut AddressSpace) { let name = "ReadProcessedDetails"; let node_id = NodeId::new(0, 650); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 641), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 641), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_93(address_space: &mut AddressSpace) { @@ -1048,9 +1547,14 @@ fn add_datatype_93(address_space: &mut AddressSpace) { let name = "ReadAtTimeDetails"; let node_id = NodeId::new(0, 653); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 641), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 641), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_94(address_space: &mut AddressSpace) { @@ -1058,9 +1562,14 @@ fn add_datatype_94(address_space: &mut AddressSpace) { let name = "ReadAnnotationDataDetails"; let node_id = NodeId::new(0, 23497); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 641), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 641), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_95(address_space: &mut AddressSpace) { @@ -1068,9 +1577,14 @@ fn add_datatype_95(address_space: &mut AddressSpace) { let name = "HistoryData"; let node_id = NodeId::new(0, 656); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_96(address_space: &mut AddressSpace) { @@ -1078,9 +1592,14 @@ fn add_datatype_96(address_space: &mut AddressSpace) { let name = "ModificationInfo"; let node_id = NodeId::new(0, 11216); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_97(address_space: &mut AddressSpace) { @@ -1088,9 +1607,14 @@ fn add_datatype_97(address_space: &mut AddressSpace) { let name = "HistoryModifiedData"; let node_id = NodeId::new(0, 11217); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 656), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 656), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_98(address_space: &mut AddressSpace) { @@ -1098,9 +1622,14 @@ fn add_datatype_98(address_space: &mut AddressSpace) { let name = "HistoryEvent"; let node_id = NodeId::new(0, 659); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_99(address_space: &mut AddressSpace) { @@ -1108,9 +1637,14 @@ fn add_datatype_99(address_space: &mut AddressSpace) { let name = "HistoryReadRequest"; let node_id = NodeId::new(0, 662); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_100(address_space: &mut AddressSpace) { @@ -1118,8 +1652,12 @@ fn add_datatype_100(address_space: &mut AddressSpace) { let name = "HistoryReadResponse"; let node_id = NodeId::new(0, 665); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } - diff --git a/server/src/address_space/generated/nodeset_4_8.rs b/server/src/address_space/generated/nodeset_4_8.rs index b76c62659..df9918c9b 100644 --- a/server/src/address_space/generated/nodeset_4_8.rs +++ b/server/src/address_space/generated/nodeset_4_8.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.NodeSet2.Part4.xml by tools/schema/gen_address_space.js // DO NOT EDIT THIS FILE @@ -9,8 +9,11 @@ use std::{convert::TryFrom, str::FromStr}; #[allow(unused_imports)] use crate::{ - address_space::{EventNotifier, types::*}, - prelude::{DataTypeId, ExtensionObject, LocalizedText, NodeId, ReferenceTypeId, service_types::Argument, UAString, Variant, VariantTypeId} + address_space::{types::*, EventNotifier}, + prelude::{ + service_types::Argument, DataTypeId, ExtensionObject, LocalizedText, NodeId, + ReferenceTypeId, UAString, Variant, VariantTypeId, + }, }; #[allow(unused_variables)] @@ -106,9 +109,14 @@ fn add_datatype_1(address_space: &mut AddressSpace) { let name = "WriteValue"; let node_id = NodeId::new(0, 668); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_2(address_space: &mut AddressSpace) { @@ -116,9 +124,14 @@ fn add_datatype_2(address_space: &mut AddressSpace) { let name = "WriteRequest"; let node_id = NodeId::new(0, 671); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_3(address_space: &mut AddressSpace) { @@ -126,9 +139,14 @@ fn add_datatype_3(address_space: &mut AddressSpace) { let name = "WriteResponse"; let node_id = NodeId::new(0, 674); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_4(address_space: &mut AddressSpace) { @@ -136,9 +154,14 @@ fn add_datatype_4(address_space: &mut AddressSpace) { let name = "HistoryUpdateDetails"; let node_id = NodeId::new(0, 677); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_5(address_space: &mut AddressSpace) { @@ -146,10 +169,21 @@ fn add_datatype_5(address_space: &mut AddressSpace) { let name = "HistoryUpdateType"; let node_id = NodeId::new(0, 11234); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11884), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 29), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11884), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 29), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_datatype_6(address_space: &mut AddressSpace) { @@ -157,10 +191,21 @@ fn add_datatype_6(address_space: &mut AddressSpace) { let name = "PerformUpdateType"; let node_id = NodeId::new(0, 11293); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11885), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 29), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11885), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 29), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_datatype_7(address_space: &mut AddressSpace) { @@ -168,9 +213,14 @@ fn add_datatype_7(address_space: &mut AddressSpace) { let name = "UpdateDataDetails"; let node_id = NodeId::new(0, 680); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 677), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 677), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_8(address_space: &mut AddressSpace) { @@ -178,9 +228,14 @@ fn add_datatype_8(address_space: &mut AddressSpace) { let name = "UpdateStructureDataDetails"; let node_id = NodeId::new(0, 11295); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 677), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 677), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_9(address_space: &mut AddressSpace) { @@ -188,9 +243,14 @@ fn add_datatype_9(address_space: &mut AddressSpace) { let name = "UpdateEventDetails"; let node_id = NodeId::new(0, 683); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 677), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 677), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_10(address_space: &mut AddressSpace) { @@ -198,9 +258,14 @@ fn add_datatype_10(address_space: &mut AddressSpace) { let name = "DeleteRawModifiedDetails"; let node_id = NodeId::new(0, 686); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 677), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 677), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_11(address_space: &mut AddressSpace) { @@ -208,9 +273,14 @@ fn add_datatype_11(address_space: &mut AddressSpace) { let name = "DeleteAtTimeDetails"; let node_id = NodeId::new(0, 689); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 677), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 677), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_12(address_space: &mut AddressSpace) { @@ -218,9 +288,14 @@ fn add_datatype_12(address_space: &mut AddressSpace) { let name = "DeleteEventDetails"; let node_id = NodeId::new(0, 692); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 677), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 677), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_13(address_space: &mut AddressSpace) { @@ -228,9 +303,14 @@ fn add_datatype_13(address_space: &mut AddressSpace) { let name = "HistoryUpdateResult"; let node_id = NodeId::new(0, 695); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_14(address_space: &mut AddressSpace) { @@ -238,9 +318,14 @@ fn add_datatype_14(address_space: &mut AddressSpace) { let name = "HistoryUpdateRequest"; let node_id = NodeId::new(0, 698); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_15(address_space: &mut AddressSpace) { @@ -248,9 +333,14 @@ fn add_datatype_15(address_space: &mut AddressSpace) { let name = "HistoryUpdateResponse"; let node_id = NodeId::new(0, 701); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_16(address_space: &mut AddressSpace) { @@ -258,9 +348,14 @@ fn add_datatype_16(address_space: &mut AddressSpace) { let name = "CallMethodRequest"; let node_id = NodeId::new(0, 704); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_17(address_space: &mut AddressSpace) { @@ -268,9 +363,14 @@ fn add_datatype_17(address_space: &mut AddressSpace) { let name = "CallMethodResult"; let node_id = NodeId::new(0, 707); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_18(address_space: &mut AddressSpace) { @@ -278,9 +378,14 @@ fn add_datatype_18(address_space: &mut AddressSpace) { let name = "CallRequest"; let node_id = NodeId::new(0, 710); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_19(address_space: &mut AddressSpace) { @@ -288,9 +393,14 @@ fn add_datatype_19(address_space: &mut AddressSpace) { let name = "CallResponse"; let node_id = NodeId::new(0, 713); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_20(address_space: &mut AddressSpace) { @@ -298,10 +408,21 @@ fn add_datatype_20(address_space: &mut AddressSpace) { let name = "MonitoringMode"; let node_id = NodeId::new(0, 716); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 7608), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 29), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 7608), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 29), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_datatype_21(address_space: &mut AddressSpace) { @@ -309,10 +430,21 @@ fn add_datatype_21(address_space: &mut AddressSpace) { let name = "DataChangeTrigger"; let node_id = NodeId::new(0, 717); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 7609), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 29), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 7609), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 29), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_datatype_22(address_space: &mut AddressSpace) { @@ -320,10 +452,21 @@ fn add_datatype_22(address_space: &mut AddressSpace) { let name = "DeadbandType"; let node_id = NodeId::new(0, 718); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 7610), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 29), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 7610), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 29), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_datatype_23(address_space: &mut AddressSpace) { @@ -331,9 +474,14 @@ fn add_datatype_23(address_space: &mut AddressSpace) { let name = "MonitoringFilter"; let node_id = NodeId::new(0, 719); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_24(address_space: &mut AddressSpace) { @@ -341,9 +489,14 @@ fn add_datatype_24(address_space: &mut AddressSpace) { let name = "DataChangeFilter"; let node_id = NodeId::new(0, 722); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 719), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 719), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_25(address_space: &mut AddressSpace) { @@ -351,9 +504,14 @@ fn add_datatype_25(address_space: &mut AddressSpace) { let name = "EventFilter"; let node_id = NodeId::new(0, 725); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 719), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 719), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_26(address_space: &mut AddressSpace) { @@ -361,9 +519,14 @@ fn add_datatype_26(address_space: &mut AddressSpace) { let name = "AggregateConfiguration"; let node_id = NodeId::new(0, 948); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_27(address_space: &mut AddressSpace) { @@ -371,9 +534,14 @@ fn add_datatype_27(address_space: &mut AddressSpace) { let name = "AggregateFilter"; let node_id = NodeId::new(0, 728); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 719), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 719), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_28(address_space: &mut AddressSpace) { @@ -381,9 +549,14 @@ fn add_datatype_28(address_space: &mut AddressSpace) { let name = "MonitoringFilterResult"; let node_id = NodeId::new(0, 731); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_29(address_space: &mut AddressSpace) { @@ -391,9 +564,14 @@ fn add_datatype_29(address_space: &mut AddressSpace) { let name = "EventFilterResult"; let node_id = NodeId::new(0, 734); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 731), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 731), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_30(address_space: &mut AddressSpace) { @@ -401,9 +579,14 @@ fn add_datatype_30(address_space: &mut AddressSpace) { let name = "AggregateFilterResult"; let node_id = NodeId::new(0, 737); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 731), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 731), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_31(address_space: &mut AddressSpace) { @@ -411,9 +594,14 @@ fn add_datatype_31(address_space: &mut AddressSpace) { let name = "MonitoringParameters"; let node_id = NodeId::new(0, 740); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_32(address_space: &mut AddressSpace) { @@ -421,9 +609,14 @@ fn add_datatype_32(address_space: &mut AddressSpace) { let name = "MonitoredItemCreateRequest"; let node_id = NodeId::new(0, 743); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_33(address_space: &mut AddressSpace) { @@ -431,9 +624,14 @@ fn add_datatype_33(address_space: &mut AddressSpace) { let name = "MonitoredItemCreateResult"; let node_id = NodeId::new(0, 746); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_34(address_space: &mut AddressSpace) { @@ -441,9 +639,14 @@ fn add_datatype_34(address_space: &mut AddressSpace) { let name = "CreateMonitoredItemsRequest"; let node_id = NodeId::new(0, 749); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_35(address_space: &mut AddressSpace) { @@ -451,9 +654,14 @@ fn add_datatype_35(address_space: &mut AddressSpace) { let name = "CreateMonitoredItemsResponse"; let node_id = NodeId::new(0, 752); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_36(address_space: &mut AddressSpace) { @@ -461,9 +669,14 @@ fn add_datatype_36(address_space: &mut AddressSpace) { let name = "MonitoredItemModifyRequest"; let node_id = NodeId::new(0, 755); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_37(address_space: &mut AddressSpace) { @@ -471,9 +684,14 @@ fn add_datatype_37(address_space: &mut AddressSpace) { let name = "MonitoredItemModifyResult"; let node_id = NodeId::new(0, 758); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_38(address_space: &mut AddressSpace) { @@ -481,9 +699,14 @@ fn add_datatype_38(address_space: &mut AddressSpace) { let name = "ModifyMonitoredItemsRequest"; let node_id = NodeId::new(0, 761); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_39(address_space: &mut AddressSpace) { @@ -491,9 +714,14 @@ fn add_datatype_39(address_space: &mut AddressSpace) { let name = "ModifyMonitoredItemsResponse"; let node_id = NodeId::new(0, 764); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_40(address_space: &mut AddressSpace) { @@ -501,9 +729,14 @@ fn add_datatype_40(address_space: &mut AddressSpace) { let name = "SetMonitoringModeRequest"; let node_id = NodeId::new(0, 767); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_41(address_space: &mut AddressSpace) { @@ -511,9 +744,14 @@ fn add_datatype_41(address_space: &mut AddressSpace) { let name = "SetMonitoringModeResponse"; let node_id = NodeId::new(0, 770); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_42(address_space: &mut AddressSpace) { @@ -521,9 +759,14 @@ fn add_datatype_42(address_space: &mut AddressSpace) { let name = "SetTriggeringRequest"; let node_id = NodeId::new(0, 773); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_43(address_space: &mut AddressSpace) { @@ -531,9 +774,14 @@ fn add_datatype_43(address_space: &mut AddressSpace) { let name = "SetTriggeringResponse"; let node_id = NodeId::new(0, 776); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_44(address_space: &mut AddressSpace) { @@ -541,9 +789,14 @@ fn add_datatype_44(address_space: &mut AddressSpace) { let name = "DeleteMonitoredItemsRequest"; let node_id = NodeId::new(0, 779); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_45(address_space: &mut AddressSpace) { @@ -551,9 +804,14 @@ fn add_datatype_45(address_space: &mut AddressSpace) { let name = "DeleteMonitoredItemsResponse"; let node_id = NodeId::new(0, 782); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_46(address_space: &mut AddressSpace) { @@ -561,9 +819,14 @@ fn add_datatype_46(address_space: &mut AddressSpace) { let name = "CreateSubscriptionRequest"; let node_id = NodeId::new(0, 785); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_47(address_space: &mut AddressSpace) { @@ -571,9 +834,14 @@ fn add_datatype_47(address_space: &mut AddressSpace) { let name = "CreateSubscriptionResponse"; let node_id = NodeId::new(0, 788); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_48(address_space: &mut AddressSpace) { @@ -581,9 +849,14 @@ fn add_datatype_48(address_space: &mut AddressSpace) { let name = "ModifySubscriptionRequest"; let node_id = NodeId::new(0, 791); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_49(address_space: &mut AddressSpace) { @@ -591,9 +864,14 @@ fn add_datatype_49(address_space: &mut AddressSpace) { let name = "ModifySubscriptionResponse"; let node_id = NodeId::new(0, 794); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_50(address_space: &mut AddressSpace) { @@ -601,9 +879,14 @@ fn add_datatype_50(address_space: &mut AddressSpace) { let name = "SetPublishingModeRequest"; let node_id = NodeId::new(0, 797); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_51(address_space: &mut AddressSpace) { @@ -611,9 +894,14 @@ fn add_datatype_51(address_space: &mut AddressSpace) { let name = "SetPublishingModeResponse"; let node_id = NodeId::new(0, 800); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_52(address_space: &mut AddressSpace) { @@ -621,9 +909,14 @@ fn add_datatype_52(address_space: &mut AddressSpace) { let name = "NotificationMessage"; let node_id = NodeId::new(0, 803); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_53(address_space: &mut AddressSpace) { @@ -631,9 +924,14 @@ fn add_datatype_53(address_space: &mut AddressSpace) { let name = "NotificationData"; let node_id = NodeId::new(0, 945); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_54(address_space: &mut AddressSpace) { @@ -641,9 +939,14 @@ fn add_datatype_54(address_space: &mut AddressSpace) { let name = "DataChangeNotification"; let node_id = NodeId::new(0, 809); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 945), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 945), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_55(address_space: &mut AddressSpace) { @@ -651,9 +954,14 @@ fn add_datatype_55(address_space: &mut AddressSpace) { let name = "MonitoredItemNotification"; let node_id = NodeId::new(0, 806); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_56(address_space: &mut AddressSpace) { @@ -661,9 +969,14 @@ fn add_datatype_56(address_space: &mut AddressSpace) { let name = "EventNotificationList"; let node_id = NodeId::new(0, 914); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 945), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 945), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_57(address_space: &mut AddressSpace) { @@ -671,9 +984,14 @@ fn add_datatype_57(address_space: &mut AddressSpace) { let name = "EventFieldList"; let node_id = NodeId::new(0, 917); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_58(address_space: &mut AddressSpace) { @@ -681,9 +999,14 @@ fn add_datatype_58(address_space: &mut AddressSpace) { let name = "HistoryEventFieldList"; let node_id = NodeId::new(0, 920); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_59(address_space: &mut AddressSpace) { @@ -691,9 +1014,14 @@ fn add_datatype_59(address_space: &mut AddressSpace) { let name = "StatusChangeNotification"; let node_id = NodeId::new(0, 818); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 945), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 945), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_60(address_space: &mut AddressSpace) { @@ -701,9 +1029,14 @@ fn add_datatype_60(address_space: &mut AddressSpace) { let name = "SubscriptionAcknowledgement"; let node_id = NodeId::new(0, 821); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_61(address_space: &mut AddressSpace) { @@ -711,9 +1044,14 @@ fn add_datatype_61(address_space: &mut AddressSpace) { let name = "PublishRequest"; let node_id = NodeId::new(0, 824); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_62(address_space: &mut AddressSpace) { @@ -721,9 +1059,14 @@ fn add_datatype_62(address_space: &mut AddressSpace) { let name = "PublishResponse"; let node_id = NodeId::new(0, 827); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_63(address_space: &mut AddressSpace) { @@ -731,9 +1074,14 @@ fn add_datatype_63(address_space: &mut AddressSpace) { let name = "RepublishRequest"; let node_id = NodeId::new(0, 830); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_64(address_space: &mut AddressSpace) { @@ -741,9 +1089,14 @@ fn add_datatype_64(address_space: &mut AddressSpace) { let name = "RepublishResponse"; let node_id = NodeId::new(0, 833); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_65(address_space: &mut AddressSpace) { @@ -751,9 +1104,14 @@ fn add_datatype_65(address_space: &mut AddressSpace) { let name = "TransferResult"; let node_id = NodeId::new(0, 836); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_66(address_space: &mut AddressSpace) { @@ -761,9 +1119,14 @@ fn add_datatype_66(address_space: &mut AddressSpace) { let name = "TransferSubscriptionsRequest"; let node_id = NodeId::new(0, 839); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_67(address_space: &mut AddressSpace) { @@ -771,9 +1134,14 @@ fn add_datatype_67(address_space: &mut AddressSpace) { let name = "TransferSubscriptionsResponse"; let node_id = NodeId::new(0, 842); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_68(address_space: &mut AddressSpace) { @@ -781,9 +1149,14 @@ fn add_datatype_68(address_space: &mut AddressSpace) { let name = "DeleteSubscriptionsRequest"; let node_id = NodeId::new(0, 845); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_69(address_space: &mut AddressSpace) { @@ -791,9 +1164,14 @@ fn add_datatype_69(address_space: &mut AddressSpace) { let name = "DeleteSubscriptionsResponse"; let node_id = NodeId::new(0, 848); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_variable_70(address_space: &mut AddressSpace) { @@ -801,12 +1179,35 @@ fn add_variable_70(address_space: &mut AddressSpace) { let name = "EnumStrings"; let value = Variant::Empty; let node_id = NodeId::new(0, 7597); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 307), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 21), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 307), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_71(address_space: &mut AddressSpace) { @@ -814,12 +1215,35 @@ fn add_variable_71(address_space: &mut AddressSpace) { let name = "EnumStrings"; let value = Variant::Empty; let node_id = NodeId::new(0, 7595); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 302), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 21), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 302), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_72(address_space: &mut AddressSpace) { @@ -827,12 +1251,35 @@ fn add_variable_72(address_space: &mut AddressSpace) { let name = "EnumStrings"; let value = Variant::Empty; let node_id = NodeId::new(0, 7596); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 303), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 21), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 303), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_73(address_space: &mut AddressSpace) { @@ -840,12 +1287,35 @@ fn add_variable_73(address_space: &mut AddressSpace) { let name = "EnumStrings"; let value = Variant::Empty; let node_id = NodeId::new(0, 7598); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 315), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 21), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 315), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_74(address_space: &mut AddressSpace) { @@ -853,12 +1323,35 @@ fn add_variable_74(address_space: &mut AddressSpace) { let name = "EnumValues"; let value = Variant::Empty; let node_id = NodeId::new(0, 11881); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7594), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 348), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 7594), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 348), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_75(address_space: &mut AddressSpace) { @@ -866,12 +1359,35 @@ fn add_variable_75(address_space: &mut AddressSpace) { let name = "OptionSetValues"; let value = Variant::Empty; let node_id = NodeId::new(0, 15036); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 347), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 21), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 347), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_76(address_space: &mut AddressSpace) { @@ -879,12 +1395,35 @@ fn add_variable_76(address_space: &mut AddressSpace) { let name = "EnumStrings"; let value = Variant::Empty; let node_id = NodeId::new(0, 7603); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 510), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 21), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 510), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_77(address_space: &mut AddressSpace) { @@ -892,12 +1431,35 @@ fn add_variable_77(address_space: &mut AddressSpace) { let name = "EnumValues"; let value = Variant::Empty; let node_id = NodeId::new(0, 11883); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7594), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 517), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 7594), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 517), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_78(address_space: &mut AddressSpace) { @@ -905,12 +1467,35 @@ fn add_variable_78(address_space: &mut AddressSpace) { let name = "EnumStrings"; let value = Variant::Empty; let node_id = NodeId::new(0, 7605); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 576), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 21), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 576), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_79(address_space: &mut AddressSpace) { @@ -918,12 +1503,35 @@ fn add_variable_79(address_space: &mut AddressSpace) { let name = "EnumStrings"; let value = Variant::Empty; let node_id = NodeId::new(0, 7606); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 625), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 21), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 625), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_80(address_space: &mut AddressSpace) { @@ -931,12 +1539,35 @@ fn add_variable_80(address_space: &mut AddressSpace) { let name = "EnumValues"; let value = Variant::Empty; let node_id = NodeId::new(0, 11884); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7594), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11234), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 7594), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11234), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_81(address_space: &mut AddressSpace) { @@ -944,12 +1575,35 @@ fn add_variable_81(address_space: &mut AddressSpace) { let name = "EnumValues"; let value = Variant::Empty; let node_id = NodeId::new(0, 11885); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7594), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11293), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 7594), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11293), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_82(address_space: &mut AddressSpace) { @@ -957,12 +1611,35 @@ fn add_variable_82(address_space: &mut AddressSpace) { let name = "EnumStrings"; let value = Variant::Empty; let node_id = NodeId::new(0, 7608); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 716), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 21), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 716), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_83(address_space: &mut AddressSpace) { @@ -970,12 +1647,35 @@ fn add_variable_83(address_space: &mut AddressSpace) { let name = "EnumStrings"; let value = Variant::Empty; let node_id = NodeId::new(0, 7609); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 717), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 21), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 717), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_84(address_space: &mut AddressSpace) { @@ -983,11 +1683,33 @@ fn add_variable_84(address_space: &mut AddressSpace) { let name = "EnumStrings"; let value = Variant::Empty; let node_id = NodeId::new(0, 7610); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 718), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 21), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 718), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } - diff --git a/server/src/address_space/generated/nodeset_5_1.rs b/server/src/address_space/generated/nodeset_5_1.rs index 1fe37df0d..c07c3f11a 100644 --- a/server/src/address_space/generated/nodeset_5_1.rs +++ b/server/src/address_space/generated/nodeset_5_1.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.NodeSet2.Part5.xml by tools/schema/gen_address_space.js // DO NOT EDIT THIS FILE @@ -9,8 +9,11 @@ use std::{convert::TryFrom, str::FromStr}; #[allow(unused_imports)] use crate::{ - address_space::{EventNotifier, types::*}, - prelude::{DataTypeId, ExtensionObject, LocalizedText, NodeId, ReferenceTypeId, service_types::Argument, UAString, Variant, VariantTypeId} + address_space::{types::*, EventNotifier}, + prelude::{ + service_types::Argument, DataTypeId, ExtensionObject, LocalizedText, NodeId, + ReferenceTypeId, UAString, Variant, VariantTypeId, + }, }; #[allow(unused_variables)] @@ -122,10 +125,21 @@ fn add_object_1(address_space: &mut AddressSpace) { let name = "Mandatory"; let node_id = NodeId::new(0, 78); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 112), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 77), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 112), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 77), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_2(address_space: &mut AddressSpace) { @@ -133,10 +147,21 @@ fn add_object_2(address_space: &mut AddressSpace) { let name = "Optional"; let node_id = NodeId::new(0, 80); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 113), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 77), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 113), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 77), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_3(address_space: &mut AddressSpace) { @@ -144,10 +169,21 @@ fn add_object_3(address_space: &mut AddressSpace) { let name = "ExposesItsArray"; let node_id = NodeId::new(0, 83); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 114), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 77), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 114), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 77), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_4(address_space: &mut AddressSpace) { @@ -155,10 +191,21 @@ fn add_object_4(address_space: &mut AddressSpace) { let name = "OptionalPlaceholder"; let node_id = NodeId::new(0, 11508); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11509), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 77), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11509), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 77), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_5(address_space: &mut AddressSpace) { @@ -166,10 +213,21 @@ fn add_object_5(address_space: &mut AddressSpace) { let name = "MandatoryPlaceholder"; let node_id = NodeId::new(0, 11510); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11511), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 77), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11511), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 77), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_6(address_space: &mut AddressSpace) { @@ -177,9 +235,14 @@ fn add_object_6(address_space: &mut AddressSpace) { let name = "Root"; let node_id = NodeId::new(0, 84); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 61), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 61), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + )]), + ); } fn add_object_7(address_space: &mut AddressSpace) { @@ -187,10 +250,21 @@ fn add_object_7(address_space: &mut AddressSpace) { let name = "Objects"; let node_id = NodeId::new(0, 85); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 84), &ReferenceTypeId::Organizes, ReferenceDirection::Inverse), - (&NodeId::new(0, 61), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 84), + &ReferenceTypeId::Organizes, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 61), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_8(address_space: &mut AddressSpace) { @@ -198,10 +272,21 @@ fn add_object_8(address_space: &mut AddressSpace) { let name = "Types"; let node_id = NodeId::new(0, 86); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 84), &ReferenceTypeId::Organizes, ReferenceDirection::Inverse), - (&NodeId::new(0, 61), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 84), + &ReferenceTypeId::Organizes, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 61), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_9(address_space: &mut AddressSpace) { @@ -209,10 +294,21 @@ fn add_object_9(address_space: &mut AddressSpace) { let name = "Views"; let node_id = NodeId::new(0, 87); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 84), &ReferenceTypeId::Organizes, ReferenceDirection::Inverse), - (&NodeId::new(0, 61), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 84), + &ReferenceTypeId::Organizes, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 61), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_10(address_space: &mut AddressSpace) { @@ -220,11 +316,26 @@ fn add_object_10(address_space: &mut AddressSpace) { let name = "ObjectTypes"; let node_id = NodeId::new(0, 88); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 86), &ReferenceTypeId::Organizes, ReferenceDirection::Inverse), - (&NodeId::new(0, 58), &ReferenceTypeId::Organizes, ReferenceDirection::Forward), - (&NodeId::new(0, 61), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 86), + &ReferenceTypeId::Organizes, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::Organizes, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 61), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_11(address_space: &mut AddressSpace) { @@ -232,11 +343,26 @@ fn add_object_11(address_space: &mut AddressSpace) { let name = "VariableTypes"; let node_id = NodeId::new(0, 89); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 86), &ReferenceTypeId::Organizes, ReferenceDirection::Inverse), - (&NodeId::new(0, 62), &ReferenceTypeId::Organizes, ReferenceDirection::Forward), - (&NodeId::new(0, 61), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 86), + &ReferenceTypeId::Organizes, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 62), + &ReferenceTypeId::Organizes, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 61), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_12(address_space: &mut AddressSpace) { @@ -244,11 +370,26 @@ fn add_object_12(address_space: &mut AddressSpace) { let name = "DataTypes"; let node_id = NodeId::new(0, 90); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 86), &ReferenceTypeId::Organizes, ReferenceDirection::Inverse), - (&NodeId::new(0, 24), &ReferenceTypeId::Organizes, ReferenceDirection::Forward), - (&NodeId::new(0, 61), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 86), + &ReferenceTypeId::Organizes, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 24), + &ReferenceTypeId::Organizes, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 61), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_13(address_space: &mut AddressSpace) { @@ -256,11 +397,26 @@ fn add_object_13(address_space: &mut AddressSpace) { let name = "ReferenceTypes"; let node_id = NodeId::new(0, 91); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 86), &ReferenceTypeId::Organizes, ReferenceDirection::Inverse), - (&NodeId::new(0, 31), &ReferenceTypeId::Organizes, ReferenceDirection::Forward), - (&NodeId::new(0, 61), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 86), + &ReferenceTypeId::Organizes, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 31), + &ReferenceTypeId::Organizes, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 61), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_14(address_space: &mut AddressSpace) { @@ -268,10 +424,21 @@ fn add_object_14(address_space: &mut AddressSpace) { let name = "XML Schema"; let node_id = NodeId::new(0, 92); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 90), &ReferenceTypeId::Organizes, ReferenceDirection::Inverse), - (&NodeId::new(0, 75), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 90), + &ReferenceTypeId::Organizes, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 75), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_15(address_space: &mut AddressSpace) { @@ -279,10 +446,21 @@ fn add_object_15(address_space: &mut AddressSpace) { let name = "OPC Binary"; let node_id = NodeId::new(0, 93); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 90), &ReferenceTypeId::Organizes, ReferenceDirection::Inverse), - (&NodeId::new(0, 75), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 90), + &ReferenceTypeId::Organizes, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 75), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_16(address_space: &mut AddressSpace) { @@ -291,20 +469,71 @@ fn add_object_16(address_space: &mut AddressSpace) { let display_name = "http://opcfoundation.org/UA/"; let node_id = NodeId::new(0, 15957); let node = Object::new(&node_id, browse_name, display_name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15958), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15959), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15960), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15961), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15962), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15963), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15964), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16134), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16135), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16136), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11715), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - (&NodeId::new(0, 11616), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15958), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15959), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15960), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15961), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15962), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15963), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15964), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16134), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16135), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16136), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11715), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 11616), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_17(address_space: &mut AddressSpace) { @@ -312,20 +541,71 @@ fn add_object_17(address_space: &mut AddressSpace) { let name = "ServerCapabilities"; let node_id = NodeId::new(0, 2009); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 3086), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 3087), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 3088), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 3089), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 3090), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 3091), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 3092), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 3093), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3094), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2013), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2004), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 3086), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3087), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3088), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3089), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3090), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3091), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3092), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3093), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3094), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2013), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2004), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_18(address_space: &mut AddressSpace) { @@ -333,11 +613,26 @@ fn add_object_18(address_space: &mut AddressSpace) { let name = "ModellingRules"; let node_id = NodeId::new(0, 3093); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 61), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2009), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 61), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2009), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_19(address_space: &mut AddressSpace) { @@ -345,11 +640,26 @@ fn add_object_19(address_space: &mut AddressSpace) { let name = "AggregateFunctions"; let node_id = NodeId::new(0, 3094); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 61), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2009), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 61), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2009), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_20(address_space: &mut AddressSpace) { @@ -357,15 +667,46 @@ fn add_object_20(address_space: &mut AddressSpace) { let name = "ServerDiagnostics"; let node_id = NodeId::new(0, 2010); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 3095), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3110), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3111), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3114), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2020), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2004), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 3095), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3110), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3111), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3114), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2020), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2004), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_21(address_space: &mut AddressSpace) { @@ -373,13 +714,36 @@ fn add_object_21(address_space: &mut AddressSpace) { let name = "SessionsDiagnosticsSummary"; let node_id = NodeId::new(0, 3111); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 3112), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3113), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2026), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2010), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 3112), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3113), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2026), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2010), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_22(address_space: &mut AddressSpace) { @@ -387,11 +751,26 @@ fn add_object_22(address_space: &mut AddressSpace) { let name = "VendorServerInfo"; let node_id = NodeId::new(0, 2011); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2033), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2004), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2033), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2004), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_23(address_space: &mut AddressSpace) { @@ -399,12 +778,31 @@ fn add_object_23(address_space: &mut AddressSpace) { let name = "ServerRedundancy"; let node_id = NodeId::new(0, 2012); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 3115), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2034), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2004), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 3115), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2034), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2004), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_24(address_space: &mut AddressSpace) { @@ -412,11 +810,26 @@ fn add_object_24(address_space: &mut AddressSpace) { let name = "Namespaces"; let node_id = NodeId::new(0, 11527); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11645), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2004), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11645), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2004), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_25(address_space: &mut AddressSpace) { @@ -424,11 +837,26 @@ fn add_object_25(address_space: &mut AddressSpace) { let name = "OperationLimits"; let node_id = NodeId::new(0, 11551); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11564), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2013), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11564), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2013), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_26(address_space: &mut AddressSpace) { @@ -436,11 +864,26 @@ fn add_object_26(address_space: &mut AddressSpace) { let name = "ModellingRules"; let node_id = NodeId::new(0, 2019); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 61), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2013), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 61), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2013), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_27(address_space: &mut AddressSpace) { @@ -448,11 +891,26 @@ fn add_object_27(address_space: &mut AddressSpace) { let name = "AggregateFunctions"; let node_id = NodeId::new(0, 2754); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 61), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2013), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 61), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2013), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_28(address_space: &mut AddressSpace) { @@ -460,13 +918,36 @@ fn add_object_28(address_space: &mut AddressSpace) { let name = "RoleSet"; let node_id = NodeId::new(0, 16295); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16296), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16299), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15607), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2013), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16296), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16299), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15607), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2013), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_29(address_space: &mut AddressSpace) { @@ -474,13 +955,36 @@ fn add_object_29(address_space: &mut AddressSpace) { let name = "SessionsDiagnosticsSummary"; let node_id = NodeId::new(0, 2744); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 3129), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3130), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2026), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2020), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 3129), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3130), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2026), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2020), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_30(address_space: &mut AddressSpace) { @@ -488,14 +992,41 @@ fn add_object_30(address_space: &mut AddressSpace) { let name = ""; let node_id = NodeId::new(0, 12097); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12098), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12142), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12152), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2029), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11508), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2026), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12098), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12142), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12152), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2029), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11508), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2026), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_31(address_space: &mut AddressSpace) { @@ -503,21 +1034,76 @@ fn add_object_31(address_space: &mut AddressSpace) { let name = "NamespaceFile"; let node_id = NodeId::new(0, 11624); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11625), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 12690), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 12691), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11628), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11629), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 11632), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 11634), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 11637), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 11639), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 11642), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 11595), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11616), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11625), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12690), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12691), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11628), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11629), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11632), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11634), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11637), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11639), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11642), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11595), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11616), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_32(address_space: &mut AddressSpace) { @@ -525,18 +1111,61 @@ fn add_object_32(address_space: &mut AddressSpace) { let name = ""; let node_id = NodeId::new(0, 11646); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11647), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11648), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11649), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11650), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11651), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11652), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11653), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11616), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11508), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11645), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11647), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11648), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11649), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11650), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11651), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11652), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11653), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11616), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11508), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11645), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_33(address_space: &mut AddressSpace) { @@ -544,11 +1173,26 @@ fn add_object_33(address_space: &mut AddressSpace) { let name = "EventTypes"; let node_id = NodeId::new(0, 3048); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 86), &ReferenceTypeId::Organizes, ReferenceDirection::Inverse), - (&NodeId::new(0, 2041), &ReferenceTypeId::Organizes, ReferenceDirection::Forward), - (&NodeId::new(0, 61), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 86), + &ReferenceTypeId::Organizes, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 2041), + &ReferenceTypeId::Organizes, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 61), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_34(address_space: &mut AddressSpace) { @@ -556,26 +1200,101 @@ fn add_object_34(address_space: &mut AddressSpace) { let name = "Server"; let node_id = NodeId::new(0, 2253); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2254), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2255), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2256), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2267), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2994), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 12885), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17634), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2268), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2274), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2295), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2296), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 11715), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 11492), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12873), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12749), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12886), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 85), &ReferenceTypeId::Organizes, ReferenceDirection::Inverse), - (&NodeId::new(0, 2004), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2254), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2255), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2256), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2267), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2994), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12885), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17634), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2268), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2274), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2295), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2296), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11715), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11492), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12873), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12749), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12886), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 85), + &ReferenceTypeId::Organizes, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 2004), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_35(address_space: &mut AddressSpace) { @@ -583,24 +1302,91 @@ fn add_object_35(address_space: &mut AddressSpace) { let name = "ServerCapabilities"; let node_id = NodeId::new(0, 2268); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2269), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2271), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2272), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2735), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2736), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2737), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 3704), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11702), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11703), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 12911), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11704), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2996), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2997), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15606), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2013), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2253), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2269), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2271), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2272), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2735), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2736), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2737), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3704), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11702), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11703), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12911), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11704), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2996), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2997), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15606), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2013), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2253), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_36(address_space: &mut AddressSpace) { @@ -608,22 +1394,81 @@ fn add_object_36(address_space: &mut AddressSpace) { let name = "OperationLimits"; let node_id = NodeId::new(0, 11704); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11705), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 12165), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 12166), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11707), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 12167), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 12168), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11709), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11710), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11711), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11712), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11713), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11714), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11564), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2268), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11705), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12165), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12166), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11707), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12167), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12168), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11709), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11710), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11711), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11712), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11713), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11714), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11564), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2268), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_37(address_space: &mut AddressSpace) { @@ -631,10 +1476,21 @@ fn add_object_37(address_space: &mut AddressSpace) { let name = "ModellingRules"; let node_id = NodeId::new(0, 2996); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 61), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2268), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 61), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2268), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_38(address_space: &mut AddressSpace) { @@ -642,10 +1498,21 @@ fn add_object_38(address_space: &mut AddressSpace) { let name = "AggregateFunctions"; let node_id = NodeId::new(0, 2997); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 61), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2268), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 61), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2268), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_39(address_space: &mut AddressSpace) { @@ -653,12 +1520,31 @@ fn add_object_39(address_space: &mut AddressSpace) { let name = "RoleSet"; let node_id = NodeId::new(0, 15606); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16301), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16304), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15607), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2268), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16301), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16304), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15607), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2268), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_40(address_space: &mut AddressSpace) { @@ -666,15 +1552,46 @@ fn add_object_40(address_space: &mut AddressSpace) { let name = "ServerDiagnostics"; let node_id = NodeId::new(0, 2274); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2275), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2289), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2290), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3706), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2294), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2020), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2253), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2275), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2289), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2290), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3706), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2294), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2020), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2253), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_41(address_space: &mut AddressSpace) { @@ -682,12 +1599,31 @@ fn add_object_41(address_space: &mut AddressSpace) { let name = "SessionsDiagnosticsSummary"; let node_id = NodeId::new(0, 3706); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 3707), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3708), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2026), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2274), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 3707), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3708), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2026), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2274), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_42(address_space: &mut AddressSpace) { @@ -695,10 +1631,21 @@ fn add_object_42(address_space: &mut AddressSpace) { let name = "VendorServerInfo"; let node_id = NodeId::new(0, 2295); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2033), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2253), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2033), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2253), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_43(address_space: &mut AddressSpace) { @@ -706,11 +1653,26 @@ fn add_object_43(address_space: &mut AddressSpace) { let name = "ServerRedundancy"; let node_id = NodeId::new(0, 2296); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 3709), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2034), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2253), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 3709), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2034), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2253), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_44(address_space: &mut AddressSpace) { @@ -718,10 +1680,21 @@ fn add_object_44(address_space: &mut AddressSpace) { let name = "Namespaces"; let node_id = NodeId::new(0, 11715); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11645), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2253), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11645), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2253), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_45(address_space: &mut AddressSpace) { @@ -729,15 +1702,46 @@ fn add_object_45(address_space: &mut AddressSpace) { let name = ""; let node_id = NodeId::new(0, 13354); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13355), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 13358), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17718), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 13363), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 13353), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11508), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13353), &ReferenceTypeId::Organizes, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13355), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13358), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17718), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13363), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13353), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11508), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13353), + &ReferenceTypeId::Organizes, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_46(address_space: &mut AddressSpace) { @@ -745,21 +1749,76 @@ fn add_object_46(address_space: &mut AddressSpace) { let name = ""; let node_id = NodeId::new(0, 13366); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13367), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13368), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13369), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13370), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13372), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 13375), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 13377), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 13380), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 13382), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 13385), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 11575), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11508), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13353), &ReferenceTypeId::Organizes, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13367), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13368), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13369), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13370), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13372), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13375), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13377), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13380), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13382), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13385), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11575), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11508), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13353), + &ReferenceTypeId::Organizes, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_47(address_space: &mut AddressSpace) { @@ -767,13 +1826,36 @@ fn add_object_47(address_space: &mut AddressSpace) { let name = "FileSystem"; let node_id = NodeId::new(0, 16314); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16348), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16351), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16354), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16356), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 13353), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16348), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16351), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16354), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16356), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13353), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_48(address_space: &mut AddressSpace) { @@ -781,13 +1863,36 @@ fn add_object_48(address_space: &mut AddressSpace) { let name = ""; let node_id = NodeId::new(0, 15754); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15755), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15794), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15803), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11508), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15744), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15755), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15794), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15803), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11508), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15744), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_49(address_space: &mut AddressSpace) { @@ -795,11 +1900,26 @@ fn add_object_49(address_space: &mut AddressSpace) { let name = "Idle"; let node_id = NodeId::new(0, 15815); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15816), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2309), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15803), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15816), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2309), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15803), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_50(address_space: &mut AddressSpace) { @@ -807,11 +1927,26 @@ fn add_object_50(address_space: &mut AddressSpace) { let name = "ReadPrepare"; let node_id = NodeId::new(0, 15817); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15818), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2307), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15803), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15818), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2307), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15803), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_51(address_space: &mut AddressSpace) { @@ -819,11 +1954,26 @@ fn add_object_51(address_space: &mut AddressSpace) { let name = "ReadTransfer"; let node_id = NodeId::new(0, 15819); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15820), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2307), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15803), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15820), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2307), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15803), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_52(address_space: &mut AddressSpace) { @@ -831,11 +1981,26 @@ fn add_object_52(address_space: &mut AddressSpace) { let name = "ApplyWrite"; let node_id = NodeId::new(0, 15821); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15822), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2307), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15803), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15822), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2307), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15803), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_53(address_space: &mut AddressSpace) { @@ -843,11 +2008,26 @@ fn add_object_53(address_space: &mut AddressSpace) { let name = "Error"; let node_id = NodeId::new(0, 15823); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15824), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2307), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15803), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15824), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2307), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15803), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_54(address_space: &mut AddressSpace) { @@ -855,11 +2035,26 @@ fn add_object_54(address_space: &mut AddressSpace) { let name = "IdleToReadPrepare"; let node_id = NodeId::new(0, 15825); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15826), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2310), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15803), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15826), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2310), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15803), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_55(address_space: &mut AddressSpace) { @@ -867,11 +2062,26 @@ fn add_object_55(address_space: &mut AddressSpace) { let name = "ReadPrepareToReadTransfer"; let node_id = NodeId::new(0, 15827); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15828), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2310), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15803), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15828), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2310), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15803), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_56(address_space: &mut AddressSpace) { @@ -879,11 +2089,26 @@ fn add_object_56(address_space: &mut AddressSpace) { let name = "ReadTransferToIdle"; let node_id = NodeId::new(0, 15829); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15830), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2310), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15803), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15830), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2310), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15803), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_57(address_space: &mut AddressSpace) { @@ -891,11 +2116,26 @@ fn add_object_57(address_space: &mut AddressSpace) { let name = "IdleToApplyWrite"; let node_id = NodeId::new(0, 15831); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15832), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2310), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15803), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15832), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2310), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15803), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_58(address_space: &mut AddressSpace) { @@ -903,11 +2143,26 @@ fn add_object_58(address_space: &mut AddressSpace) { let name = "ApplyWriteToIdle"; let node_id = NodeId::new(0, 15833); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15834), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2310), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15803), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15834), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2310), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15803), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_59(address_space: &mut AddressSpace) { @@ -915,11 +2170,26 @@ fn add_object_59(address_space: &mut AddressSpace) { let name = "ReadPrepareToError"; let node_id = NodeId::new(0, 15835); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15836), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2310), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15803), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15836), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2310), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15803), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_60(address_space: &mut AddressSpace) { @@ -927,11 +2197,26 @@ fn add_object_60(address_space: &mut AddressSpace) { let name = "ReadTransferToError"; let node_id = NodeId::new(0, 15837); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15838), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2310), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15803), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15838), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2310), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15803), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_61(address_space: &mut AddressSpace) { @@ -939,11 +2224,26 @@ fn add_object_61(address_space: &mut AddressSpace) { let name = "ApplyWriteToError"; let node_id = NodeId::new(0, 15839); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15840), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2310), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15803), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15840), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2310), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15803), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_62(address_space: &mut AddressSpace) { @@ -951,11 +2251,26 @@ fn add_object_62(address_space: &mut AddressSpace) { let name = "ErrorToIdle"; let node_id = NodeId::new(0, 15841); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15842), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2310), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15803), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15842), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2310), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15803), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_63(address_space: &mut AddressSpace) { @@ -963,12 +2278,31 @@ fn add_object_63(address_space: &mut AddressSpace) { let name = ""; let node_id = NodeId::new(0, 15608); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16162), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15620), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11508), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15607), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16162), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15620), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11508), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15607), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_64(address_space: &mut AddressSpace) { @@ -976,21 +2310,76 @@ fn add_object_64(address_space: &mut AddressSpace) { let name = "Anonymous"; let node_id = NodeId::new(0, 15644); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16192), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16193), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15412), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16194), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15413), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15648), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15650), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16195), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16197), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16199), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16201), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15606), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - (&NodeId::new(0, 15620), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16192), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16193), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15412), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16194), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15413), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15648), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15650), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16195), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16197), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16199), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16201), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15606), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 15620), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_65(address_space: &mut AddressSpace) { @@ -998,21 +2387,76 @@ fn add_object_65(address_space: &mut AddressSpace) { let name = "AuthenticatedUser"; let node_id = NodeId::new(0, 15656); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16203), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16204), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15414), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16205), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15415), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15660), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15662), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16206), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16208), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16210), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16212), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15606), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - (&NodeId::new(0, 15620), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16203), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16204), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15414), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16205), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15415), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15660), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15662), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16206), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16208), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16210), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16212), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15606), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 15620), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_66(address_space: &mut AddressSpace) { @@ -1020,21 +2464,76 @@ fn add_object_66(address_space: &mut AddressSpace) { let name = "Observer"; let node_id = NodeId::new(0, 15668); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16214), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16215), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15416), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16216), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15417), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15672), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15674), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16217), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16219), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16221), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16223), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15606), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - (&NodeId::new(0, 15620), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16214), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16215), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15416), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16216), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15417), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15672), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15674), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16217), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16219), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16221), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16223), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15606), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 15620), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_67(address_space: &mut AddressSpace) { @@ -1042,21 +2541,76 @@ fn add_object_67(address_space: &mut AddressSpace) { let name = "Operator"; let node_id = NodeId::new(0, 15680); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16225), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16226), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15418), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16227), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15423), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15684), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15686), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16228), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16230), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16232), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16234), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15606), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - (&NodeId::new(0, 15620), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16225), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16226), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15418), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16227), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15423), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15684), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15686), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16228), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16230), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16232), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16234), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15606), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 15620), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_68(address_space: &mut AddressSpace) { @@ -1064,21 +2618,76 @@ fn add_object_68(address_space: &mut AddressSpace) { let name = "Engineer"; let node_id = NodeId::new(0, 16036); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16236), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16237), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15424), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16238), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15425), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16041), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16043), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16239), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16241), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16243), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16245), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15606), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - (&NodeId::new(0, 15620), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16236), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16237), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15424), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16238), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15425), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16041), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16043), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16239), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16241), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16243), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16245), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15606), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 15620), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_69(address_space: &mut AddressSpace) { @@ -1086,21 +2695,76 @@ fn add_object_69(address_space: &mut AddressSpace) { let name = "Supervisor"; let node_id = NodeId::new(0, 15692); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16247), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16248), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15426), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16249), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15427), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15696), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15698), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16250), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16252), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16254), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16256), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15606), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - (&NodeId::new(0, 15620), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16247), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16248), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15426), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16249), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15427), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15696), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15698), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16250), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16254), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16256), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15606), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 15620), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_70(address_space: &mut AddressSpace) { @@ -1108,21 +2772,76 @@ fn add_object_70(address_space: &mut AddressSpace) { let name = "ConfigureAdmin"; let node_id = NodeId::new(0, 15716); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16269), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16270), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15428), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16271), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15429), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15720), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15722), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16272), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16274), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16276), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16278), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15606), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - (&NodeId::new(0, 15620), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16269), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16270), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15428), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16271), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15429), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15720), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15722), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16272), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16274), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16276), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16278), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15606), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 15620), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_71(address_space: &mut AddressSpace) { @@ -1130,21 +2849,76 @@ fn add_object_71(address_space: &mut AddressSpace) { let name = "SecurityAdmin"; let node_id = NodeId::new(0, 15704); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16258), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16259), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15430), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16260), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15527), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15708), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15710), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16261), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16263), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16265), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16267), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15606), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - (&NodeId::new(0, 15620), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16258), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16259), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15430), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16260), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15527), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15708), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15710), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16261), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16263), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16265), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16267), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15606), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 15620), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_72(address_space: &mut AddressSpace) { @@ -1152,11 +2926,26 @@ fn add_object_72(address_space: &mut AddressSpace) { let name = ""; let node_id = NodeId::new(0, 17590); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17589), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11508), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17589), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17589), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11508), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17589), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_73(address_space: &mut AddressSpace) { @@ -1164,11 +2953,26 @@ fn add_object_73(address_space: &mut AddressSpace) { let name = ""; let node_id = NodeId::new(0, 17592); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17591), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11508), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17591), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17591), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11508), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17591), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_74(address_space: &mut AddressSpace) { @@ -1176,11 +2980,26 @@ fn add_object_74(address_space: &mut AddressSpace) { let name = ""; let node_id = NodeId::new(0, 17593); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17589), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11508), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17591), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17589), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11508), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17591), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_75(address_space: &mut AddressSpace) { @@ -1188,10 +3007,21 @@ fn add_object_75(address_space: &mut AddressSpace) { let name = "Dictionaries"; let node_id = NodeId::new(0, 17594); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2253), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - (&NodeId::new(0, 17591), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2253), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 17591), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_76(address_space: &mut AddressSpace) { @@ -1199,11 +3029,26 @@ fn add_object_76(address_space: &mut AddressSpace) { let name = "InterfaceTypes"; let node_id = NodeId::new(0, 17708); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17602), &ReferenceTypeId::Organizes, ReferenceDirection::Forward), - (&NodeId::new(0, 86), &ReferenceTypeId::Organizes, ReferenceDirection::Inverse), - (&NodeId::new(0, 61), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17602), + &ReferenceTypeId::Organizes, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 86), + &ReferenceTypeId::Organizes, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 61), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_77(address_space: &mut AddressSpace) { @@ -1211,11 +3056,26 @@ fn add_object_77(address_space: &mut AddressSpace) { let name = ""; let node_id = NodeId::new(0, 23519); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 23521), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11508), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 23521), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11508), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_78(address_space: &mut AddressSpace) { @@ -1223,11 +3083,26 @@ fn add_object_78(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 14846); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 14533), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 14873), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 14533), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 14873), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_79(address_space: &mut AddressSpace) { @@ -1235,11 +3110,26 @@ fn add_object_79(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 17537); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16313), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 17538), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16313), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 17538), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_80(address_space: &mut AddressSpace) { @@ -1247,11 +3137,26 @@ fn add_object_80(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 17549); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17548), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 17550), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17548), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 17550), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_81(address_space: &mut AddressSpace) { @@ -1259,11 +3164,26 @@ fn add_object_81(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 15671); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15528), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 15734), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15528), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 15734), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_82(address_space: &mut AddressSpace) { @@ -1271,11 +3191,26 @@ fn add_object_82(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 18815); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18806), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 18824), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 18806), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 18824), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_83(address_space: &mut AddressSpace) { @@ -1283,11 +3218,26 @@ fn add_object_83(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 18816); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18807), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 18827), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 18807), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 18827), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_84(address_space: &mut AddressSpace) { @@ -1295,11 +3245,26 @@ fn add_object_84(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 18817); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18808), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 18830), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 18808), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 18830), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_85(address_space: &mut AddressSpace) { @@ -1307,11 +3272,26 @@ fn add_object_85(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 18818); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18809), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 18833), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 18809), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 18833), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_86(address_space: &mut AddressSpace) { @@ -1319,11 +3299,26 @@ fn add_object_86(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 18819); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18810), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 18836), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 18810), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 18836), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_87(address_space: &mut AddressSpace) { @@ -1331,11 +3326,26 @@ fn add_object_87(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 18820); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18811), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 18839), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 18811), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 18839), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_88(address_space: &mut AddressSpace) { @@ -1343,11 +3353,26 @@ fn add_object_88(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 18821); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18812), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 18842), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 18812), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 18842), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_89(address_space: &mut AddressSpace) { @@ -1355,11 +3380,26 @@ fn add_object_89(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 18822); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18813), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 18845), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 18813), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 18845), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_90(address_space: &mut AddressSpace) { @@ -1367,11 +3407,26 @@ fn add_object_90(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 18823); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18814), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 18848), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 18814), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 18848), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_91(address_space: &mut AddressSpace) { @@ -1379,11 +3434,26 @@ fn add_object_91(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 15736); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15634), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 15738), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15634), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 15738), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_92(address_space: &mut AddressSpace) { @@ -1391,11 +3461,26 @@ fn add_object_92(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 23507); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 23498), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 23514), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 23498), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 23514), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_93(address_space: &mut AddressSpace) { @@ -1403,11 +3488,26 @@ fn add_object_93(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 340); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 338), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 7692), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 338), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 7692), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_94(address_space: &mut AddressSpace) { @@ -1415,11 +3515,26 @@ fn add_object_94(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 855); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 853), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8208), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 853), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8208), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_95(address_space: &mut AddressSpace) { @@ -1427,11 +3542,26 @@ fn add_object_95(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 11957); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11943), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 11959), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11943), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 11959), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_96(address_space: &mut AddressSpace) { @@ -1439,11 +3569,26 @@ fn add_object_96(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 11958); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11944), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 11962), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11944), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 11962), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_97(address_space: &mut AddressSpace) { @@ -1451,11 +3596,26 @@ fn add_object_97(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 858); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 856), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8211), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 856), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8211), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_98(address_space: &mut AddressSpace) { @@ -1463,11 +3623,26 @@ fn add_object_98(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 861); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 859), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8214), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 859), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8214), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_99(address_space: &mut AddressSpace) { @@ -1475,11 +3650,26 @@ fn add_object_99(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 864); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 862), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8217), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 862), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8217), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_100(address_space: &mut AddressSpace) { @@ -1487,10 +3677,24 @@ fn add_object_100(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 867); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 865), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8220), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 865), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8220), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } - diff --git a/server/src/address_space/generated/nodeset_5_10.rs b/server/src/address_space/generated/nodeset_5_10.rs index 11dd40bc8..b1b4b110d 100644 --- a/server/src/address_space/generated/nodeset_5_10.rs +++ b/server/src/address_space/generated/nodeset_5_10.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.NodeSet2.Part5.xml by tools/schema/gen_address_space.js // DO NOT EDIT THIS FILE @@ -9,8 +9,11 @@ use std::{convert::TryFrom, str::FromStr}; #[allow(unused_imports)] use crate::{ - address_space::{EventNotifier, types::*}, - prelude::{DataTypeId, ExtensionObject, LocalizedText, NodeId, ReferenceTypeId, service_types::Argument, UAString, Variant, VariantTypeId} + address_space::{types::*, EventNotifier}, + prelude::{ + service_types::Argument, DataTypeId, ExtensionObject, LocalizedText, NodeId, + ReferenceTypeId, UAString, Variant, VariantTypeId, + }, }; #[allow(unused_variables)] @@ -122,12 +125,28 @@ fn add_variable_1(address_space: &mut AddressSpace) { let name = "Id"; let value = Variant::Empty; let node_id = NodeId::new(0, 3724); - let node = Variable::new_data_value(&node_id, name, name, DataTypeId::Boolean, None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2770), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, DataTypeId::Boolean, None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2770), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_2(address_space: &mut AddressSpace) { @@ -135,12 +154,28 @@ fn add_variable_2(address_space: &mut AddressSpace) { let name = "Id"; let value = Variant::Empty; let node_id = NodeId::new(0, 2756); - let node = Variable::new_data_value(&node_id, name, name, DataTypeId::Boolean, None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2755), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, DataTypeId::Boolean, None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2755), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_3(address_space: &mut AddressSpace) { @@ -148,12 +183,28 @@ fn add_variable_3(address_space: &mut AddressSpace) { let name = "Name"; let value = Variant::Empty; let node_id = NodeId::new(0, 2757); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 20), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2755), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 20), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2755), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_4(address_space: &mut AddressSpace) { @@ -162,11 +213,26 @@ fn add_variable_4(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2758); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2755), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2755), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_5(address_space: &mut AddressSpace) { @@ -174,12 +240,28 @@ fn add_variable_5(address_space: &mut AddressSpace) { let name = "EffectiveDisplayName"; let value = Variant::Empty; let node_id = NodeId::new(0, 2759); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2755), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2755), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_6(address_space: &mut AddressSpace) { @@ -187,12 +269,28 @@ fn add_variable_6(address_space: &mut AddressSpace) { let name = "Id"; let value = Variant::Empty; let node_id = NodeId::new(0, 2763); - let node = Variable::new_data_value(&node_id, name, name, DataTypeId::Boolean, None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2762), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, DataTypeId::Boolean, None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2762), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_7(address_space: &mut AddressSpace) { @@ -200,12 +298,28 @@ fn add_variable_7(address_space: &mut AddressSpace) { let name = "Name"; let value = Variant::Empty; let node_id = NodeId::new(0, 2764); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 20), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2762), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 20), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2762), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_8(address_space: &mut AddressSpace) { @@ -214,11 +328,26 @@ fn add_variable_8(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2765); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2762), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2762), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_9(address_space: &mut AddressSpace) { @@ -226,12 +355,28 @@ fn add_variable_9(address_space: &mut AddressSpace) { let name = "TransitionTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 2766); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2762), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2762), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_10(address_space: &mut AddressSpace) { @@ -239,12 +384,28 @@ fn add_variable_10(address_space: &mut AddressSpace) { let name = "EffectiveTransitionTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 11456); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2762), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2762), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_11(address_space: &mut AddressSpace) { @@ -252,13 +413,33 @@ fn add_variable_11(address_space: &mut AddressSpace) { let name = "CurrentState"; let value = Variant::Empty; let node_id = NodeId::new(0, 2772); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 3728), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2760), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2771), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 3728), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2760), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2771), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_12(address_space: &mut AddressSpace) { @@ -266,12 +447,28 @@ fn add_variable_12(address_space: &mut AddressSpace) { let name = "Id"; let value = Variant::Empty; let node_id = NodeId::new(0, 3728); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2772), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2772), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_13(address_space: &mut AddressSpace) { @@ -279,13 +476,33 @@ fn add_variable_13(address_space: &mut AddressSpace) { let name = "LastTransition"; let value = Variant::Empty; let node_id = NodeId::new(0, 2773); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 3732), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2767), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2771), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 3732), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2767), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2771), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_14(address_space: &mut AddressSpace) { @@ -293,12 +510,28 @@ fn add_variable_14(address_space: &mut AddressSpace) { let name = "Id"; let value = Variant::Empty; let node_id = NodeId::new(0, 3732); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2773), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2773), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_15(address_space: &mut AddressSpace) { @@ -306,12 +539,35 @@ fn add_variable_15(address_space: &mut AddressSpace) { let name = "AvailableStates"; let value = Variant::Empty; let node_id = NodeId::new(0, 17635); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2771), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 17), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2771), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_16(address_space: &mut AddressSpace) { @@ -319,12 +575,35 @@ fn add_variable_16(address_space: &mut AddressSpace) { let name = "AvailableTransitions"; let value = Variant::Empty; let node_id = NodeId::new(0, 17636); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2771), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 17), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2771), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_17(address_space: &mut AddressSpace) { @@ -332,12 +611,28 @@ fn add_variable_17(address_space: &mut AddressSpace) { let name = "Id"; let value = Variant::Empty; let node_id = NodeId::new(0, 2761); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2760), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2760), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_18(address_space: &mut AddressSpace) { @@ -345,12 +640,28 @@ fn add_variable_18(address_space: &mut AddressSpace) { let name = "Id"; let value = Variant::Empty; let node_id = NodeId::new(0, 2768); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2767), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2767), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_19(address_space: &mut AddressSpace) { @@ -359,11 +670,26 @@ fn add_variable_19(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2308); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2307), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2307), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_20(address_space: &mut AddressSpace) { @@ -372,11 +698,26 @@ fn add_variable_20(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2312); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2310), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2310), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_21(address_space: &mut AddressSpace) { @@ -384,12 +725,28 @@ fn add_variable_21(address_space: &mut AddressSpace) { let name = "Expression"; let value = Variant::Empty; let node_id = NodeId::new(0, 15129); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 586), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15128), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 586), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15128), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_22(address_space: &mut AddressSpace) { @@ -398,11 +755,26 @@ fn add_variable_22(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17712); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 6), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17709), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17709), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_23(address_space: &mut AddressSpace) { @@ -411,11 +783,26 @@ fn add_variable_23(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17713); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17709), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17709), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_24(address_space: &mut AddressSpace) { @@ -423,12 +810,28 @@ fn add_variable_24(address_space: &mut AddressSpace) { let name = "VectorUnit"; let value = Variant::Empty; let node_id = NodeId::new(0, 17715); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 887), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17714), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 887), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17714), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_25(address_space: &mut AddressSpace) { @@ -436,12 +839,28 @@ fn add_variable_25(address_space: &mut AddressSpace) { let name = "X"; let value = Variant::Empty; let node_id = NodeId::new(0, 18769); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17716), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17716), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_26(address_space: &mut AddressSpace) { @@ -449,12 +868,28 @@ fn add_variable_26(address_space: &mut AddressSpace) { let name = "Y"; let value = Variant::Empty; let node_id = NodeId::new(0, 18770); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17716), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17716), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_27(address_space: &mut AddressSpace) { @@ -462,12 +897,28 @@ fn add_variable_27(address_space: &mut AddressSpace) { let name = "Z"; let value = Variant::Empty; let node_id = NodeId::new(0, 18771); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17716), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17716), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_28(address_space: &mut AddressSpace) { @@ -475,12 +926,28 @@ fn add_variable_28(address_space: &mut AddressSpace) { let name = "LengthUnit"; let value = Variant::Empty; let node_id = NodeId::new(0, 18773); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 887), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18772), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 887), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18772), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_29(address_space: &mut AddressSpace) { @@ -488,12 +955,28 @@ fn add_variable_29(address_space: &mut AddressSpace) { let name = "X"; let value = Variant::Empty; let node_id = NodeId::new(0, 18776); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18774), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18774), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_30(address_space: &mut AddressSpace) { @@ -501,12 +984,28 @@ fn add_variable_30(address_space: &mut AddressSpace) { let name = "Y"; let value = Variant::Empty; let node_id = NodeId::new(0, 18777); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18774), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18774), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_31(address_space: &mut AddressSpace) { @@ -514,12 +1013,28 @@ fn add_variable_31(address_space: &mut AddressSpace) { let name = "Z"; let value = Variant::Empty; let node_id = NodeId::new(0, 18778); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18774), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18774), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_32(address_space: &mut AddressSpace) { @@ -527,12 +1042,28 @@ fn add_variable_32(address_space: &mut AddressSpace) { let name = "AngleUnit"; let value = Variant::Empty; let node_id = NodeId::new(0, 18780); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 887), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18779), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 887), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18779), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_33(address_space: &mut AddressSpace) { @@ -540,12 +1071,28 @@ fn add_variable_33(address_space: &mut AddressSpace) { let name = "A"; let value = Variant::Empty; let node_id = NodeId::new(0, 18783); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18781), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18781), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_34(address_space: &mut AddressSpace) { @@ -553,12 +1100,28 @@ fn add_variable_34(address_space: &mut AddressSpace) { let name = "B"; let value = Variant::Empty; let node_id = NodeId::new(0, 18784); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18781), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18781), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_35(address_space: &mut AddressSpace) { @@ -566,12 +1129,28 @@ fn add_variable_35(address_space: &mut AddressSpace) { let name = "C"; let value = Variant::Empty; let node_id = NodeId::new(0, 18785); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18781), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18781), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_36(address_space: &mut AddressSpace) { @@ -579,12 +1158,35 @@ fn add_variable_36(address_space: &mut AddressSpace) { let name = "CartesianCoordinates"; let value = Variant::Empty; let node_id = NodeId::new(0, 18801); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 18809), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18772), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18786), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 18809), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 18772), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18786), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_37(address_space: &mut AddressSpace) { @@ -592,12 +1194,35 @@ fn add_variable_37(address_space: &mut AddressSpace) { let name = "Orientation"; let value = Variant::Empty; let node_id = NodeId::new(0, 18787); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 18811), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18779), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18786), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 18811), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 18779), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18786), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_38(address_space: &mut AddressSpace) { @@ -606,11 +1231,26 @@ fn add_variable_38(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 18788); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18786), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18786), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_39(address_space: &mut AddressSpace) { @@ -618,12 +1258,28 @@ fn add_variable_39(address_space: &mut AddressSpace) { let name = "BaseFrame"; let value = Variant::Empty; let node_id = NodeId::new(0, 18789); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18786), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18786), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_40(address_space: &mut AddressSpace) { @@ -632,11 +1288,26 @@ fn add_variable_40(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 18790); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18786), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18786), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_41(address_space: &mut AddressSpace) { @@ -644,15 +1315,50 @@ fn add_variable_41(address_space: &mut AddressSpace) { let name = "CartesianCoordinates"; let value = Variant::Empty; let node_id = NodeId::new(0, 18796); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 18810), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18798), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 18799), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 18800), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 18774), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18791), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 18810), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 18798), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18799), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18800), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18774), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18791), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_42(address_space: &mut AddressSpace) { @@ -660,12 +1366,28 @@ fn add_variable_42(address_space: &mut AddressSpace) { let name = "X"; let value = Variant::Empty; let node_id = NodeId::new(0, 18798); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18796), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18796), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_43(address_space: &mut AddressSpace) { @@ -673,12 +1395,28 @@ fn add_variable_43(address_space: &mut AddressSpace) { let name = "Y"; let value = Variant::Empty; let node_id = NodeId::new(0, 18799); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18796), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18796), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_44(address_space: &mut AddressSpace) { @@ -686,12 +1424,28 @@ fn add_variable_44(address_space: &mut AddressSpace) { let name = "Z"; let value = Variant::Empty; let node_id = NodeId::new(0, 18800); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18796), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18796), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_45(address_space: &mut AddressSpace) { @@ -699,15 +1453,50 @@ fn add_variable_45(address_space: &mut AddressSpace) { let name = "Orientation"; let value = Variant::Empty; let node_id = NodeId::new(0, 18792); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 18812), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 19074), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19075), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19076), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 18781), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18791), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 18812), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 19074), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19075), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19076), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18781), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18791), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_46(address_space: &mut AddressSpace) { @@ -715,12 +1504,28 @@ fn add_variable_46(address_space: &mut AddressSpace) { let name = "A"; let value = Variant::Empty; let node_id = NodeId::new(0, 19074); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18792), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18792), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_47(address_space: &mut AddressSpace) { @@ -728,12 +1533,28 @@ fn add_variable_47(address_space: &mut AddressSpace) { let name = "B"; let value = Variant::Empty; let node_id = NodeId::new(0, 19075); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18792), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18792), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_48(address_space: &mut AddressSpace) { @@ -741,12 +1562,28 @@ fn add_variable_48(address_space: &mut AddressSpace) { let name = "C"; let value = Variant::Empty; let node_id = NodeId::new(0, 19076); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18792), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18792), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_49(address_space: &mut AddressSpace) { @@ -754,13 +1591,33 @@ fn add_variable_49(address_space: &mut AddressSpace) { let name = "Transition"; let value = Variant::Empty; let node_id = NodeId::new(0, 2774); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 3754), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2762), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2311), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 3754), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2762), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2311), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_50(address_space: &mut AddressSpace) { @@ -768,12 +1625,28 @@ fn add_variable_50(address_space: &mut AddressSpace) { let name = "Id"; let value = Variant::Empty; let node_id = NodeId::new(0, 3754); - let node = Variable::new_data_value(&node_id, name, name, DataTypeId::Boolean, None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2774), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, DataTypeId::Boolean, None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2774), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_51(address_space: &mut AddressSpace) { @@ -781,13 +1654,33 @@ fn add_variable_51(address_space: &mut AddressSpace) { let name = "FromState"; let value = Variant::Empty; let node_id = NodeId::new(0, 2775); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 3746), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2755), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2311), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 3746), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2755), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2311), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_52(address_space: &mut AddressSpace) { @@ -795,12 +1688,28 @@ fn add_variable_52(address_space: &mut AddressSpace) { let name = "Id"; let value = Variant::Empty; let node_id = NodeId::new(0, 3746); - let node = Variable::new_data_value(&node_id, name, name, DataTypeId::Boolean, None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2775), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, DataTypeId::Boolean, None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2775), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_53(address_space: &mut AddressSpace) { @@ -808,13 +1717,33 @@ fn add_variable_53(address_space: &mut AddressSpace) { let name = "ToState"; let value = Variant::Empty; let node_id = NodeId::new(0, 2776); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 3750), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2755), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2311), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 3750), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2755), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2311), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_54(address_space: &mut AddressSpace) { @@ -822,12 +1751,28 @@ fn add_variable_54(address_space: &mut AddressSpace) { let name = "Id"; let value = Variant::Empty; let node_id = NodeId::new(0, 3750); - let node = Variable::new_data_value(&node_id, name, name, DataTypeId::Boolean, None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2776), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, DataTypeId::Boolean, None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2776), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_55(address_space: &mut AddressSpace) { @@ -835,12 +1780,28 @@ fn add_variable_55(address_space: &mut AddressSpace) { let name = "OldStateId"; let value = Variant::Empty; let node_id = NodeId::new(0, 2777); - let node = Variable::new_data_value(&node_id, name, name, DataTypeId::Boolean, None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2315), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, DataTypeId::Boolean, None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2315), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_56(address_space: &mut AddressSpace) { @@ -848,12 +1809,28 @@ fn add_variable_56(address_space: &mut AddressSpace) { let name = "NewStateId"; let value = Variant::Empty; let node_id = NodeId::new(0, 2778); - let node = Variable::new_data_value(&node_id, name, name, DataTypeId::Boolean, None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2315), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, DataTypeId::Boolean, None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2315), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_57(address_space: &mut AddressSpace) { @@ -861,56 +1838,125 @@ fn add_variable_57(address_space: &mut AddressSpace) { let name = "EnumValues"; let value = Variant::Empty; let node_id = NodeId::new(0, 11940); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7594), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11939), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 7594), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11939), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_58(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("DirectoryName"), - data_type: NodeId::new(0, 12), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("DirectoryName"), + data_type: NodeId::new(0, 12), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 13356); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13355), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13355), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_59(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("DirectoryNodeId"), - data_type: NodeId::new(0, 17), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("DirectoryNodeId"), + data_type: NodeId::new(0, 17), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 13357); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13355), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13355), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_60(address_space: &mut AddressSpace) { @@ -918,29 +1964,56 @@ fn add_variable_60(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("FileName"), data_type: NodeId::new(0, 12), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("RequestFileOpen"), data_type: NodeId::new(0, 1), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 13359); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13358), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13358), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_61(address_space: &mut AddressSpace) { @@ -948,51 +2021,101 @@ fn add_variable_61(address_space: &mut AddressSpace) { let name = "OutputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("FileNodeId"), data_type: NodeId::new(0, 17), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("FileHandle"), data_type: NodeId::new(0, 7), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 13360); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13358), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13358), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_62(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("ObjectToDelete"), - data_type: NodeId::new(0, 17), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("ObjectToDelete"), + data_type: NodeId::new(0, 17), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 17719); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17718), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17718), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_63(address_space: &mut AddressSpace) { @@ -1000,67 +2123,121 @@ fn add_variable_63(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("ObjectToMoveOrCopy"), data_type: NodeId::new(0, 17), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("TargetDirectory"), data_type: NodeId::new(0, 17), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("CreateCopy"), data_type: NodeId::new(0, 1), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("NewName"), data_type: NodeId::new(0, 12), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 13364); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13363), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13363), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_64(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("NewNodeId"), - data_type: NodeId::new(0, 17), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("NewNodeId"), + data_type: NodeId::new(0, 17), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 13365); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13363), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13363), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_65(address_space: &mut AddressSpace) { @@ -1069,11 +2246,26 @@ fn add_variable_65(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 13367); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 9), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13366), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13366), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_66(address_space: &mut AddressSpace) { @@ -1082,11 +2274,26 @@ fn add_variable_66(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 13368); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13366), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13366), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_67(address_space: &mut AddressSpace) { @@ -1095,11 +2302,26 @@ fn add_variable_67(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 13369); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13366), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13366), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_68(address_space: &mut AddressSpace) { @@ -1108,77 +2330,161 @@ fn add_variable_68(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 13370); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13366), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13366), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_69(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Mode"), - data_type: NodeId::new(0, 3), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Mode"), + data_type: NodeId::new(0, 3), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 13373); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13372), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13372), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_70(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("FileHandle"), - data_type: NodeId::new(0, 7), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("FileHandle"), + data_type: NodeId::new(0, 7), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 13374); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13372), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13372), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_71(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("FileHandle"), - data_type: NodeId::new(0, 7), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("FileHandle"), + data_type: NodeId::new(0, 7), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 13376); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13375), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13375), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_72(address_space: &mut AddressSpace) { @@ -1186,51 +2492,101 @@ fn add_variable_72(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("FileHandle"), data_type: NodeId::new(0, 7), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("Length"), data_type: NodeId::new(0, 6), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 13378); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13377), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13377), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_73(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Data"), - data_type: NodeId::new(0, 15), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Data"), + data_type: NodeId::new(0, 15), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 13379); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13377), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13377), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_74(address_space: &mut AddressSpace) { @@ -1238,73 +2594,146 @@ fn add_variable_74(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("FileHandle"), data_type: NodeId::new(0, 7), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("Data"), data_type: NodeId::new(0, 15), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 13381); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13380), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13380), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_75(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("FileHandle"), - data_type: NodeId::new(0, 7), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("FileHandle"), + data_type: NodeId::new(0, 7), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 13383); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13382), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13382), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_76(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Position"), - data_type: NodeId::new(0, 9), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Position"), + data_type: NodeId::new(0, 9), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 13384); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13382), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13382), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_77(address_space: &mut AddressSpace) { @@ -1312,73 +2741,146 @@ fn add_variable_77(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("FileHandle"), data_type: NodeId::new(0, 7), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("Position"), data_type: NodeId::new(0, 9), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 13386); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13385), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13385), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_78(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("DirectoryName"), - data_type: NodeId::new(0, 12), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("DirectoryName"), + data_type: NodeId::new(0, 12), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 13388); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13387), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13387), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_79(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("DirectoryNodeId"), - data_type: NodeId::new(0, 17), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("DirectoryNodeId"), + data_type: NodeId::new(0, 17), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 13389); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13387), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13387), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_80(address_space: &mut AddressSpace) { @@ -1386,29 +2888,56 @@ fn add_variable_80(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("FileName"), data_type: NodeId::new(0, 12), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("RequestFileOpen"), data_type: NodeId::new(0, 1), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 13391); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13390), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13390), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_81(address_space: &mut AddressSpace) { @@ -1416,51 +2945,101 @@ fn add_variable_81(address_space: &mut AddressSpace) { let name = "OutputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("FileNodeId"), data_type: NodeId::new(0, 17), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("FileHandle"), data_type: NodeId::new(0, 7), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 13392); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13390), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13390), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_82(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("ObjectToDelete"), - data_type: NodeId::new(0, 17), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("ObjectToDelete"), + data_type: NodeId::new(0, 17), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 13394); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13393), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13393), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_83(address_space: &mut AddressSpace) { @@ -1468,109 +3047,201 @@ fn add_variable_83(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("ObjectToMoveOrCopy"), data_type: NodeId::new(0, 17), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("TargetDirectory"), data_type: NodeId::new(0, 17), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("CreateCopy"), data_type: NodeId::new(0, 1), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("NewName"), data_type: NodeId::new(0, 12), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 13396); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13395), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13395), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_84(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("NewNodeId"), - data_type: NodeId::new(0, 17), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("NewNodeId"), + data_type: NodeId::new(0, 17), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 13397); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13395), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13395), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_85(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("DirectoryName"), - data_type: NodeId::new(0, 12), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("DirectoryName"), + data_type: NodeId::new(0, 12), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 16349); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 16348), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16348), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_86(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("DirectoryNodeId"), - data_type: NodeId::new(0, 17), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("DirectoryNodeId"), + data_type: NodeId::new(0, 17), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 16350); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 16348), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16348), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_87(address_space: &mut AddressSpace) { @@ -1578,28 +3249,51 @@ fn add_variable_87(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("FileName"), data_type: NodeId::new(0, 12), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("RequestFileOpen"), data_type: NodeId::new(0, 1), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 16352); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 16351), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16351), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_88(address_space: &mut AddressSpace) { @@ -1607,49 +3301,91 @@ fn add_variable_88(address_space: &mut AddressSpace) { let name = "OutputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("FileNodeId"), data_type: NodeId::new(0, 17), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("FileHandle"), data_type: NodeId::new(0, 7), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 16353); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 16351), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16351), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_89(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("ObjectToDelete"), - data_type: NodeId::new(0, 17), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("ObjectToDelete"), + data_type: NodeId::new(0, 17), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 16355); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 16354), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16354), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_90(address_space: &mut AddressSpace) { @@ -1657,65 +3393,111 @@ fn add_variable_90(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("ObjectToMoveOrCopy"), data_type: NodeId::new(0, 17), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("TargetDirectory"), data_type: NodeId::new(0, 17), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("CreateCopy"), data_type: NodeId::new(0, 1), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("NewName"), data_type: NodeId::new(0, 12), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 16357); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 16356), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16356), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_91(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("NewNodeId"), - data_type: NodeId::new(0, 17), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("NewNodeId"), + data_type: NodeId::new(0, 17), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 16358); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 16356), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16356), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_92(address_space: &mut AddressSpace) { @@ -1723,34 +3505,73 @@ fn add_variable_92(address_space: &mut AddressSpace) { let name = "ClientProcessingTimeout"; let value = Variant::Empty; let node_id = NodeId::new(0, 15745); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15744), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15744), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_93(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("GenerateOptions"), - data_type: NodeId::new(0, 24), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("GenerateOptions"), + data_type: NodeId::new(0, 24), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 15747); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15746), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15746), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_94(address_space: &mut AddressSpace) { @@ -1758,59 +3579,111 @@ fn add_variable_94(address_space: &mut AddressSpace) { let name = "OutputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("FileNodeId"), data_type: NodeId::new(0, 17), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("FileHandle"), data_type: NodeId::new(0, 7), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("CompletionStateMachine"), data_type: NodeId::new(0, 17), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 15748); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15746), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15746), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_95(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("GenerateOptions"), - data_type: NodeId::new(0, 24), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("GenerateOptions"), + data_type: NodeId::new(0, 24), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 16359); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15749), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15749), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_96(address_space: &mut AddressSpace) { @@ -1818,73 +3691,146 @@ fn add_variable_96(address_space: &mut AddressSpace) { let name = "OutputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("FileNodeId"), data_type: NodeId::new(0, 17), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("FileHandle"), data_type: NodeId::new(0, 7), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 15750); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15749), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15749), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_97(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("FileHandle"), - data_type: NodeId::new(0, 7), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("FileHandle"), + data_type: NodeId::new(0, 7), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 15752); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15751), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15751), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_98(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("CompletionStateMachine"), - data_type: NodeId::new(0, 17), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("CompletionStateMachine"), + data_type: NodeId::new(0, 17), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 15753); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15751), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15751), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_99(address_space: &mut AddressSpace) { @@ -1892,13 +3838,33 @@ fn add_variable_99(address_space: &mut AddressSpace) { let name = "CurrentState"; let value = Variant::Empty; let node_id = NodeId::new(0, 15755); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15756), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2760), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15754), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15756), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2760), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15754), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_100(address_space: &mut AddressSpace) { @@ -1906,11 +3872,26 @@ fn add_variable_100(address_space: &mut AddressSpace) { let name = "Id"; let value = Variant::Empty; let node_id = NodeId::new(0, 15756); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15755), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15755), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } - diff --git a/server/src/address_space/generated/nodeset_5_11.rs b/server/src/address_space/generated/nodeset_5_11.rs index 21652554a..ee22a2aae 100644 --- a/server/src/address_space/generated/nodeset_5_11.rs +++ b/server/src/address_space/generated/nodeset_5_11.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.NodeSet2.Part5.xml by tools/schema/gen_address_space.js // DO NOT EDIT THIS FILE @@ -9,8 +9,11 @@ use std::{convert::TryFrom, str::FromStr}; #[allow(unused_imports)] use crate::{ - address_space::{EventNotifier, types::*}, - prelude::{DataTypeId, ExtensionObject, LocalizedText, NodeId, ReferenceTypeId, service_types::Argument, UAString, Variant, VariantTypeId} + address_space::{types::*, EventNotifier}, + prelude::{ + service_types::Argument, DataTypeId, ExtensionObject, LocalizedText, NodeId, + ReferenceTypeId, UAString, Variant, VariantTypeId, + }, }; #[allow(unused_variables)] @@ -123,11 +126,26 @@ fn add_variable_1(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 15816); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15815), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15815), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_2(address_space: &mut AddressSpace) { @@ -136,11 +154,26 @@ fn add_variable_2(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 15818); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15817), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15817), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_3(address_space: &mut AddressSpace) { @@ -149,11 +182,26 @@ fn add_variable_3(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 15820); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15819), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15819), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_4(address_space: &mut AddressSpace) { @@ -162,11 +210,26 @@ fn add_variable_4(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 15822); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15821), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15821), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_5(address_space: &mut AddressSpace) { @@ -175,11 +238,26 @@ fn add_variable_5(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 15824); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15823), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15823), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_6(address_space: &mut AddressSpace) { @@ -188,11 +266,26 @@ fn add_variable_6(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 15826); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15825), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15825), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_7(address_space: &mut AddressSpace) { @@ -201,11 +294,26 @@ fn add_variable_7(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 15828); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15827), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15827), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_8(address_space: &mut AddressSpace) { @@ -214,11 +322,26 @@ fn add_variable_8(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 15830); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15829), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15829), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_9(address_space: &mut AddressSpace) { @@ -227,11 +350,26 @@ fn add_variable_9(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 15832); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15831), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15831), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_10(address_space: &mut AddressSpace) { @@ -240,11 +378,26 @@ fn add_variable_10(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 15834); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15833), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15833), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_11(address_space: &mut AddressSpace) { @@ -253,11 +406,26 @@ fn add_variable_11(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 15836); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15835), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15835), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_12(address_space: &mut AddressSpace) { @@ -266,11 +434,26 @@ fn add_variable_12(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 15838); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15837), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15837), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_13(address_space: &mut AddressSpace) { @@ -279,11 +462,26 @@ fn add_variable_13(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 15840); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15839), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15839), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_14(address_space: &mut AddressSpace) { @@ -292,11 +490,26 @@ fn add_variable_14(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 15842); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15841), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15841), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_15(address_space: &mut AddressSpace) { @@ -304,12 +517,35 @@ fn add_variable_15(address_space: &mut AddressSpace) { let name = "Identities"; let value = Variant::Empty; let node_id = NodeId::new(0, 16162); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15634), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15608), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 15634), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15608), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_16(address_space: &mut AddressSpace) { @@ -317,73 +553,146 @@ fn add_variable_16(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("RoleName"), data_type: NodeId::new(0, 12), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("NamespaceUri"), data_type: NodeId::new(0, 12), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 15998); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15997), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15997), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_17(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("RoleNodeId"), - data_type: NodeId::new(0, 17), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("RoleNodeId"), + data_type: NodeId::new(0, 17), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 15999); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15997), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15997), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_18(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("RoleNodeId"), - data_type: NodeId::new(0, 17), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("RoleNodeId"), + data_type: NodeId::new(0, 17), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 16001); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16000), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16000), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_19(address_space: &mut AddressSpace) { @@ -391,12 +700,35 @@ fn add_variable_19(address_space: &mut AddressSpace) { let name = "Identities"; let value = Variant::Empty; let node_id = NodeId::new(0, 16173); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15634), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15620), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 15634), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15620), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_20(address_space: &mut AddressSpace) { @@ -404,12 +736,35 @@ fn add_variable_20(address_space: &mut AddressSpace) { let name = "Applications"; let value = Variant::Empty; let node_id = NodeId::new(0, 16174); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15620), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 12), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15620), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_21(address_space: &mut AddressSpace) { @@ -418,11 +773,26 @@ fn add_variable_21(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 15410); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15620), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15620), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_22(address_space: &mut AddressSpace) { @@ -430,12 +800,35 @@ fn add_variable_22(address_space: &mut AddressSpace) { let name = "Endpoints"; let value = Variant::Empty; let node_id = NodeId::new(0, 16175); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15528), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15620), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 15528), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15620), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_23(address_space: &mut AddressSpace) { @@ -444,143 +837,296 @@ fn add_variable_23(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 15411); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15620), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15620), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_24(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Rule"), - data_type: NodeId::new(0, 15634), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Rule"), + data_type: NodeId::new(0, 15634), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 15625); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15624), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15624), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_25(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Rule"), - data_type: NodeId::new(0, 15634), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Rule"), + data_type: NodeId::new(0, 15634), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 15627); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15626), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15626), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_26(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("ApplicationUri"), - data_type: NodeId::new(0, 12), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("ApplicationUri"), + data_type: NodeId::new(0, 12), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 16177); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16176), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16176), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_27(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("ApplicationUri"), - data_type: NodeId::new(0, 12), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("ApplicationUri"), + data_type: NodeId::new(0, 12), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 16179); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16178), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16178), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_28(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Endpoint"), - data_type: NodeId::new(0, 15528), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Endpoint"), + data_type: NodeId::new(0, 15528), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 16181); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16180), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16180), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_29(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Endpoint"), - data_type: NodeId::new(0, 15528), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Endpoint"), + data_type: NodeId::new(0, 15528), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 16183); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16182), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16182), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_30(address_space: &mut AddressSpace) { @@ -588,12 +1134,35 @@ fn add_variable_30(address_space: &mut AddressSpace) { let name = "EnumValues"; let value = Variant::Empty; let node_id = NodeId::new(0, 15633); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7594), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15632), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 7594), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15632), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_31(address_space: &mut AddressSpace) { @@ -601,11 +1170,30 @@ fn add_variable_31(address_space: &mut AddressSpace) { let name = "Identities"; let value = Variant::Empty; let node_id = NodeId::new(0, 16192); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15634), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15644), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 15634), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15644), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_32(address_space: &mut AddressSpace) { @@ -613,11 +1201,30 @@ fn add_variable_32(address_space: &mut AddressSpace) { let name = "Applications"; let value = Variant::Empty; let node_id = NodeId::new(0, 16193); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15644), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 12), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15644), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_33(address_space: &mut AddressSpace) { @@ -626,10 +1233,21 @@ fn add_variable_33(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 15412); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15644), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15644), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_34(address_space: &mut AddressSpace) { @@ -637,11 +1255,30 @@ fn add_variable_34(address_space: &mut AddressSpace) { let name = "Endpoints"; let value = Variant::Empty; let node_id = NodeId::new(0, 16194); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15528), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15644), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 15528), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15644), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_35(address_space: &mut AddressSpace) { @@ -650,136 +1287,261 @@ fn add_variable_35(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 15413); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15644), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15644), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_36(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Rule"), - data_type: NodeId::new(0, 15634), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Rule"), + data_type: NodeId::new(0, 15634), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 15649); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15648), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15648), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_37(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Rule"), - data_type: NodeId::new(0, 15634), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Rule"), + data_type: NodeId::new(0, 15634), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 15651); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15650), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15650), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_38(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("ApplicationUri"), - data_type: NodeId::new(0, 12), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("ApplicationUri"), + data_type: NodeId::new(0, 12), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 16196); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 16195), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16195), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_39(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("ApplicationUri"), - data_type: NodeId::new(0, 12), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("ApplicationUri"), + data_type: NodeId::new(0, 12), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 16198); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 16197), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16197), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_40(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Endpoint"), - data_type: NodeId::new(0, 15528), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Endpoint"), + data_type: NodeId::new(0, 15528), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 16200); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 16199), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16199), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_41(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Endpoint"), - data_type: NodeId::new(0, 15528), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Endpoint"), + data_type: NodeId::new(0, 15528), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 16202); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 16201), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16201), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_42(address_space: &mut AddressSpace) { @@ -787,11 +1549,30 @@ fn add_variable_42(address_space: &mut AddressSpace) { let name = "Identities"; let value = Variant::Empty; let node_id = NodeId::new(0, 16203); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15634), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15656), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 15634), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15656), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_43(address_space: &mut AddressSpace) { @@ -799,11 +1580,30 @@ fn add_variable_43(address_space: &mut AddressSpace) { let name = "Applications"; let value = Variant::Empty; let node_id = NodeId::new(0, 16204); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15656), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 12), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15656), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_44(address_space: &mut AddressSpace) { @@ -812,10 +1612,21 @@ fn add_variable_44(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 15414); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15656), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15656), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_45(address_space: &mut AddressSpace) { @@ -823,11 +1634,30 @@ fn add_variable_45(address_space: &mut AddressSpace) { let name = "Endpoints"; let value = Variant::Empty; let node_id = NodeId::new(0, 16205); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15528), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15656), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 15528), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15656), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_46(address_space: &mut AddressSpace) { @@ -836,136 +1666,261 @@ fn add_variable_46(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 15415); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15656), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15656), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_47(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Rule"), - data_type: NodeId::new(0, 15634), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Rule"), + data_type: NodeId::new(0, 15634), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 15661); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15660), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15660), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_48(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Rule"), - data_type: NodeId::new(0, 15634), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Rule"), + data_type: NodeId::new(0, 15634), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 15663); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15662), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15662), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_49(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("ApplicationUri"), - data_type: NodeId::new(0, 12), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("ApplicationUri"), + data_type: NodeId::new(0, 12), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 16207); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 16206), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16206), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_50(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("ApplicationUri"), - data_type: NodeId::new(0, 12), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("ApplicationUri"), + data_type: NodeId::new(0, 12), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 16209); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 16208), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16208), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_51(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Endpoint"), - data_type: NodeId::new(0, 15528), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Endpoint"), + data_type: NodeId::new(0, 15528), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 16211); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 16210), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16210), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_52(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Endpoint"), - data_type: NodeId::new(0, 15528), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Endpoint"), + data_type: NodeId::new(0, 15528), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 16213); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 16212), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16212), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_53(address_space: &mut AddressSpace) { @@ -973,11 +1928,30 @@ fn add_variable_53(address_space: &mut AddressSpace) { let name = "Identities"; let value = Variant::Empty; let node_id = NodeId::new(0, 16214); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15634), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15668), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 15634), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15668), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_54(address_space: &mut AddressSpace) { @@ -985,11 +1959,30 @@ fn add_variable_54(address_space: &mut AddressSpace) { let name = "Applications"; let value = Variant::Empty; let node_id = NodeId::new(0, 16215); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15668), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 12), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15668), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_55(address_space: &mut AddressSpace) { @@ -998,10 +1991,21 @@ fn add_variable_55(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 15416); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15668), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15668), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_56(address_space: &mut AddressSpace) { @@ -1009,11 +2013,30 @@ fn add_variable_56(address_space: &mut AddressSpace) { let name = "Endpoints"; let value = Variant::Empty; let node_id = NodeId::new(0, 16216); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15528), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15668), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 15528), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15668), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_57(address_space: &mut AddressSpace) { @@ -1022,136 +2045,261 @@ fn add_variable_57(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 15417); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15668), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15668), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_58(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Rule"), - data_type: NodeId::new(0, 15634), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Rule"), + data_type: NodeId::new(0, 15634), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 15673); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15672), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15672), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_59(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Rule"), - data_type: NodeId::new(0, 15634), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Rule"), + data_type: NodeId::new(0, 15634), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 15675); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15674), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15674), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_60(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("ApplicationUri"), - data_type: NodeId::new(0, 12), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("ApplicationUri"), + data_type: NodeId::new(0, 12), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 16218); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 16217), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16217), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_61(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("ApplicationUri"), - data_type: NodeId::new(0, 12), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("ApplicationUri"), + data_type: NodeId::new(0, 12), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 16220); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 16219), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16219), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_62(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Endpoint"), - data_type: NodeId::new(0, 15528), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Endpoint"), + data_type: NodeId::new(0, 15528), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 16222); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 16221), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16221), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_63(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Endpoint"), - data_type: NodeId::new(0, 15528), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Endpoint"), + data_type: NodeId::new(0, 15528), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 16224); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 16223), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16223), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_64(address_space: &mut AddressSpace) { @@ -1159,11 +2307,30 @@ fn add_variable_64(address_space: &mut AddressSpace) { let name = "Identities"; let value = Variant::Empty; let node_id = NodeId::new(0, 16225); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15634), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15680), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 15634), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15680), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_65(address_space: &mut AddressSpace) { @@ -1171,11 +2338,30 @@ fn add_variable_65(address_space: &mut AddressSpace) { let name = "Applications"; let value = Variant::Empty; let node_id = NodeId::new(0, 16226); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15680), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 12), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15680), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_66(address_space: &mut AddressSpace) { @@ -1184,10 +2370,21 @@ fn add_variable_66(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 15418); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15680), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15680), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_67(address_space: &mut AddressSpace) { @@ -1195,11 +2392,30 @@ fn add_variable_67(address_space: &mut AddressSpace) { let name = "Endpoints"; let value = Variant::Empty; let node_id = NodeId::new(0, 16227); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15528), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15680), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 15528), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15680), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_68(address_space: &mut AddressSpace) { @@ -1208,136 +2424,261 @@ fn add_variable_68(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 15423); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15680), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15680), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_69(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Rule"), - data_type: NodeId::new(0, 15634), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Rule"), + data_type: NodeId::new(0, 15634), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 15685); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15684), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15684), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_70(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Rule"), - data_type: NodeId::new(0, 15634), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Rule"), + data_type: NodeId::new(0, 15634), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 15687); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15686), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15686), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_71(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("ApplicationUri"), - data_type: NodeId::new(0, 12), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("ApplicationUri"), + data_type: NodeId::new(0, 12), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 16229); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 16228), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16228), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_72(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("ApplicationUri"), - data_type: NodeId::new(0, 12), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("ApplicationUri"), + data_type: NodeId::new(0, 12), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 16231); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 16230), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16230), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_73(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Endpoint"), - data_type: NodeId::new(0, 15528), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Endpoint"), + data_type: NodeId::new(0, 15528), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 16233); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 16232), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16232), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_74(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Endpoint"), - data_type: NodeId::new(0, 15528), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Endpoint"), + data_type: NodeId::new(0, 15528), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 16235); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 16234), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16234), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_75(address_space: &mut AddressSpace) { @@ -1345,11 +2686,30 @@ fn add_variable_75(address_space: &mut AddressSpace) { let name = "Identities"; let value = Variant::Empty; let node_id = NodeId::new(0, 16236); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15634), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 16036), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 15634), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16036), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_76(address_space: &mut AddressSpace) { @@ -1357,11 +2717,30 @@ fn add_variable_76(address_space: &mut AddressSpace) { let name = "Applications"; let value = Variant::Empty; let node_id = NodeId::new(0, 16237); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 16036), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 12), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16036), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_77(address_space: &mut AddressSpace) { @@ -1370,10 +2749,21 @@ fn add_variable_77(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 15424); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 16036), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16036), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_78(address_space: &mut AddressSpace) { @@ -1381,11 +2771,30 @@ fn add_variable_78(address_space: &mut AddressSpace) { let name = "Endpoints"; let value = Variant::Empty; let node_id = NodeId::new(0, 16238); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15528), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 16036), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 15528), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16036), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_79(address_space: &mut AddressSpace) { @@ -1394,136 +2803,261 @@ fn add_variable_79(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 15425); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 16036), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16036), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_80(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Rule"), - data_type: NodeId::new(0, 15634), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Rule"), + data_type: NodeId::new(0, 15634), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 16042); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 16041), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16041), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_81(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Rule"), - data_type: NodeId::new(0, 15634), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Rule"), + data_type: NodeId::new(0, 15634), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 16044); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 16043), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16043), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_82(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("ApplicationUri"), - data_type: NodeId::new(0, 12), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("ApplicationUri"), + data_type: NodeId::new(0, 12), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 16240); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 16239), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16239), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_83(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("ApplicationUri"), - data_type: NodeId::new(0, 12), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("ApplicationUri"), + data_type: NodeId::new(0, 12), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 16242); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 16241), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16241), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_84(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Endpoint"), - data_type: NodeId::new(0, 15528), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Endpoint"), + data_type: NodeId::new(0, 15528), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 16244); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 16243), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16243), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_85(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Endpoint"), - data_type: NodeId::new(0, 15528), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Endpoint"), + data_type: NodeId::new(0, 15528), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 16246); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 16245), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16245), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_86(address_space: &mut AddressSpace) { @@ -1531,11 +3065,30 @@ fn add_variable_86(address_space: &mut AddressSpace) { let name = "Identities"; let value = Variant::Empty; let node_id = NodeId::new(0, 16247); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15634), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15692), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 15634), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15692), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_87(address_space: &mut AddressSpace) { @@ -1543,11 +3096,30 @@ fn add_variable_87(address_space: &mut AddressSpace) { let name = "Applications"; let value = Variant::Empty; let node_id = NodeId::new(0, 16248); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15692), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 12), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15692), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_88(address_space: &mut AddressSpace) { @@ -1556,10 +3128,21 @@ fn add_variable_88(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 15426); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15692), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15692), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_89(address_space: &mut AddressSpace) { @@ -1567,11 +3150,30 @@ fn add_variable_89(address_space: &mut AddressSpace) { let name = "Endpoints"; let value = Variant::Empty; let node_id = NodeId::new(0, 16249); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15528), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15692), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 15528), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15692), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_90(address_space: &mut AddressSpace) { @@ -1580,136 +3182,261 @@ fn add_variable_90(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 15427); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15692), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15692), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_91(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Rule"), - data_type: NodeId::new(0, 15634), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Rule"), + data_type: NodeId::new(0, 15634), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 15697); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15696), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15696), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_92(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Rule"), - data_type: NodeId::new(0, 15634), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Rule"), + data_type: NodeId::new(0, 15634), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 15699); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15698), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15698), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_93(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("ApplicationUri"), - data_type: NodeId::new(0, 12), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("ApplicationUri"), + data_type: NodeId::new(0, 12), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 16251); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 16250), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16250), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_94(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("ApplicationUri"), - data_type: NodeId::new(0, 12), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("ApplicationUri"), + data_type: NodeId::new(0, 12), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 16253); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 16252), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16252), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_95(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Endpoint"), - data_type: NodeId::new(0, 15528), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Endpoint"), + data_type: NodeId::new(0, 15528), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 16255); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 16254), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16254), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_96(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Endpoint"), - data_type: NodeId::new(0, 15528), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Endpoint"), + data_type: NodeId::new(0, 15528), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 16257); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 16256), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16256), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_97(address_space: &mut AddressSpace) { @@ -1717,11 +3444,30 @@ fn add_variable_97(address_space: &mut AddressSpace) { let name = "Identities"; let value = Variant::Empty; let node_id = NodeId::new(0, 16269); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15634), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15716), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 15634), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15716), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_98(address_space: &mut AddressSpace) { @@ -1729,11 +3475,30 @@ fn add_variable_98(address_space: &mut AddressSpace) { let name = "Applications"; let value = Variant::Empty; let node_id = NodeId::new(0, 16270); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15716), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 12), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15716), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_99(address_space: &mut AddressSpace) { @@ -1742,10 +3507,21 @@ fn add_variable_99(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 15428); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15716), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15716), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_100(address_space: &mut AddressSpace) { @@ -1753,10 +3529,28 @@ fn add_variable_100(address_space: &mut AddressSpace) { let name = "Endpoints"; let value = Variant::Empty; let node_id = NodeId::new(0, 16271); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15528), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15716), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 15528), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15716), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } - diff --git a/server/src/address_space/generated/nodeset_5_12.rs b/server/src/address_space/generated/nodeset_5_12.rs index 53f92605c..63ab1e4ab 100644 --- a/server/src/address_space/generated/nodeset_5_12.rs +++ b/server/src/address_space/generated/nodeset_5_12.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.NodeSet2.Part5.xml by tools/schema/gen_address_space.js // DO NOT EDIT THIS FILE @@ -9,8 +9,11 @@ use std::{convert::TryFrom, str::FromStr}; #[allow(unused_imports)] use crate::{ - address_space::{EventNotifier, types::*}, - prelude::{DataTypeId, ExtensionObject, LocalizedText, NodeId, ReferenceTypeId, service_types::Argument, UAString, Variant, VariantTypeId} + address_space::{types::*, EventNotifier}, + prelude::{ + service_types::Argument, DataTypeId, ExtensionObject, LocalizedText, NodeId, + ReferenceTypeId, UAString, Variant, VariantTypeId, + }, }; #[allow(unused_variables)] @@ -123,136 +126,261 @@ fn add_variable_1(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 15429); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15716), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15716), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_2(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Rule"), - data_type: NodeId::new(0, 15634), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Rule"), + data_type: NodeId::new(0, 15634), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 15721); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15720), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15720), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_3(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Rule"), - data_type: NodeId::new(0, 15634), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Rule"), + data_type: NodeId::new(0, 15634), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 15723); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15722), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15722), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_4(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("ApplicationUri"), - data_type: NodeId::new(0, 12), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("ApplicationUri"), + data_type: NodeId::new(0, 12), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 16273); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 16272), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16272), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_5(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("ApplicationUri"), - data_type: NodeId::new(0, 12), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("ApplicationUri"), + data_type: NodeId::new(0, 12), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 16275); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 16274), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16274), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_6(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Endpoint"), - data_type: NodeId::new(0, 15528), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Endpoint"), + data_type: NodeId::new(0, 15528), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 16277); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 16276), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16276), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_7(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Endpoint"), - data_type: NodeId::new(0, 15528), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Endpoint"), + data_type: NodeId::new(0, 15528), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 16279); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 16278), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16278), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_8(address_space: &mut AddressSpace) { @@ -260,11 +388,30 @@ fn add_variable_8(address_space: &mut AddressSpace) { let name = "Identities"; let value = Variant::Empty; let node_id = NodeId::new(0, 16258); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15634), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15704), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 15634), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15704), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_9(address_space: &mut AddressSpace) { @@ -272,11 +419,30 @@ fn add_variable_9(address_space: &mut AddressSpace) { let name = "Applications"; let value = Variant::Empty; let node_id = NodeId::new(0, 16259); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15704), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 12), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15704), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_10(address_space: &mut AddressSpace) { @@ -285,10 +451,21 @@ fn add_variable_10(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 15430); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15704), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15704), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_11(address_space: &mut AddressSpace) { @@ -296,11 +473,30 @@ fn add_variable_11(address_space: &mut AddressSpace) { let name = "Endpoints"; let value = Variant::Empty; let node_id = NodeId::new(0, 16260); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15528), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15704), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 15528), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15704), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_12(address_space: &mut AddressSpace) { @@ -309,136 +505,261 @@ fn add_variable_12(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 15527); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15704), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15704), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_13(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Rule"), - data_type: NodeId::new(0, 15634), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Rule"), + data_type: NodeId::new(0, 15634), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 15709); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15708), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15708), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_14(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Rule"), - data_type: NodeId::new(0, 15634), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Rule"), + data_type: NodeId::new(0, 15634), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 15711); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15710), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15710), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_15(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("ApplicationUri"), - data_type: NodeId::new(0, 12), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("ApplicationUri"), + data_type: NodeId::new(0, 12), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 16262); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 16261), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16261), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_16(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("ApplicationUri"), - data_type: NodeId::new(0, 12), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("ApplicationUri"), + data_type: NodeId::new(0, 12), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 16264); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 16263), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16263), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_17(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Endpoint"), - data_type: NodeId::new(0, 15528), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Endpoint"), + data_type: NodeId::new(0, 15528), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 16266); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 16265), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16265), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_18(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Endpoint"), - data_type: NodeId::new(0, 15528), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Endpoint"), + data_type: NodeId::new(0, 15528), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 16268); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 16267), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16267), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_19(address_space: &mut AddressSpace) { @@ -446,12 +767,28 @@ fn add_variable_19(address_space: &mut AddressSpace) { let name = "NumberInList"; let value = Variant::Empty; let node_id = NodeId::new(0, 23517); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 26), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 23513), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 26), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 23513), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_20(address_space: &mut AddressSpace) { @@ -459,12 +796,28 @@ fn add_variable_20(address_space: &mut AddressSpace) { let name = "NumberInList"; let value = Variant::Empty; let node_id = NodeId::new(0, 23521); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 26), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 23519), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 26), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 23519), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_21(address_space: &mut AddressSpace) { @@ -472,12 +825,28 @@ fn add_variable_21(address_space: &mut AddressSpace) { let name = "NodeVersion"; let value = Variant::Empty; let node_id = NodeId::new(0, 23525); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 23518), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 23518), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_22(address_space: &mut AddressSpace) { @@ -485,12 +854,35 @@ fn add_variable_22(address_space: &mut AddressSpace) { let name = "EnumStrings"; let value = Variant::Empty; let node_id = NodeId::new(0, 7611); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 851), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 21), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 851), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_23(address_space: &mut AddressSpace) { @@ -498,12 +890,35 @@ fn add_variable_23(address_space: &mut AddressSpace) { let name = "EnumStrings"; let value = Variant::Empty; let node_id = NodeId::new(0, 7612); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 852), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 21), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 852), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_24(address_space: &mut AddressSpace) { @@ -511,12 +926,35 @@ fn add_variable_24(address_space: &mut AddressSpace) { let name = "EnumValues"; let value = Variant::Empty; let node_id = NodeId::new(0, 11942); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7594), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11941), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 7594), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11941), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_25(address_space: &mut AddressSpace) { @@ -524,144 +962,688 @@ fn add_variable_25(address_space: &mut AddressSpace) { let name = "Opc.Ua"; let value = Variant::Empty; let node_id = NodeId::new(0, 7617); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 7619), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15037), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 14873), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17538), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17550), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15734), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 18824), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 18827), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 18830), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 18833), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 18836), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 18839), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 18842), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 18845), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 18848), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15738), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 23514), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12681), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15741), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 14855), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15599), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15602), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15501), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15521), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 14849), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 14852), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 14876), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15766), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15769), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 14324), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15772), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15775), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15778), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15781), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15784), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15787), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 21156), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15793), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15854), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15857), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15860), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 21159), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 21162), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 21165), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15866), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15869), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15872), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15877), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15880), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15883), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15886), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 21002), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15889), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 21168), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15895), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15898), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15919), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15922), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15925), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15931), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17469), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 21171), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15524), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15940), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15943), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15946), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 23502), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16131), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 18178), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 18181), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 18184), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 18187), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 7650), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 7656), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 14870), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12767), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12770), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8914), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 7665), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12213), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 7662), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 7668), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 7782), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12902), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12905), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 7698), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 7671), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 7674), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 7677), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 7680), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 7683), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 7728), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 7731), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 7734), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 7737), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12718), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12721), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 7686), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 7929), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 7932), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 7935), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 7938), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 7941), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 7944), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 7947), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8004), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8067), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8073), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8076), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8172), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 7692), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8208), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 11959), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 11962), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8211), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8214), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8217), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8220), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8223), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8226), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 7659), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8229), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8232), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8235), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8238), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8241), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12183), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12186), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12091), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12094), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8247), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15398), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8244), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 93), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - (&NodeId::new(0, 72), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 7619), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15037), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14873), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17538), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17550), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15734), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18824), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18827), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18830), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18833), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18836), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18839), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18842), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18845), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18848), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15738), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 23514), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12681), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15741), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14855), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15599), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15602), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15501), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15521), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14849), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14852), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14876), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15766), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15769), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14324), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15772), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15775), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15778), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15781), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15784), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15787), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21156), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15793), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15854), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15857), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15860), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21159), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21162), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21165), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15866), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15869), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15872), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15877), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15880), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15883), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15886), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21002), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15889), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21168), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15895), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15898), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15919), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15922), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15925), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15931), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17469), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21171), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15524), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15940), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15943), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15946), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 23502), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16131), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18178), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18181), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18184), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18187), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7650), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7656), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14870), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12767), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12770), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8914), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7665), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12213), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7662), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7668), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7782), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12902), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12905), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7698), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7671), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7674), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7677), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7680), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7683), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7728), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7731), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7734), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7737), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12718), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12721), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7686), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7929), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7932), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7935), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7938), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7941), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7944), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7947), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8004), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8067), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8073), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8076), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8172), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7692), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8208), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11959), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11962), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8211), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8214), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8217), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8220), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8223), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8226), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7659), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8229), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8232), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8235), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8238), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8241), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12183), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12186), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12091), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12094), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8247), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15398), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8244), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 93), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 72), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_variable_26(address_space: &mut AddressSpace) { @@ -669,11 +1651,23 @@ fn add_variable_26(address_space: &mut AddressSpace) { let name = "NamespaceUri"; let value = Variant::Empty; let node_id = NodeId::new(0, 7619); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_27(address_space: &mut AddressSpace) { @@ -682,10 +1676,21 @@ fn add_variable_27(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 15037); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_28(address_space: &mut AddressSpace) { @@ -693,11 +1698,23 @@ fn add_variable_28(address_space: &mut AddressSpace) { let name = "KeyValuePair"; let value = Variant::Empty; let node_id = NodeId::new(0, 14873); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_29(address_space: &mut AddressSpace) { @@ -705,11 +1722,23 @@ fn add_variable_29(address_space: &mut AddressSpace) { let name = "AdditionalParametersType"; let value = Variant::Empty; let node_id = NodeId::new(0, 17538); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_30(address_space: &mut AddressSpace) { @@ -717,11 +1746,23 @@ fn add_variable_30(address_space: &mut AddressSpace) { let name = "EphemeralKeyType"; let value = Variant::Empty; let node_id = NodeId::new(0, 17550); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_31(address_space: &mut AddressSpace) { @@ -729,11 +1770,23 @@ fn add_variable_31(address_space: &mut AddressSpace) { let name = "EndpointType"; let value = Variant::Empty; let node_id = NodeId::new(0, 15734); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_32(address_space: &mut AddressSpace) { @@ -741,11 +1794,23 @@ fn add_variable_32(address_space: &mut AddressSpace) { let name = "RationalNumber"; let value = Variant::Empty; let node_id = NodeId::new(0, 18824); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_33(address_space: &mut AddressSpace) { @@ -753,11 +1818,23 @@ fn add_variable_33(address_space: &mut AddressSpace) { let name = "Vector"; let value = Variant::Empty; let node_id = NodeId::new(0, 18827); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_34(address_space: &mut AddressSpace) { @@ -765,11 +1842,23 @@ fn add_variable_34(address_space: &mut AddressSpace) { let name = "3DVector"; let value = Variant::Empty; let node_id = NodeId::new(0, 18830); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_35(address_space: &mut AddressSpace) { @@ -777,11 +1866,23 @@ fn add_variable_35(address_space: &mut AddressSpace) { let name = "CartesianCoordinates"; let value = Variant::Empty; let node_id = NodeId::new(0, 18833); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_36(address_space: &mut AddressSpace) { @@ -789,11 +1890,23 @@ fn add_variable_36(address_space: &mut AddressSpace) { let name = "3DCartesianCoordinates"; let value = Variant::Empty; let node_id = NodeId::new(0, 18836); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_37(address_space: &mut AddressSpace) { @@ -801,11 +1914,23 @@ fn add_variable_37(address_space: &mut AddressSpace) { let name = "Orientation"; let value = Variant::Empty; let node_id = NodeId::new(0, 18839); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_38(address_space: &mut AddressSpace) { @@ -813,11 +1938,23 @@ fn add_variable_38(address_space: &mut AddressSpace) { let name = "3DOrientation"; let value = Variant::Empty; let node_id = NodeId::new(0, 18842); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_39(address_space: &mut AddressSpace) { @@ -825,11 +1962,23 @@ fn add_variable_39(address_space: &mut AddressSpace) { let name = "Frame"; let value = Variant::Empty; let node_id = NodeId::new(0, 18845); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_40(address_space: &mut AddressSpace) { @@ -837,11 +1986,23 @@ fn add_variable_40(address_space: &mut AddressSpace) { let name = "3DFrame"; let value = Variant::Empty; let node_id = NodeId::new(0, 18848); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_41(address_space: &mut AddressSpace) { @@ -849,11 +2010,23 @@ fn add_variable_41(address_space: &mut AddressSpace) { let name = "IdentityMappingRuleType"; let value = Variant::Empty; let node_id = NodeId::new(0, 15738); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_42(address_space: &mut AddressSpace) { @@ -861,11 +2034,23 @@ fn add_variable_42(address_space: &mut AddressSpace) { let name = "CurrencyUnitType"; let value = Variant::Empty; let node_id = NodeId::new(0, 23514); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_43(address_space: &mut AddressSpace) { @@ -873,11 +2058,23 @@ fn add_variable_43(address_space: &mut AddressSpace) { let name = "TrustListDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 12681); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_44(address_space: &mut AddressSpace) { @@ -885,11 +2082,23 @@ fn add_variable_44(address_space: &mut AddressSpace) { let name = "DataTypeSchemaHeader"; let value = Variant::Empty; let node_id = NodeId::new(0, 15741); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_45(address_space: &mut AddressSpace) { @@ -897,11 +2106,23 @@ fn add_variable_45(address_space: &mut AddressSpace) { let name = "DataTypeDescription"; let value = Variant::Empty; let node_id = NodeId::new(0, 14855); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_46(address_space: &mut AddressSpace) { @@ -909,11 +2130,23 @@ fn add_variable_46(address_space: &mut AddressSpace) { let name = "StructureDescription"; let value = Variant::Empty; let node_id = NodeId::new(0, 15599); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_47(address_space: &mut AddressSpace) { @@ -921,11 +2154,23 @@ fn add_variable_47(address_space: &mut AddressSpace) { let name = "EnumDescription"; let value = Variant::Empty; let node_id = NodeId::new(0, 15602); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_48(address_space: &mut AddressSpace) { @@ -933,11 +2178,23 @@ fn add_variable_48(address_space: &mut AddressSpace) { let name = "SimpleTypeDescription"; let value = Variant::Empty; let node_id = NodeId::new(0, 15501); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_49(address_space: &mut AddressSpace) { @@ -945,11 +2202,23 @@ fn add_variable_49(address_space: &mut AddressSpace) { let name = "UABinaryFileDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 15521); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_50(address_space: &mut AddressSpace) { @@ -957,11 +2226,23 @@ fn add_variable_50(address_space: &mut AddressSpace) { let name = "DataSetMetaDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 14849); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_51(address_space: &mut AddressSpace) { @@ -969,11 +2250,23 @@ fn add_variable_51(address_space: &mut AddressSpace) { let name = "FieldMetaData"; let value = Variant::Empty; let node_id = NodeId::new(0, 14852); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_52(address_space: &mut AddressSpace) { @@ -981,11 +2274,23 @@ fn add_variable_52(address_space: &mut AddressSpace) { let name = "ConfigurationVersionDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 14876); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_53(address_space: &mut AddressSpace) { @@ -993,11 +2298,23 @@ fn add_variable_53(address_space: &mut AddressSpace) { let name = "PublishedDataSetDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 15766); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_54(address_space: &mut AddressSpace) { @@ -1005,11 +2322,23 @@ fn add_variable_54(address_space: &mut AddressSpace) { let name = "PublishedDataSetSourceDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 15769); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_55(address_space: &mut AddressSpace) { @@ -1017,11 +2346,23 @@ fn add_variable_55(address_space: &mut AddressSpace) { let name = "PublishedVariableDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 14324); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_56(address_space: &mut AddressSpace) { @@ -1029,11 +2370,23 @@ fn add_variable_56(address_space: &mut AddressSpace) { let name = "PublishedDataItemsDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 15772); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_57(address_space: &mut AddressSpace) { @@ -1041,11 +2394,23 @@ fn add_variable_57(address_space: &mut AddressSpace) { let name = "PublishedEventsDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 15775); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_58(address_space: &mut AddressSpace) { @@ -1053,11 +2418,23 @@ fn add_variable_58(address_space: &mut AddressSpace) { let name = "DataSetWriterDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 15778); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_59(address_space: &mut AddressSpace) { @@ -1065,11 +2442,23 @@ fn add_variable_59(address_space: &mut AddressSpace) { let name = "DataSetWriterTransportDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 15781); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_60(address_space: &mut AddressSpace) { @@ -1077,11 +2466,23 @@ fn add_variable_60(address_space: &mut AddressSpace) { let name = "DataSetWriterMessageDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 15784); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_61(address_space: &mut AddressSpace) { @@ -1089,11 +2490,23 @@ fn add_variable_61(address_space: &mut AddressSpace) { let name = "PubSubGroupDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 15787); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_62(address_space: &mut AddressSpace) { @@ -1101,11 +2514,23 @@ fn add_variable_62(address_space: &mut AddressSpace) { let name = "WriterGroupDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 21156); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_63(address_space: &mut AddressSpace) { @@ -1113,11 +2538,23 @@ fn add_variable_63(address_space: &mut AddressSpace) { let name = "WriterGroupTransportDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 15793); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_64(address_space: &mut AddressSpace) { @@ -1125,11 +2562,23 @@ fn add_variable_64(address_space: &mut AddressSpace) { let name = "WriterGroupMessageDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 15854); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_65(address_space: &mut AddressSpace) { @@ -1137,11 +2586,23 @@ fn add_variable_65(address_space: &mut AddressSpace) { let name = "PubSubConnectionDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 15857); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_66(address_space: &mut AddressSpace) { @@ -1149,11 +2610,23 @@ fn add_variable_66(address_space: &mut AddressSpace) { let name = "ConnectionTransportDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 15860); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_67(address_space: &mut AddressSpace) { @@ -1161,11 +2634,23 @@ fn add_variable_67(address_space: &mut AddressSpace) { let name = "NetworkAddressDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 21159); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_68(address_space: &mut AddressSpace) { @@ -1173,11 +2658,23 @@ fn add_variable_68(address_space: &mut AddressSpace) { let name = "NetworkAddressUrlDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 21162); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_69(address_space: &mut AddressSpace) { @@ -1185,11 +2682,23 @@ fn add_variable_69(address_space: &mut AddressSpace) { let name = "ReaderGroupDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 21165); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_70(address_space: &mut AddressSpace) { @@ -1197,11 +2706,23 @@ fn add_variable_70(address_space: &mut AddressSpace) { let name = "ReaderGroupTransportDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 15866); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_71(address_space: &mut AddressSpace) { @@ -1209,11 +2730,23 @@ fn add_variable_71(address_space: &mut AddressSpace) { let name = "ReaderGroupMessageDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 15869); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_72(address_space: &mut AddressSpace) { @@ -1221,11 +2754,23 @@ fn add_variable_72(address_space: &mut AddressSpace) { let name = "DataSetReaderDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 15872); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_73(address_space: &mut AddressSpace) { @@ -1233,11 +2778,23 @@ fn add_variable_73(address_space: &mut AddressSpace) { let name = "DataSetReaderTransportDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 15877); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_74(address_space: &mut AddressSpace) { @@ -1245,11 +2802,23 @@ fn add_variable_74(address_space: &mut AddressSpace) { let name = "DataSetReaderMessageDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 15880); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_75(address_space: &mut AddressSpace) { @@ -1257,11 +2826,23 @@ fn add_variable_75(address_space: &mut AddressSpace) { let name = "SubscribedDataSetDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 15883); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_76(address_space: &mut AddressSpace) { @@ -1269,11 +2850,23 @@ fn add_variable_76(address_space: &mut AddressSpace) { let name = "TargetVariablesDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 15886); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_77(address_space: &mut AddressSpace) { @@ -1281,11 +2874,23 @@ fn add_variable_77(address_space: &mut AddressSpace) { let name = "FieldTargetDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 21002); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_78(address_space: &mut AddressSpace) { @@ -1293,11 +2898,23 @@ fn add_variable_78(address_space: &mut AddressSpace) { let name = "SubscribedDataSetMirrorDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 15889); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_79(address_space: &mut AddressSpace) { @@ -1305,11 +2922,23 @@ fn add_variable_79(address_space: &mut AddressSpace) { let name = "PubSubConfigurationDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 21168); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_80(address_space: &mut AddressSpace) { @@ -1317,11 +2946,23 @@ fn add_variable_80(address_space: &mut AddressSpace) { let name = "UadpWriterGroupMessageDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 15895); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_81(address_space: &mut AddressSpace) { @@ -1329,11 +2970,23 @@ fn add_variable_81(address_space: &mut AddressSpace) { let name = "UadpDataSetWriterMessageDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 15898); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_82(address_space: &mut AddressSpace) { @@ -1341,11 +2994,23 @@ fn add_variable_82(address_space: &mut AddressSpace) { let name = "UadpDataSetReaderMessageDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 15919); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_83(address_space: &mut AddressSpace) { @@ -1353,11 +3018,23 @@ fn add_variable_83(address_space: &mut AddressSpace) { let name = "JsonWriterGroupMessageDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 15922); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_84(address_space: &mut AddressSpace) { @@ -1365,11 +3042,23 @@ fn add_variable_84(address_space: &mut AddressSpace) { let name = "JsonDataSetWriterMessageDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 15925); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_85(address_space: &mut AddressSpace) { @@ -1377,11 +3066,23 @@ fn add_variable_85(address_space: &mut AddressSpace) { let name = "JsonDataSetReaderMessageDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 15931); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_86(address_space: &mut AddressSpace) { @@ -1389,11 +3090,23 @@ fn add_variable_86(address_space: &mut AddressSpace) { let name = "DatagramConnectionTransportDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 17469); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_87(address_space: &mut AddressSpace) { @@ -1401,11 +3114,23 @@ fn add_variable_87(address_space: &mut AddressSpace) { let name = "DatagramWriterGroupTransportDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 21171); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_88(address_space: &mut AddressSpace) { @@ -1413,11 +3138,23 @@ fn add_variable_88(address_space: &mut AddressSpace) { let name = "BrokerConnectionTransportDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 15524); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_89(address_space: &mut AddressSpace) { @@ -1425,11 +3162,23 @@ fn add_variable_89(address_space: &mut AddressSpace) { let name = "BrokerWriterGroupTransportDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 15940); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_90(address_space: &mut AddressSpace) { @@ -1437,11 +3186,23 @@ fn add_variable_90(address_space: &mut AddressSpace) { let name = "BrokerDataSetWriterTransportDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 15943); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_91(address_space: &mut AddressSpace) { @@ -1449,11 +3210,23 @@ fn add_variable_91(address_space: &mut AddressSpace) { let name = "BrokerDataSetReaderTransportDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 15946); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_92(address_space: &mut AddressSpace) { @@ -1461,11 +3234,23 @@ fn add_variable_92(address_space: &mut AddressSpace) { let name = "AliasNameDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 23502); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_93(address_space: &mut AddressSpace) { @@ -1473,11 +3258,23 @@ fn add_variable_93(address_space: &mut AddressSpace) { let name = "RolePermissionType"; let value = Variant::Empty; let node_id = NodeId::new(0, 16131); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_94(address_space: &mut AddressSpace) { @@ -1485,11 +3282,23 @@ fn add_variable_94(address_space: &mut AddressSpace) { let name = "DataTypeDefinition"; let value = Variant::Empty; let node_id = NodeId::new(0, 18178); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_95(address_space: &mut AddressSpace) { @@ -1497,11 +3306,23 @@ fn add_variable_95(address_space: &mut AddressSpace) { let name = "StructureField"; let value = Variant::Empty; let node_id = NodeId::new(0, 18181); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_96(address_space: &mut AddressSpace) { @@ -1509,11 +3330,23 @@ fn add_variable_96(address_space: &mut AddressSpace) { let name = "StructureDefinition"; let value = Variant::Empty; let node_id = NodeId::new(0, 18184); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_97(address_space: &mut AddressSpace) { @@ -1521,11 +3354,23 @@ fn add_variable_97(address_space: &mut AddressSpace) { let name = "EnumDefinition"; let value = Variant::Empty; let node_id = NodeId::new(0, 18187); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_98(address_space: &mut AddressSpace) { @@ -1533,11 +3378,23 @@ fn add_variable_98(address_space: &mut AddressSpace) { let name = "Argument"; let value = Variant::Empty; let node_id = NodeId::new(0, 7650); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_99(address_space: &mut AddressSpace) { @@ -1545,11 +3402,23 @@ fn add_variable_99(address_space: &mut AddressSpace) { let name = "EnumValueType"; let value = Variant::Empty; let node_id = NodeId::new(0, 7656); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_100(address_space: &mut AddressSpace) { @@ -1557,10 +3426,21 @@ fn add_variable_100(address_space: &mut AddressSpace) { let name = "EnumField"; let value = Variant::Empty; let node_id = NodeId::new(0, 14870); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } - diff --git a/server/src/address_space/generated/nodeset_5_13.rs b/server/src/address_space/generated/nodeset_5_13.rs index f660eb66a..a17cf367c 100644 --- a/server/src/address_space/generated/nodeset_5_13.rs +++ b/server/src/address_space/generated/nodeset_5_13.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.NodeSet2.Part5.xml by tools/schema/gen_address_space.js // DO NOT EDIT THIS FILE @@ -9,8 +9,11 @@ use std::{convert::TryFrom, str::FromStr}; #[allow(unused_imports)] use crate::{ - address_space::{EventNotifier, types::*}, - prelude::{DataTypeId, ExtensionObject, LocalizedText, NodeId, ReferenceTypeId, service_types::Argument, UAString, Variant, VariantTypeId} + address_space::{types::*, EventNotifier}, + prelude::{ + service_types::Argument, DataTypeId, ExtensionObject, LocalizedText, NodeId, + ReferenceTypeId, UAString, Variant, VariantTypeId, + }, }; #[allow(unused_variables)] @@ -122,11 +125,23 @@ fn add_variable_1(address_space: &mut AddressSpace) { let name = "OptionSet"; let value = Variant::Empty; let node_id = NodeId::new(0, 12767); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_2(address_space: &mut AddressSpace) { @@ -134,11 +149,23 @@ fn add_variable_2(address_space: &mut AddressSpace) { let name = "Union"; let value = Variant::Empty; let node_id = NodeId::new(0, 12770); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_3(address_space: &mut AddressSpace) { @@ -146,11 +173,23 @@ fn add_variable_3(address_space: &mut AddressSpace) { let name = "TimeZoneDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 8914); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_4(address_space: &mut AddressSpace) { @@ -158,11 +197,23 @@ fn add_variable_4(address_space: &mut AddressSpace) { let name = "ApplicationDescription"; let value = Variant::Empty; let node_id = NodeId::new(0, 7665); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_5(address_space: &mut AddressSpace) { @@ -170,11 +221,23 @@ fn add_variable_5(address_space: &mut AddressSpace) { let name = "ServerOnNetwork"; let value = Variant::Empty; let node_id = NodeId::new(0, 12213); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_6(address_space: &mut AddressSpace) { @@ -182,11 +245,23 @@ fn add_variable_6(address_space: &mut AddressSpace) { let name = "UserTokenPolicy"; let value = Variant::Empty; let node_id = NodeId::new(0, 7662); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_7(address_space: &mut AddressSpace) { @@ -194,11 +269,23 @@ fn add_variable_7(address_space: &mut AddressSpace) { let name = "EndpointDescription"; let value = Variant::Empty; let node_id = NodeId::new(0, 7668); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_8(address_space: &mut AddressSpace) { @@ -206,11 +293,23 @@ fn add_variable_8(address_space: &mut AddressSpace) { let name = "RegisteredServer"; let value = Variant::Empty; let node_id = NodeId::new(0, 7782); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_9(address_space: &mut AddressSpace) { @@ -218,11 +317,23 @@ fn add_variable_9(address_space: &mut AddressSpace) { let name = "DiscoveryConfiguration"; let value = Variant::Empty; let node_id = NodeId::new(0, 12902); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_10(address_space: &mut AddressSpace) { @@ -230,11 +341,23 @@ fn add_variable_10(address_space: &mut AddressSpace) { let name = "MdnsDiscoveryConfiguration"; let value = Variant::Empty; let node_id = NodeId::new(0, 12905); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_11(address_space: &mut AddressSpace) { @@ -242,11 +365,23 @@ fn add_variable_11(address_space: &mut AddressSpace) { let name = "SignedSoftwareCertificate"; let value = Variant::Empty; let node_id = NodeId::new(0, 7698); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_12(address_space: &mut AddressSpace) { @@ -254,11 +389,23 @@ fn add_variable_12(address_space: &mut AddressSpace) { let name = "UserIdentityToken"; let value = Variant::Empty; let node_id = NodeId::new(0, 7671); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_13(address_space: &mut AddressSpace) { @@ -266,11 +413,23 @@ fn add_variable_13(address_space: &mut AddressSpace) { let name = "AnonymousIdentityToken"; let value = Variant::Empty; let node_id = NodeId::new(0, 7674); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_14(address_space: &mut AddressSpace) { @@ -278,11 +437,23 @@ fn add_variable_14(address_space: &mut AddressSpace) { let name = "UserNameIdentityToken"; let value = Variant::Empty; let node_id = NodeId::new(0, 7677); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_15(address_space: &mut AddressSpace) { @@ -290,11 +461,23 @@ fn add_variable_15(address_space: &mut AddressSpace) { let name = "X509IdentityToken"; let value = Variant::Empty; let node_id = NodeId::new(0, 7680); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_16(address_space: &mut AddressSpace) { @@ -302,11 +485,23 @@ fn add_variable_16(address_space: &mut AddressSpace) { let name = "IssuedIdentityToken"; let value = Variant::Empty; let node_id = NodeId::new(0, 7683); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_17(address_space: &mut AddressSpace) { @@ -314,11 +509,23 @@ fn add_variable_17(address_space: &mut AddressSpace) { let name = "AddNodesItem"; let value = Variant::Empty; let node_id = NodeId::new(0, 7728); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_18(address_space: &mut AddressSpace) { @@ -326,11 +533,23 @@ fn add_variable_18(address_space: &mut AddressSpace) { let name = "AddReferencesItem"; let value = Variant::Empty; let node_id = NodeId::new(0, 7731); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_19(address_space: &mut AddressSpace) { @@ -338,11 +557,23 @@ fn add_variable_19(address_space: &mut AddressSpace) { let name = "DeleteNodesItem"; let value = Variant::Empty; let node_id = NodeId::new(0, 7734); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_20(address_space: &mut AddressSpace) { @@ -350,11 +581,23 @@ fn add_variable_20(address_space: &mut AddressSpace) { let name = "DeleteReferencesItem"; let value = Variant::Empty; let node_id = NodeId::new(0, 7737); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_21(address_space: &mut AddressSpace) { @@ -362,11 +605,23 @@ fn add_variable_21(address_space: &mut AddressSpace) { let name = "RelativePathElement"; let value = Variant::Empty; let node_id = NodeId::new(0, 12718); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_22(address_space: &mut AddressSpace) { @@ -374,11 +629,23 @@ fn add_variable_22(address_space: &mut AddressSpace) { let name = "RelativePath"; let value = Variant::Empty; let node_id = NodeId::new(0, 12721); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_23(address_space: &mut AddressSpace) { @@ -386,11 +653,23 @@ fn add_variable_23(address_space: &mut AddressSpace) { let name = "EndpointConfiguration"; let value = Variant::Empty; let node_id = NodeId::new(0, 7686); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_24(address_space: &mut AddressSpace) { @@ -398,11 +677,23 @@ fn add_variable_24(address_space: &mut AddressSpace) { let name = "ContentFilterElement"; let value = Variant::Empty; let node_id = NodeId::new(0, 7929); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_25(address_space: &mut AddressSpace) { @@ -410,11 +701,23 @@ fn add_variable_25(address_space: &mut AddressSpace) { let name = "ContentFilter"; let value = Variant::Empty; let node_id = NodeId::new(0, 7932); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_26(address_space: &mut AddressSpace) { @@ -422,11 +725,23 @@ fn add_variable_26(address_space: &mut AddressSpace) { let name = "FilterOperand"; let value = Variant::Empty; let node_id = NodeId::new(0, 7935); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_27(address_space: &mut AddressSpace) { @@ -434,11 +749,23 @@ fn add_variable_27(address_space: &mut AddressSpace) { let name = "ElementOperand"; let value = Variant::Empty; let node_id = NodeId::new(0, 7938); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_28(address_space: &mut AddressSpace) { @@ -446,11 +773,23 @@ fn add_variable_28(address_space: &mut AddressSpace) { let name = "LiteralOperand"; let value = Variant::Empty; let node_id = NodeId::new(0, 7941); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_29(address_space: &mut AddressSpace) { @@ -458,11 +797,23 @@ fn add_variable_29(address_space: &mut AddressSpace) { let name = "AttributeOperand"; let value = Variant::Empty; let node_id = NodeId::new(0, 7944); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_30(address_space: &mut AddressSpace) { @@ -470,11 +821,23 @@ fn add_variable_30(address_space: &mut AddressSpace) { let name = "SimpleAttributeOperand"; let value = Variant::Empty; let node_id = NodeId::new(0, 7947); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_31(address_space: &mut AddressSpace) { @@ -482,11 +845,23 @@ fn add_variable_31(address_space: &mut AddressSpace) { let name = "HistoryEvent"; let value = Variant::Empty; let node_id = NodeId::new(0, 8004); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_32(address_space: &mut AddressSpace) { @@ -494,11 +869,23 @@ fn add_variable_32(address_space: &mut AddressSpace) { let name = "MonitoringFilter"; let value = Variant::Empty; let node_id = NodeId::new(0, 8067); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_33(address_space: &mut AddressSpace) { @@ -506,11 +893,23 @@ fn add_variable_33(address_space: &mut AddressSpace) { let name = "EventFilter"; let value = Variant::Empty; let node_id = NodeId::new(0, 8073); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_34(address_space: &mut AddressSpace) { @@ -518,11 +917,23 @@ fn add_variable_34(address_space: &mut AddressSpace) { let name = "AggregateConfiguration"; let value = Variant::Empty; let node_id = NodeId::new(0, 8076); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_35(address_space: &mut AddressSpace) { @@ -530,11 +941,23 @@ fn add_variable_35(address_space: &mut AddressSpace) { let name = "HistoryEventFieldList"; let value = Variant::Empty; let node_id = NodeId::new(0, 8172); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_36(address_space: &mut AddressSpace) { @@ -542,11 +965,23 @@ fn add_variable_36(address_space: &mut AddressSpace) { let name = "BuildInfo"; let value = Variant::Empty; let node_id = NodeId::new(0, 7692); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_37(address_space: &mut AddressSpace) { @@ -554,11 +989,23 @@ fn add_variable_37(address_space: &mut AddressSpace) { let name = "RedundantServerDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 8208); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_38(address_space: &mut AddressSpace) { @@ -566,11 +1013,23 @@ fn add_variable_38(address_space: &mut AddressSpace) { let name = "EndpointUrlListDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 11959); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_39(address_space: &mut AddressSpace) { @@ -578,11 +1037,23 @@ fn add_variable_39(address_space: &mut AddressSpace) { let name = "NetworkGroupDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 11962); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_40(address_space: &mut AddressSpace) { @@ -590,11 +1061,23 @@ fn add_variable_40(address_space: &mut AddressSpace) { let name = "SamplingIntervalDiagnosticsDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 8211); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_41(address_space: &mut AddressSpace) { @@ -602,11 +1085,23 @@ fn add_variable_41(address_space: &mut AddressSpace) { let name = "ServerDiagnosticsSummaryDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 8214); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_42(address_space: &mut AddressSpace) { @@ -614,11 +1109,23 @@ fn add_variable_42(address_space: &mut AddressSpace) { let name = "ServerStatusDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 8217); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_43(address_space: &mut AddressSpace) { @@ -626,11 +1133,23 @@ fn add_variable_43(address_space: &mut AddressSpace) { let name = "SessionDiagnosticsDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 8220); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_44(address_space: &mut AddressSpace) { @@ -638,11 +1157,23 @@ fn add_variable_44(address_space: &mut AddressSpace) { let name = "SessionSecurityDiagnosticsDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 8223); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_45(address_space: &mut AddressSpace) { @@ -650,11 +1181,23 @@ fn add_variable_45(address_space: &mut AddressSpace) { let name = "ServiceCounterDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 8226); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_46(address_space: &mut AddressSpace) { @@ -662,11 +1205,23 @@ fn add_variable_46(address_space: &mut AddressSpace) { let name = "StatusResult"; let value = Variant::Empty; let node_id = NodeId::new(0, 7659); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_47(address_space: &mut AddressSpace) { @@ -674,11 +1229,23 @@ fn add_variable_47(address_space: &mut AddressSpace) { let name = "SubscriptionDiagnosticsDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 8229); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_48(address_space: &mut AddressSpace) { @@ -686,11 +1253,23 @@ fn add_variable_48(address_space: &mut AddressSpace) { let name = "ModelChangeStructureDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 8232); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_49(address_space: &mut AddressSpace) { @@ -698,11 +1277,23 @@ fn add_variable_49(address_space: &mut AddressSpace) { let name = "SemanticChangeStructureDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 8235); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_50(address_space: &mut AddressSpace) { @@ -710,11 +1301,23 @@ fn add_variable_50(address_space: &mut AddressSpace) { let name = "Range"; let value = Variant::Empty; let node_id = NodeId::new(0, 8238); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_51(address_space: &mut AddressSpace) { @@ -722,11 +1325,23 @@ fn add_variable_51(address_space: &mut AddressSpace) { let name = "EUInformation"; let value = Variant::Empty; let node_id = NodeId::new(0, 8241); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_52(address_space: &mut AddressSpace) { @@ -734,11 +1349,23 @@ fn add_variable_52(address_space: &mut AddressSpace) { let name = "ComplexNumberType"; let value = Variant::Empty; let node_id = NodeId::new(0, 12183); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_53(address_space: &mut AddressSpace) { @@ -746,11 +1373,23 @@ fn add_variable_53(address_space: &mut AddressSpace) { let name = "DoubleComplexNumberType"; let value = Variant::Empty; let node_id = NodeId::new(0, 12186); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_54(address_space: &mut AddressSpace) { @@ -758,11 +1397,23 @@ fn add_variable_54(address_space: &mut AddressSpace) { let name = "AxisInformation"; let value = Variant::Empty; let node_id = NodeId::new(0, 12091); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_55(address_space: &mut AddressSpace) { @@ -770,11 +1421,23 @@ fn add_variable_55(address_space: &mut AddressSpace) { let name = "XVType"; let value = Variant::Empty; let node_id = NodeId::new(0, 12094); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_56(address_space: &mut AddressSpace) { @@ -782,11 +1445,23 @@ fn add_variable_56(address_space: &mut AddressSpace) { let name = "ProgramDiagnosticDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 8247); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_57(address_space: &mut AddressSpace) { @@ -794,11 +1469,23 @@ fn add_variable_57(address_space: &mut AddressSpace) { let name = "ProgramDiagnostic2DataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 15398); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_58(address_space: &mut AddressSpace) { @@ -806,11 +1493,23 @@ fn add_variable_58(address_space: &mut AddressSpace) { let name = "Annotation"; let value = Variant::Empty; let node_id = NodeId::new(0, 8244); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 7617), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 7617), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_59(address_space: &mut AddressSpace) { @@ -818,144 +1517,688 @@ fn add_variable_59(address_space: &mut AddressSpace) { let name = "Opc.Ua"; let value = Variant::Empty; let node_id = NodeId::new(0, 8252); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 8254), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15039), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 14829), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17542), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17554), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16024), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 18860), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 18863), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 18866), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 18869), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19049), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19052), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19055), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19058), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 19061), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15730), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 23522), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12677), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16027), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 14811), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15591), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15594), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15585), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15588), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 14805), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 14808), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 14832), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16030), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16033), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 14320), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16037), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16040), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16047), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16050), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16053), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16056), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 21180), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16062), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16065), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16068), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16071), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 21183), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 21186), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 21189), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16077), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16080), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16083), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16086), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16089), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16092), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16095), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 14835), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16098), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 21192), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16104), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16107), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16110), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16113), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16116), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16119), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17473), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 21195), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15640), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16125), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16144), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16147), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 23508), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16127), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 18166), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 18169), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 18172), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 18175), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8285), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8291), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 14826), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12759), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12762), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8918), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8300), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12201), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8297), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8303), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8417), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12894), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12897), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8333), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8306), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8309), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8312), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8315), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8318), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8363), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8366), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8369), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8372), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12712), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12715), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8321), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8564), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8567), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8570), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8573), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8576), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8579), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8582), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8639), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8702), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8708), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8711), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8807), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8327), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8843), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 11951), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 11954), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8846), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8849), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8852), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8855), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8858), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8861), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8294), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8864), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8867), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8870), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8873), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8876), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12175), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12178), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12083), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12086), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8882), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15402), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8879), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 92), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - (&NodeId::new(0, 72), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 8254), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15039), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14829), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17542), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17554), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16024), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18860), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18863), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18866), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18869), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19049), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19052), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19055), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19058), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 19061), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15730), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 23522), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12677), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16027), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14811), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15591), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15594), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15585), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15588), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14805), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14808), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14832), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16030), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16033), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14320), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16037), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16040), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16047), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16050), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16053), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16056), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21180), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16062), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16065), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16068), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16071), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21183), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21186), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21189), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16077), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16080), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16083), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16086), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16089), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16092), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16095), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14835), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16098), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21192), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16104), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16107), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16110), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16113), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16116), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16119), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17473), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 21195), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15640), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16125), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16144), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16147), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 23508), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16127), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18166), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18169), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18172), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18175), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8285), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8291), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14826), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12759), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12762), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8918), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8300), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12201), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8297), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8303), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8417), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12894), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12897), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8333), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8306), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8309), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8312), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8315), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8318), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8363), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8366), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8369), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8372), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12712), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12715), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8321), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8564), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8567), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8570), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8573), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8576), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8579), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8582), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8639), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8702), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8708), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8711), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8807), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8327), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8843), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11951), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11954), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8846), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8849), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8852), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8855), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8858), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8861), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8294), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8864), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8867), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8870), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8873), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8876), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12175), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12178), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12083), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12086), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8882), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15402), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8879), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 92), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 72), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_variable_60(address_space: &mut AddressSpace) { @@ -963,11 +2206,23 @@ fn add_variable_60(address_space: &mut AddressSpace) { let name = "NamespaceUri"; let value = Variant::Empty; let node_id = NodeId::new(0, 8254); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_61(address_space: &mut AddressSpace) { @@ -976,10 +2231,21 @@ fn add_variable_61(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 15039); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_62(address_space: &mut AddressSpace) { @@ -987,11 +2253,23 @@ fn add_variable_62(address_space: &mut AddressSpace) { let name = "KeyValuePair"; let value = Variant::Empty; let node_id = NodeId::new(0, 14829); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_63(address_space: &mut AddressSpace) { @@ -999,11 +2277,23 @@ fn add_variable_63(address_space: &mut AddressSpace) { let name = "AdditionalParametersType"; let value = Variant::Empty; let node_id = NodeId::new(0, 17542); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_64(address_space: &mut AddressSpace) { @@ -1011,11 +2301,23 @@ fn add_variable_64(address_space: &mut AddressSpace) { let name = "EphemeralKeyType"; let value = Variant::Empty; let node_id = NodeId::new(0, 17554); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_65(address_space: &mut AddressSpace) { @@ -1023,11 +2325,23 @@ fn add_variable_65(address_space: &mut AddressSpace) { let name = "EndpointType"; let value = Variant::Empty; let node_id = NodeId::new(0, 16024); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_66(address_space: &mut AddressSpace) { @@ -1035,11 +2349,23 @@ fn add_variable_66(address_space: &mut AddressSpace) { let name = "RationalNumber"; let value = Variant::Empty; let node_id = NodeId::new(0, 18860); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_67(address_space: &mut AddressSpace) { @@ -1047,11 +2373,23 @@ fn add_variable_67(address_space: &mut AddressSpace) { let name = "Vector"; let value = Variant::Empty; let node_id = NodeId::new(0, 18863); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_68(address_space: &mut AddressSpace) { @@ -1059,11 +2397,23 @@ fn add_variable_68(address_space: &mut AddressSpace) { let name = "3DVector"; let value = Variant::Empty; let node_id = NodeId::new(0, 18866); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_69(address_space: &mut AddressSpace) { @@ -1071,11 +2421,23 @@ fn add_variable_69(address_space: &mut AddressSpace) { let name = "CartesianCoordinates"; let value = Variant::Empty; let node_id = NodeId::new(0, 18869); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_70(address_space: &mut AddressSpace) { @@ -1083,11 +2445,23 @@ fn add_variable_70(address_space: &mut AddressSpace) { let name = "3DCartesianCoordinates"; let value = Variant::Empty; let node_id = NodeId::new(0, 19049); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_71(address_space: &mut AddressSpace) { @@ -1095,11 +2469,23 @@ fn add_variable_71(address_space: &mut AddressSpace) { let name = "Orientation"; let value = Variant::Empty; let node_id = NodeId::new(0, 19052); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_72(address_space: &mut AddressSpace) { @@ -1107,11 +2493,23 @@ fn add_variable_72(address_space: &mut AddressSpace) { let name = "3DOrientation"; let value = Variant::Empty; let node_id = NodeId::new(0, 19055); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_73(address_space: &mut AddressSpace) { @@ -1119,11 +2517,23 @@ fn add_variable_73(address_space: &mut AddressSpace) { let name = "Frame"; let value = Variant::Empty; let node_id = NodeId::new(0, 19058); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_74(address_space: &mut AddressSpace) { @@ -1131,11 +2541,23 @@ fn add_variable_74(address_space: &mut AddressSpace) { let name = "3DFrame"; let value = Variant::Empty; let node_id = NodeId::new(0, 19061); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_75(address_space: &mut AddressSpace) { @@ -1143,11 +2565,23 @@ fn add_variable_75(address_space: &mut AddressSpace) { let name = "IdentityMappingRuleType"; let value = Variant::Empty; let node_id = NodeId::new(0, 15730); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_76(address_space: &mut AddressSpace) { @@ -1155,11 +2589,23 @@ fn add_variable_76(address_space: &mut AddressSpace) { let name = "CurrencyUnitType"; let value = Variant::Empty; let node_id = NodeId::new(0, 23522); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_77(address_space: &mut AddressSpace) { @@ -1167,11 +2613,23 @@ fn add_variable_77(address_space: &mut AddressSpace) { let name = "TrustListDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 12677); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_78(address_space: &mut AddressSpace) { @@ -1179,11 +2637,23 @@ fn add_variable_78(address_space: &mut AddressSpace) { let name = "DataTypeSchemaHeader"; let value = Variant::Empty; let node_id = NodeId::new(0, 16027); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_79(address_space: &mut AddressSpace) { @@ -1191,11 +2661,23 @@ fn add_variable_79(address_space: &mut AddressSpace) { let name = "DataTypeDescription"; let value = Variant::Empty; let node_id = NodeId::new(0, 14811); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_80(address_space: &mut AddressSpace) { @@ -1203,11 +2685,23 @@ fn add_variable_80(address_space: &mut AddressSpace) { let name = "StructureDescription"; let value = Variant::Empty; let node_id = NodeId::new(0, 15591); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_81(address_space: &mut AddressSpace) { @@ -1215,11 +2709,23 @@ fn add_variable_81(address_space: &mut AddressSpace) { let name = "EnumDescription"; let value = Variant::Empty; let node_id = NodeId::new(0, 15594); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_82(address_space: &mut AddressSpace) { @@ -1227,11 +2733,23 @@ fn add_variable_82(address_space: &mut AddressSpace) { let name = "SimpleTypeDescription"; let value = Variant::Empty; let node_id = NodeId::new(0, 15585); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_83(address_space: &mut AddressSpace) { @@ -1239,11 +2757,23 @@ fn add_variable_83(address_space: &mut AddressSpace) { let name = "UABinaryFileDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 15588); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_84(address_space: &mut AddressSpace) { @@ -1251,11 +2781,23 @@ fn add_variable_84(address_space: &mut AddressSpace) { let name = "DataSetMetaDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 14805); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_85(address_space: &mut AddressSpace) { @@ -1263,11 +2805,23 @@ fn add_variable_85(address_space: &mut AddressSpace) { let name = "FieldMetaData"; let value = Variant::Empty; let node_id = NodeId::new(0, 14808); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_86(address_space: &mut AddressSpace) { @@ -1275,11 +2829,23 @@ fn add_variable_86(address_space: &mut AddressSpace) { let name = "ConfigurationVersionDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 14832); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_87(address_space: &mut AddressSpace) { @@ -1287,11 +2853,23 @@ fn add_variable_87(address_space: &mut AddressSpace) { let name = "PublishedDataSetDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 16030); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_88(address_space: &mut AddressSpace) { @@ -1299,11 +2877,23 @@ fn add_variable_88(address_space: &mut AddressSpace) { let name = "PublishedDataSetSourceDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 16033); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_89(address_space: &mut AddressSpace) { @@ -1311,11 +2901,23 @@ fn add_variable_89(address_space: &mut AddressSpace) { let name = "PublishedVariableDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 14320); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_90(address_space: &mut AddressSpace) { @@ -1323,11 +2925,23 @@ fn add_variable_90(address_space: &mut AddressSpace) { let name = "PublishedDataItemsDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 16037); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_91(address_space: &mut AddressSpace) { @@ -1335,11 +2949,23 @@ fn add_variable_91(address_space: &mut AddressSpace) { let name = "PublishedEventsDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 16040); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_92(address_space: &mut AddressSpace) { @@ -1347,11 +2973,23 @@ fn add_variable_92(address_space: &mut AddressSpace) { let name = "DataSetWriterDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 16047); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_93(address_space: &mut AddressSpace) { @@ -1359,11 +2997,23 @@ fn add_variable_93(address_space: &mut AddressSpace) { let name = "DataSetWriterTransportDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 16050); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_94(address_space: &mut AddressSpace) { @@ -1371,11 +3021,23 @@ fn add_variable_94(address_space: &mut AddressSpace) { let name = "DataSetWriterMessageDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 16053); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_95(address_space: &mut AddressSpace) { @@ -1383,11 +3045,23 @@ fn add_variable_95(address_space: &mut AddressSpace) { let name = "PubSubGroupDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 16056); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_96(address_space: &mut AddressSpace) { @@ -1395,11 +3069,23 @@ fn add_variable_96(address_space: &mut AddressSpace) { let name = "WriterGroupDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 21180); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_97(address_space: &mut AddressSpace) { @@ -1407,11 +3093,23 @@ fn add_variable_97(address_space: &mut AddressSpace) { let name = "WriterGroupTransportDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 16062); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_98(address_space: &mut AddressSpace) { @@ -1419,11 +3117,23 @@ fn add_variable_98(address_space: &mut AddressSpace) { let name = "WriterGroupMessageDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 16065); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_99(address_space: &mut AddressSpace) { @@ -1431,11 +3141,23 @@ fn add_variable_99(address_space: &mut AddressSpace) { let name = "PubSubConnectionDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 16068); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_100(address_space: &mut AddressSpace) { @@ -1443,10 +3165,21 @@ fn add_variable_100(address_space: &mut AddressSpace) { let name = "ConnectionTransportDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 16071); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } - diff --git a/server/src/address_space/generated/nodeset_5_14.rs b/server/src/address_space/generated/nodeset_5_14.rs index 56263bc58..63660041a 100644 --- a/server/src/address_space/generated/nodeset_5_14.rs +++ b/server/src/address_space/generated/nodeset_5_14.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.NodeSet2.Part5.xml by tools/schema/gen_address_space.js // DO NOT EDIT THIS FILE @@ -9,8 +9,11 @@ use std::{convert::TryFrom, str::FromStr}; #[allow(unused_imports)] use crate::{ - address_space::{EventNotifier, types::*}, - prelude::{DataTypeId, ExtensionObject, LocalizedText, NodeId, ReferenceTypeId, service_types::Argument, UAString, Variant, VariantTypeId} + address_space::{types::*, EventNotifier}, + prelude::{ + service_types::Argument, DataTypeId, ExtensionObject, LocalizedText, NodeId, + ReferenceTypeId, UAString, Variant, VariantTypeId, + }, }; #[allow(unused_variables)] @@ -122,11 +125,23 @@ fn add_variable_1(address_space: &mut AddressSpace) { let name = "NetworkAddressDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 21183); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_2(address_space: &mut AddressSpace) { @@ -134,11 +149,23 @@ fn add_variable_2(address_space: &mut AddressSpace) { let name = "NetworkAddressUrlDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 21186); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_3(address_space: &mut AddressSpace) { @@ -146,11 +173,23 @@ fn add_variable_3(address_space: &mut AddressSpace) { let name = "ReaderGroupDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 21189); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_4(address_space: &mut AddressSpace) { @@ -158,11 +197,23 @@ fn add_variable_4(address_space: &mut AddressSpace) { let name = "ReaderGroupTransportDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 16077); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_5(address_space: &mut AddressSpace) { @@ -170,11 +221,23 @@ fn add_variable_5(address_space: &mut AddressSpace) { let name = "ReaderGroupMessageDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 16080); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_6(address_space: &mut AddressSpace) { @@ -182,11 +245,23 @@ fn add_variable_6(address_space: &mut AddressSpace) { let name = "DataSetReaderDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 16083); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_7(address_space: &mut AddressSpace) { @@ -194,11 +269,23 @@ fn add_variable_7(address_space: &mut AddressSpace) { let name = "DataSetReaderTransportDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 16086); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_8(address_space: &mut AddressSpace) { @@ -206,11 +293,23 @@ fn add_variable_8(address_space: &mut AddressSpace) { let name = "DataSetReaderMessageDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 16089); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_9(address_space: &mut AddressSpace) { @@ -218,11 +317,23 @@ fn add_variable_9(address_space: &mut AddressSpace) { let name = "SubscribedDataSetDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 16092); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_10(address_space: &mut AddressSpace) { @@ -230,11 +341,23 @@ fn add_variable_10(address_space: &mut AddressSpace) { let name = "TargetVariablesDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 16095); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_11(address_space: &mut AddressSpace) { @@ -242,11 +365,23 @@ fn add_variable_11(address_space: &mut AddressSpace) { let name = "FieldTargetDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 14835); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_12(address_space: &mut AddressSpace) { @@ -254,11 +389,23 @@ fn add_variable_12(address_space: &mut AddressSpace) { let name = "SubscribedDataSetMirrorDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 16098); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_13(address_space: &mut AddressSpace) { @@ -266,11 +413,23 @@ fn add_variable_13(address_space: &mut AddressSpace) { let name = "PubSubConfigurationDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 21192); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_14(address_space: &mut AddressSpace) { @@ -278,11 +437,23 @@ fn add_variable_14(address_space: &mut AddressSpace) { let name = "UadpWriterGroupMessageDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 16104); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_15(address_space: &mut AddressSpace) { @@ -290,11 +461,23 @@ fn add_variable_15(address_space: &mut AddressSpace) { let name = "UadpDataSetWriterMessageDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 16107); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_16(address_space: &mut AddressSpace) { @@ -302,11 +485,23 @@ fn add_variable_16(address_space: &mut AddressSpace) { let name = "UadpDataSetReaderMessageDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 16110); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_17(address_space: &mut AddressSpace) { @@ -314,11 +509,23 @@ fn add_variable_17(address_space: &mut AddressSpace) { let name = "JsonWriterGroupMessageDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 16113); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_18(address_space: &mut AddressSpace) { @@ -326,11 +533,23 @@ fn add_variable_18(address_space: &mut AddressSpace) { let name = "JsonDataSetWriterMessageDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 16116); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_19(address_space: &mut AddressSpace) { @@ -338,11 +557,23 @@ fn add_variable_19(address_space: &mut AddressSpace) { let name = "JsonDataSetReaderMessageDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 16119); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_20(address_space: &mut AddressSpace) { @@ -350,11 +581,23 @@ fn add_variable_20(address_space: &mut AddressSpace) { let name = "DatagramConnectionTransportDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 17473); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_21(address_space: &mut AddressSpace) { @@ -362,11 +605,23 @@ fn add_variable_21(address_space: &mut AddressSpace) { let name = "DatagramWriterGroupTransportDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 21195); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_22(address_space: &mut AddressSpace) { @@ -374,11 +629,23 @@ fn add_variable_22(address_space: &mut AddressSpace) { let name = "BrokerConnectionTransportDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 15640); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_23(address_space: &mut AddressSpace) { @@ -386,11 +653,23 @@ fn add_variable_23(address_space: &mut AddressSpace) { let name = "BrokerWriterGroupTransportDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 16125); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_24(address_space: &mut AddressSpace) { @@ -398,11 +677,23 @@ fn add_variable_24(address_space: &mut AddressSpace) { let name = "BrokerDataSetWriterTransportDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 16144); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_25(address_space: &mut AddressSpace) { @@ -410,11 +701,23 @@ fn add_variable_25(address_space: &mut AddressSpace) { let name = "BrokerDataSetReaderTransportDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 16147); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_26(address_space: &mut AddressSpace) { @@ -422,11 +725,23 @@ fn add_variable_26(address_space: &mut AddressSpace) { let name = "AliasNameDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 23508); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_27(address_space: &mut AddressSpace) { @@ -434,11 +749,23 @@ fn add_variable_27(address_space: &mut AddressSpace) { let name = "RolePermissionType"; let value = Variant::Empty; let node_id = NodeId::new(0, 16127); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_28(address_space: &mut AddressSpace) { @@ -446,11 +773,23 @@ fn add_variable_28(address_space: &mut AddressSpace) { let name = "DataTypeDefinition"; let value = Variant::Empty; let node_id = NodeId::new(0, 18166); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_29(address_space: &mut AddressSpace) { @@ -458,11 +797,23 @@ fn add_variable_29(address_space: &mut AddressSpace) { let name = "StructureField"; let value = Variant::Empty; let node_id = NodeId::new(0, 18169); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_30(address_space: &mut AddressSpace) { @@ -470,11 +821,23 @@ fn add_variable_30(address_space: &mut AddressSpace) { let name = "StructureDefinition"; let value = Variant::Empty; let node_id = NodeId::new(0, 18172); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_31(address_space: &mut AddressSpace) { @@ -482,11 +845,23 @@ fn add_variable_31(address_space: &mut AddressSpace) { let name = "EnumDefinition"; let value = Variant::Empty; let node_id = NodeId::new(0, 18175); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_32(address_space: &mut AddressSpace) { @@ -494,11 +869,23 @@ fn add_variable_32(address_space: &mut AddressSpace) { let name = "Argument"; let value = Variant::Empty; let node_id = NodeId::new(0, 8285); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_33(address_space: &mut AddressSpace) { @@ -506,11 +893,23 @@ fn add_variable_33(address_space: &mut AddressSpace) { let name = "EnumValueType"; let value = Variant::Empty; let node_id = NodeId::new(0, 8291); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_34(address_space: &mut AddressSpace) { @@ -518,11 +917,23 @@ fn add_variable_34(address_space: &mut AddressSpace) { let name = "EnumField"; let value = Variant::Empty; let node_id = NodeId::new(0, 14826); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_35(address_space: &mut AddressSpace) { @@ -530,11 +941,23 @@ fn add_variable_35(address_space: &mut AddressSpace) { let name = "OptionSet"; let value = Variant::Empty; let node_id = NodeId::new(0, 12759); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_36(address_space: &mut AddressSpace) { @@ -542,11 +965,23 @@ fn add_variable_36(address_space: &mut AddressSpace) { let name = "Union"; let value = Variant::Empty; let node_id = NodeId::new(0, 12762); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_37(address_space: &mut AddressSpace) { @@ -554,11 +989,23 @@ fn add_variable_37(address_space: &mut AddressSpace) { let name = "TimeZoneDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 8918); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_38(address_space: &mut AddressSpace) { @@ -566,11 +1013,23 @@ fn add_variable_38(address_space: &mut AddressSpace) { let name = "ApplicationDescription"; let value = Variant::Empty; let node_id = NodeId::new(0, 8300); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_39(address_space: &mut AddressSpace) { @@ -578,11 +1037,23 @@ fn add_variable_39(address_space: &mut AddressSpace) { let name = "ServerOnNetwork"; let value = Variant::Empty; let node_id = NodeId::new(0, 12201); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_40(address_space: &mut AddressSpace) { @@ -590,11 +1061,23 @@ fn add_variable_40(address_space: &mut AddressSpace) { let name = "UserTokenPolicy"; let value = Variant::Empty; let node_id = NodeId::new(0, 8297); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_41(address_space: &mut AddressSpace) { @@ -602,11 +1085,23 @@ fn add_variable_41(address_space: &mut AddressSpace) { let name = "EndpointDescription"; let value = Variant::Empty; let node_id = NodeId::new(0, 8303); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_42(address_space: &mut AddressSpace) { @@ -614,11 +1109,23 @@ fn add_variable_42(address_space: &mut AddressSpace) { let name = "RegisteredServer"; let value = Variant::Empty; let node_id = NodeId::new(0, 8417); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_43(address_space: &mut AddressSpace) { @@ -626,11 +1133,23 @@ fn add_variable_43(address_space: &mut AddressSpace) { let name = "DiscoveryConfiguration"; let value = Variant::Empty; let node_id = NodeId::new(0, 12894); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_44(address_space: &mut AddressSpace) { @@ -638,11 +1157,23 @@ fn add_variable_44(address_space: &mut AddressSpace) { let name = "MdnsDiscoveryConfiguration"; let value = Variant::Empty; let node_id = NodeId::new(0, 12897); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_45(address_space: &mut AddressSpace) { @@ -650,11 +1181,23 @@ fn add_variable_45(address_space: &mut AddressSpace) { let name = "SignedSoftwareCertificate"; let value = Variant::Empty; let node_id = NodeId::new(0, 8333); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_46(address_space: &mut AddressSpace) { @@ -662,11 +1205,23 @@ fn add_variable_46(address_space: &mut AddressSpace) { let name = "UserIdentityToken"; let value = Variant::Empty; let node_id = NodeId::new(0, 8306); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_47(address_space: &mut AddressSpace) { @@ -674,11 +1229,23 @@ fn add_variable_47(address_space: &mut AddressSpace) { let name = "AnonymousIdentityToken"; let value = Variant::Empty; let node_id = NodeId::new(0, 8309); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_48(address_space: &mut AddressSpace) { @@ -686,11 +1253,23 @@ fn add_variable_48(address_space: &mut AddressSpace) { let name = "UserNameIdentityToken"; let value = Variant::Empty; let node_id = NodeId::new(0, 8312); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_49(address_space: &mut AddressSpace) { @@ -698,11 +1277,23 @@ fn add_variable_49(address_space: &mut AddressSpace) { let name = "X509IdentityToken"; let value = Variant::Empty; let node_id = NodeId::new(0, 8315); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_50(address_space: &mut AddressSpace) { @@ -710,11 +1301,23 @@ fn add_variable_50(address_space: &mut AddressSpace) { let name = "IssuedIdentityToken"; let value = Variant::Empty; let node_id = NodeId::new(0, 8318); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_51(address_space: &mut AddressSpace) { @@ -722,11 +1325,23 @@ fn add_variable_51(address_space: &mut AddressSpace) { let name = "AddNodesItem"; let value = Variant::Empty; let node_id = NodeId::new(0, 8363); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_52(address_space: &mut AddressSpace) { @@ -734,11 +1349,23 @@ fn add_variable_52(address_space: &mut AddressSpace) { let name = "AddReferencesItem"; let value = Variant::Empty; let node_id = NodeId::new(0, 8366); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_53(address_space: &mut AddressSpace) { @@ -746,11 +1373,23 @@ fn add_variable_53(address_space: &mut AddressSpace) { let name = "DeleteNodesItem"; let value = Variant::Empty; let node_id = NodeId::new(0, 8369); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_54(address_space: &mut AddressSpace) { @@ -758,11 +1397,23 @@ fn add_variable_54(address_space: &mut AddressSpace) { let name = "DeleteReferencesItem"; let value = Variant::Empty; let node_id = NodeId::new(0, 8372); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_55(address_space: &mut AddressSpace) { @@ -770,11 +1421,23 @@ fn add_variable_55(address_space: &mut AddressSpace) { let name = "RelativePathElement"; let value = Variant::Empty; let node_id = NodeId::new(0, 12712); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_56(address_space: &mut AddressSpace) { @@ -782,11 +1445,23 @@ fn add_variable_56(address_space: &mut AddressSpace) { let name = "RelativePath"; let value = Variant::Empty; let node_id = NodeId::new(0, 12715); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_57(address_space: &mut AddressSpace) { @@ -794,11 +1469,23 @@ fn add_variable_57(address_space: &mut AddressSpace) { let name = "EndpointConfiguration"; let value = Variant::Empty; let node_id = NodeId::new(0, 8321); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_58(address_space: &mut AddressSpace) { @@ -806,11 +1493,23 @@ fn add_variable_58(address_space: &mut AddressSpace) { let name = "ContentFilterElement"; let value = Variant::Empty; let node_id = NodeId::new(0, 8564); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_59(address_space: &mut AddressSpace) { @@ -818,11 +1517,23 @@ fn add_variable_59(address_space: &mut AddressSpace) { let name = "ContentFilter"; let value = Variant::Empty; let node_id = NodeId::new(0, 8567); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_60(address_space: &mut AddressSpace) { @@ -830,11 +1541,23 @@ fn add_variable_60(address_space: &mut AddressSpace) { let name = "FilterOperand"; let value = Variant::Empty; let node_id = NodeId::new(0, 8570); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_61(address_space: &mut AddressSpace) { @@ -842,11 +1565,23 @@ fn add_variable_61(address_space: &mut AddressSpace) { let name = "ElementOperand"; let value = Variant::Empty; let node_id = NodeId::new(0, 8573); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_62(address_space: &mut AddressSpace) { @@ -854,11 +1589,23 @@ fn add_variable_62(address_space: &mut AddressSpace) { let name = "LiteralOperand"; let value = Variant::Empty; let node_id = NodeId::new(0, 8576); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_63(address_space: &mut AddressSpace) { @@ -866,11 +1613,23 @@ fn add_variable_63(address_space: &mut AddressSpace) { let name = "AttributeOperand"; let value = Variant::Empty; let node_id = NodeId::new(0, 8579); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_64(address_space: &mut AddressSpace) { @@ -878,11 +1637,23 @@ fn add_variable_64(address_space: &mut AddressSpace) { let name = "SimpleAttributeOperand"; let value = Variant::Empty; let node_id = NodeId::new(0, 8582); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_65(address_space: &mut AddressSpace) { @@ -890,11 +1661,23 @@ fn add_variable_65(address_space: &mut AddressSpace) { let name = "HistoryEvent"; let value = Variant::Empty; let node_id = NodeId::new(0, 8639); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_66(address_space: &mut AddressSpace) { @@ -902,11 +1685,23 @@ fn add_variable_66(address_space: &mut AddressSpace) { let name = "MonitoringFilter"; let value = Variant::Empty; let node_id = NodeId::new(0, 8702); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_67(address_space: &mut AddressSpace) { @@ -914,11 +1709,23 @@ fn add_variable_67(address_space: &mut AddressSpace) { let name = "EventFilter"; let value = Variant::Empty; let node_id = NodeId::new(0, 8708); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_68(address_space: &mut AddressSpace) { @@ -926,11 +1733,23 @@ fn add_variable_68(address_space: &mut AddressSpace) { let name = "AggregateConfiguration"; let value = Variant::Empty; let node_id = NodeId::new(0, 8711); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_69(address_space: &mut AddressSpace) { @@ -938,11 +1757,23 @@ fn add_variable_69(address_space: &mut AddressSpace) { let name = "HistoryEventFieldList"; let value = Variant::Empty; let node_id = NodeId::new(0, 8807); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_70(address_space: &mut AddressSpace) { @@ -950,11 +1781,23 @@ fn add_variable_70(address_space: &mut AddressSpace) { let name = "BuildInfo"; let value = Variant::Empty; let node_id = NodeId::new(0, 8327); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_71(address_space: &mut AddressSpace) { @@ -962,11 +1805,23 @@ fn add_variable_71(address_space: &mut AddressSpace) { let name = "RedundantServerDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 8843); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_72(address_space: &mut AddressSpace) { @@ -974,11 +1829,23 @@ fn add_variable_72(address_space: &mut AddressSpace) { let name = "EndpointUrlListDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 11951); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_73(address_space: &mut AddressSpace) { @@ -986,11 +1853,23 @@ fn add_variable_73(address_space: &mut AddressSpace) { let name = "NetworkGroupDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 11954); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_74(address_space: &mut AddressSpace) { @@ -998,11 +1877,23 @@ fn add_variable_74(address_space: &mut AddressSpace) { let name = "SamplingIntervalDiagnosticsDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 8846); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_75(address_space: &mut AddressSpace) { @@ -1010,11 +1901,23 @@ fn add_variable_75(address_space: &mut AddressSpace) { let name = "ServerDiagnosticsSummaryDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 8849); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_76(address_space: &mut AddressSpace) { @@ -1022,11 +1925,23 @@ fn add_variable_76(address_space: &mut AddressSpace) { let name = "ServerStatusDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 8852); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_77(address_space: &mut AddressSpace) { @@ -1034,11 +1949,23 @@ fn add_variable_77(address_space: &mut AddressSpace) { let name = "SessionDiagnosticsDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 8855); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_78(address_space: &mut AddressSpace) { @@ -1046,11 +1973,23 @@ fn add_variable_78(address_space: &mut AddressSpace) { let name = "SessionSecurityDiagnosticsDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 8858); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_79(address_space: &mut AddressSpace) { @@ -1058,11 +1997,23 @@ fn add_variable_79(address_space: &mut AddressSpace) { let name = "ServiceCounterDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 8861); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_80(address_space: &mut AddressSpace) { @@ -1070,11 +2021,23 @@ fn add_variable_80(address_space: &mut AddressSpace) { let name = "StatusResult"; let value = Variant::Empty; let node_id = NodeId::new(0, 8294); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_81(address_space: &mut AddressSpace) { @@ -1082,11 +2045,23 @@ fn add_variable_81(address_space: &mut AddressSpace) { let name = "SubscriptionDiagnosticsDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 8864); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_82(address_space: &mut AddressSpace) { @@ -1094,11 +2069,23 @@ fn add_variable_82(address_space: &mut AddressSpace) { let name = "ModelChangeStructureDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 8867); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_83(address_space: &mut AddressSpace) { @@ -1106,11 +2093,23 @@ fn add_variable_83(address_space: &mut AddressSpace) { let name = "SemanticChangeStructureDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 8870); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_84(address_space: &mut AddressSpace) { @@ -1118,11 +2117,23 @@ fn add_variable_84(address_space: &mut AddressSpace) { let name = "Range"; let value = Variant::Empty; let node_id = NodeId::new(0, 8873); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_85(address_space: &mut AddressSpace) { @@ -1130,11 +2141,23 @@ fn add_variable_85(address_space: &mut AddressSpace) { let name = "EUInformation"; let value = Variant::Empty; let node_id = NodeId::new(0, 8876); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_86(address_space: &mut AddressSpace) { @@ -1142,11 +2165,23 @@ fn add_variable_86(address_space: &mut AddressSpace) { let name = "ComplexNumberType"; let value = Variant::Empty; let node_id = NodeId::new(0, 12175); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_87(address_space: &mut AddressSpace) { @@ -1154,11 +2189,23 @@ fn add_variable_87(address_space: &mut AddressSpace) { let name = "DoubleComplexNumberType"; let value = Variant::Empty; let node_id = NodeId::new(0, 12178); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_88(address_space: &mut AddressSpace) { @@ -1166,11 +2213,23 @@ fn add_variable_88(address_space: &mut AddressSpace) { let name = "AxisInformation"; let value = Variant::Empty; let node_id = NodeId::new(0, 12083); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_89(address_space: &mut AddressSpace) { @@ -1178,11 +2237,23 @@ fn add_variable_89(address_space: &mut AddressSpace) { let name = "XVType"; let value = Variant::Empty; let node_id = NodeId::new(0, 12086); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_90(address_space: &mut AddressSpace) { @@ -1190,11 +2261,23 @@ fn add_variable_90(address_space: &mut AddressSpace) { let name = "ProgramDiagnosticDataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 8882); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_91(address_space: &mut AddressSpace) { @@ -1202,11 +2285,23 @@ fn add_variable_91(address_space: &mut AddressSpace) { let name = "ProgramDiagnostic2DataType"; let value = Variant::Empty; let node_id = NodeId::new(0, 15402); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_92(address_space: &mut AddressSpace) { @@ -1214,11 +2309,23 @@ fn add_variable_92(address_space: &mut AddressSpace) { let name = "Annotation"; let value = Variant::Empty; let node_id = NodeId::new(0, 8879); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 69), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 8252), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variabletype_93(address_space: &mut AddressSpace) { @@ -1234,9 +2341,14 @@ fn add_variabletype_94(address_space: &mut AddressSpace) { let name = "BaseDataVariableType"; let node_id = NodeId::new(0, 63); let node = VariableType::new(&node_id, name, name, NodeId::null(), false, -2); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 62), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 62), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_variabletype_95(address_space: &mut AddressSpace) { @@ -1244,9 +2356,14 @@ fn add_variabletype_95(address_space: &mut AddressSpace) { let name = "PropertyType"; let node_id = NodeId::new(0, 68); let node = VariableType::new(&node_id, name, name, NodeId::null(), false, -2); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 62), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 62), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_variabletype_96(address_space: &mut AddressSpace) { @@ -1254,11 +2371,26 @@ fn add_variabletype_96(address_space: &mut AddressSpace) { let name = "DataTypeDescriptionType"; let node_id = NodeId::new(0, 69); let node = VariableType::new(&node_id, name, name, NodeId::new(0, 12), false, -1); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 104), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 105), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 104), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 105), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variabletype_97(address_space: &mut AddressSpace) { @@ -1266,12 +2398,31 @@ fn add_variabletype_97(address_space: &mut AddressSpace) { let name = "DataTypeDictionaryType"; let node_id = NodeId::new(0, 72); let node = VariableType::new(&node_id, name, name, NodeId::new(0, 15), false, -1); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 106), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 107), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15001), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 106), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 107), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15001), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variabletype_98(address_space: &mut AddressSpace) { @@ -1279,9 +2430,14 @@ fn add_variabletype_98(address_space: &mut AddressSpace) { let name = "ServerVendorCapabilityType"; let node_id = NodeId::new(0, 2137); let node = VariableType::new(&node_id, name, name, NodeId::null(), true, -1); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 63), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_variabletype_99(address_space: &mut AddressSpace) { @@ -1289,15 +2445,46 @@ fn add_variabletype_99(address_space: &mut AddressSpace) { let name = "ServerStatusType"; let node_id = NodeId::new(0, 2138); let node = VariableType::new(&node_id, name, name, NodeId::new(0, 862), false, -1); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2139), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2140), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2141), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2142), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2752), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2753), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2139), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2140), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2141), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2142), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2752), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2753), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variabletype_100(address_space: &mut AddressSpace) { @@ -1305,14 +2492,44 @@ fn add_variabletype_100(address_space: &mut AddressSpace) { let name = "BuildInfoType"; let node_id = NodeId::new(0, 3051); let node = VariableType::new(&node_id, name, name, NodeId::new(0, 338), false, -1); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 3052), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3053), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3054), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3055), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3056), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3057), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 3052), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3053), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3054), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3055), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3056), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3057), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } - diff --git a/server/src/address_space/generated/nodeset_5_15.rs b/server/src/address_space/generated/nodeset_5_15.rs index 7356d151b..2537fc216 100644 --- a/server/src/address_space/generated/nodeset_5_15.rs +++ b/server/src/address_space/generated/nodeset_5_15.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.NodeSet2.Part5.xml by tools/schema/gen_address_space.js // DO NOT EDIT THIS FILE @@ -9,8 +9,11 @@ use std::{convert::TryFrom, str::FromStr}; #[allow(unused_imports)] use crate::{ - address_space::{EventNotifier, types::*}, - prelude::{DataTypeId, ExtensionObject, LocalizedText, NodeId, ReferenceTypeId, service_types::Argument, UAString, Variant, VariantTypeId} + address_space::{types::*, EventNotifier}, + prelude::{ + service_types::Argument, DataTypeId, ExtensionObject, LocalizedText, NodeId, + ReferenceTypeId, UAString, Variant, VariantTypeId, + }, }; #[allow(unused_variables)] @@ -122,21 +125,76 @@ fn add_variabletype_1(address_space: &mut AddressSpace) { let name = "ServerDiagnosticsSummaryType"; let node_id = NodeId::new(0, 2150); let node = VariableType::new(&node_id, name, name, NodeId::new(0, 859), false, -1); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2151), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2152), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2153), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2154), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2155), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2156), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2157), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2159), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2160), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2161), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2162), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2163), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2151), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2152), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2153), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2154), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2155), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2156), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2157), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2159), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2160), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2161), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2162), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2163), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variabletype_2(address_space: &mut AddressSpace) { @@ -144,10 +202,21 @@ fn add_variabletype_2(address_space: &mut AddressSpace) { let name = "SamplingIntervalDiagnosticsArrayType"; let node_id = NodeId::new(0, 2164); let node = VariableType::new(&node_id, name, name, NodeId::new(0, 856), false, 1); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12779), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12779), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variabletype_3(address_space: &mut AddressSpace) { @@ -155,13 +224,36 @@ fn add_variabletype_3(address_space: &mut AddressSpace) { let name = "SamplingIntervalDiagnosticsType"; let node_id = NodeId::new(0, 2165); let node = VariableType::new(&node_id, name, name, NodeId::new(0, 856), false, -1); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2166), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 11697), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 11698), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 11699), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2166), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11697), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11698), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11699), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variabletype_4(address_space: &mut AddressSpace) { @@ -169,10 +261,21 @@ fn add_variabletype_4(address_space: &mut AddressSpace) { let name = "SubscriptionDiagnosticsArrayType"; let node_id = NodeId::new(0, 2171); let node = VariableType::new(&node_id, name, name, NodeId::new(0, 874), false, 1); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12784), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12784), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variabletype_5(address_space: &mut AddressSpace) { @@ -180,40 +283,171 @@ fn add_variabletype_5(address_space: &mut AddressSpace) { let name = "SubscriptionDiagnosticsType"; let node_id = NodeId::new(0, 2172); let node = VariableType::new(&node_id, name, name, NodeId::new(0, 874), false, -1); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2173), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2174), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2175), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2176), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2177), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8888), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2179), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2180), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2181), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2182), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2183), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2184), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2185), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2186), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2187), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2188), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2189), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2190), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2191), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2998), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2193), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8889), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8890), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8891), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8892), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8893), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8894), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8895), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8896), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8897), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8902), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2173), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2174), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2175), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2176), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2177), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8888), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2179), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2180), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2181), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2182), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2183), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2184), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2185), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2186), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2187), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2188), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2189), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2190), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2191), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2998), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2193), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8889), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8890), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8891), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8892), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8893), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8894), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8895), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8896), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8897), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8902), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variabletype_6(address_space: &mut AddressSpace) { @@ -221,10 +455,21 @@ fn add_variabletype_6(address_space: &mut AddressSpace) { let name = "SessionDiagnosticsArrayType"; let node_id = NodeId::new(0, 2196); let node = VariableType::new(&node_id, name, name, NodeId::new(0, 865), false, 1); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12816), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12816), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variabletype_7(address_space: &mut AddressSpace) { @@ -232,52 +477,231 @@ fn add_variabletype_7(address_space: &mut AddressSpace) { let name = "SessionDiagnosticsVariableType"; let node_id = NodeId::new(0, 2197); let node = VariableType::new(&node_id, name, name, NodeId::new(0, 865), false, -1); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2198), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2199), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2200), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2201), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2202), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2203), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2204), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3050), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2205), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2206), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2207), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2208), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2209), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8900), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 11892), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2217), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2218), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2219), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2220), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2221), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2222), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2223), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2224), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2225), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2226), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2227), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2228), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2229), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2230), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2231), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2232), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2233), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2234), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2235), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2236), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2237), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2238), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2239), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2240), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2241), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2242), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2730), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2731), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2198), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2199), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2200), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2201), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2202), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2203), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2204), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3050), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2205), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2206), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2207), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2208), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2209), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8900), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11892), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2217), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2218), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2219), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2220), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2221), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2222), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2223), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2224), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2225), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2226), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2227), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2228), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2229), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2230), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2231), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2232), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2233), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2234), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2235), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2236), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2237), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2238), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2239), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2240), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2241), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2242), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2730), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2731), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variabletype_8(address_space: &mut AddressSpace) { @@ -285,10 +709,21 @@ fn add_variabletype_8(address_space: &mut AddressSpace) { let name = "SessionSecurityDiagnosticsArrayType"; let node_id = NodeId::new(0, 2243); let node = VariableType::new(&node_id, name, name, NodeId::new(0, 868), false, 1); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12860), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12860), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variabletype_9(address_space: &mut AddressSpace) { @@ -296,18 +731,61 @@ fn add_variabletype_9(address_space: &mut AddressSpace) { let name = "SessionSecurityDiagnosticsType"; let node_id = NodeId::new(0, 2244); let node = VariableType::new(&node_id, name, name, NodeId::new(0, 868), false, -1); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2245), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2246), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2247), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2248), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2249), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2250), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2251), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2252), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3058), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2245), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2246), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2247), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2248), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2249), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2250), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2251), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2252), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3058), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variabletype_10(address_space: &mut AddressSpace) { @@ -315,11 +793,26 @@ fn add_variabletype_10(address_space: &mut AddressSpace) { let name = "OptionSetType"; let node_id = NodeId::new(0, 11487); let node = VariableType::new(&node_id, name, name, NodeId::null(), false, -1); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11488), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11701), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11488), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11701), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variabletype_11(address_space: &mut AddressSpace) { @@ -327,12 +820,31 @@ fn add_variabletype_11(address_space: &mut AddressSpace) { let name = "SelectionListType"; let node_id = NodeId::new(0, 16309); let node = VariableType::new(&node_id, name, name, NodeId::null(), false, -2); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17632), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17633), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16312), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17632), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17633), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16312), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variabletype_12(address_space: &mut AddressSpace) { @@ -340,12 +852,31 @@ fn add_variabletype_12(address_space: &mut AddressSpace) { let name = "AudioVariableType"; let node_id = NodeId::new(0, 17986); let node = VariableType::new(&node_id, name, name, NodeId::new(0, 16307), false, -1); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17988), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17989), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17990), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17988), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17989), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17990), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variabletype_13(address_space: &mut AddressSpace) { @@ -353,13 +884,36 @@ fn add_variabletype_13(address_space: &mut AddressSpace) { let name = "StateVariableType"; let node_id = NodeId::new(0, 2755); let node = VariableType::new(&node_id, name, name, NodeId::new(0, 21), false, -1); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2756), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2757), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2758), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2759), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2756), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2757), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2758), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2759), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variabletype_14(address_space: &mut AddressSpace) { @@ -367,14 +921,41 @@ fn add_variabletype_14(address_space: &mut AddressSpace) { let name = "TransitionVariableType"; let node_id = NodeId::new(0, 2762); let node = VariableType::new(&node_id, name, name, NodeId::new(0, 21), false, -1); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2763), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2764), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2765), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2766), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11456), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2763), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2764), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2765), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2766), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11456), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variabletype_15(address_space: &mut AddressSpace) { @@ -382,10 +963,21 @@ fn add_variabletype_15(address_space: &mut AddressSpace) { let name = "FiniteStateVariableType"; let node_id = NodeId::new(0, 2760); let node = VariableType::new(&node_id, name, name, NodeId::new(0, 21), false, -1); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2761), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2755), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2761), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2755), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variabletype_16(address_space: &mut AddressSpace) { @@ -393,10 +985,21 @@ fn add_variabletype_16(address_space: &mut AddressSpace) { let name = "FiniteTransitionVariableType"; let node_id = NodeId::new(0, 2767); let node = VariableType::new(&node_id, name, name, NodeId::new(0, 21), false, -1); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2768), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2762), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2768), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2762), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variabletype_17(address_space: &mut AddressSpace) { @@ -404,9 +1007,14 @@ fn add_variabletype_17(address_space: &mut AddressSpace) { let name = "GuardVariableType"; let node_id = NodeId::new(0, 15113); let node = VariableType::new(&node_id, name, name, NodeId::new(0, 21), false, -1); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 63), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_variabletype_18(address_space: &mut AddressSpace) { @@ -414,10 +1022,21 @@ fn add_variabletype_18(address_space: &mut AddressSpace) { let name = "ExpressionGuardVariableType"; let node_id = NodeId::new(0, 15128); let node = VariableType::new(&node_id, name, name, NodeId::new(0, 21), false, -1); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15129), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15113), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15129), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15113), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variabletype_19(address_space: &mut AddressSpace) { @@ -425,9 +1044,14 @@ fn add_variabletype_19(address_space: &mut AddressSpace) { let name = "ElseGuardVariableType"; let node_id = NodeId::new(0, 15317); let node = VariableType::new(&node_id, name, name, NodeId::new(0, 21), false, -1); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15113), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 15113), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_variabletype_20(address_space: &mut AddressSpace) { @@ -435,11 +1059,26 @@ fn add_variabletype_20(address_space: &mut AddressSpace) { let name = "RationalNumberType"; let node_id = NodeId::new(0, 17709); let node = VariableType::new(&node_id, name, name, NodeId::new(0, 18806), false, -1); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17712), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17713), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17712), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17713), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variabletype_21(address_space: &mut AddressSpace) { @@ -447,10 +1086,21 @@ fn add_variabletype_21(address_space: &mut AddressSpace) { let name = "VectorType"; let node_id = NodeId::new(0, 17714); let node = VariableType::new(&node_id, name, name, NodeId::new(0, 18807), true, -1); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17715), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17715), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variabletype_22(address_space: &mut AddressSpace) { @@ -458,12 +1108,31 @@ fn add_variabletype_22(address_space: &mut AddressSpace) { let name = "3DVectorType"; let node_id = NodeId::new(0, 17716); let node = VariableType::new(&node_id, name, name, NodeId::new(0, 18808), false, -1); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18769), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 18770), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 18771), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17714), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 18769), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18770), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18771), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17714), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variabletype_23(address_space: &mut AddressSpace) { @@ -471,10 +1140,21 @@ fn add_variabletype_23(address_space: &mut AddressSpace) { let name = "CartesianCoordinatesType"; let node_id = NodeId::new(0, 18772); let node = VariableType::new(&node_id, name, name, NodeId::new(0, 18809), true, -1); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18773), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 18773), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variabletype_24(address_space: &mut AddressSpace) { @@ -482,12 +1162,31 @@ fn add_variabletype_24(address_space: &mut AddressSpace) { let name = "3DCartesianCoordinatesType"; let node_id = NodeId::new(0, 18774); let node = VariableType::new(&node_id, name, name, NodeId::new(0, 18810), false, -1); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18776), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 18777), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 18778), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 18772), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 18776), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18777), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18778), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18772), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variabletype_25(address_space: &mut AddressSpace) { @@ -495,10 +1194,21 @@ fn add_variabletype_25(address_space: &mut AddressSpace) { let name = "OrientationType"; let node_id = NodeId::new(0, 18779); let node = VariableType::new(&node_id, name, name, NodeId::new(0, 18811), true, -1); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18780), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 18780), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variabletype_26(address_space: &mut AddressSpace) { @@ -506,12 +1216,31 @@ fn add_variabletype_26(address_space: &mut AddressSpace) { let name = "3DOrientationType"; let node_id = NodeId::new(0, 18781); let node = VariableType::new(&node_id, name, name, NodeId::new(0, 18812), false, -1); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18783), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 18784), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 18785), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 18779), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 18783), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18784), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18785), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18779), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variabletype_27(address_space: &mut AddressSpace) { @@ -519,14 +1248,41 @@ fn add_variabletype_27(address_space: &mut AddressSpace) { let name = "FrameType"; let node_id = NodeId::new(0, 18786); let node = VariableType::new(&node_id, name, name, NodeId::new(0, 18813), true, -1); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18801), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 18787), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 18788), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 18789), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 18790), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 18801), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18787), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18788), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18789), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18790), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variabletype_28(address_space: &mut AddressSpace) { @@ -534,11 +1290,26 @@ fn add_variabletype_28(address_space: &mut AddressSpace) { let name = "3DFrameType"; let node_id = NodeId::new(0, 18791); let node = VariableType::new(&node_id, name, name, NodeId::new(0, 18814), false, -1); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18796), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 18792), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 18786), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 18796), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18792), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18786), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_29(address_space: &mut AddressSpace) { @@ -546,12 +1317,31 @@ fn add_method_29(address_space: &mut AddressSpace) { let name = "GetMonitoredItems"; let node_id = NodeId::new(0, 11489); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11490), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11491), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2004), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11490), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11491), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2004), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_30(address_space: &mut AddressSpace) { @@ -559,11 +1349,26 @@ fn add_method_30(address_space: &mut AddressSpace) { let name = "ResendData"; let node_id = NodeId::new(0, 12871); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12872), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2004), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12872), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2004), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_31(address_space: &mut AddressSpace) { @@ -571,12 +1376,31 @@ fn add_method_31(address_space: &mut AddressSpace) { let name = "SetSubscriptionDurable"; let node_id = NodeId::new(0, 12746); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12747), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 12748), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2004), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12747), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12748), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2004), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_32(address_space: &mut AddressSpace) { @@ -584,11 +1408,26 @@ fn add_method_32(address_space: &mut AddressSpace) { let name = "RequestServerStateChange"; let node_id = NodeId::new(0, 12883); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12884), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2004), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12884), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2004), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_33(address_space: &mut AddressSpace) { @@ -596,12 +1435,31 @@ fn add_method_33(address_space: &mut AddressSpace) { let name = "AddRole"; let node_id = NodeId::new(0, 16296); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16297), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16298), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16295), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16297), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16298), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16295), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_34(address_space: &mut AddressSpace) { @@ -609,11 +1467,26 @@ fn add_method_34(address_space: &mut AddressSpace) { let name = "RemoveRole"; let node_id = NodeId::new(0, 16299); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16300), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16295), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16300), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16295), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_35(address_space: &mut AddressSpace) { @@ -621,12 +1494,31 @@ fn add_method_35(address_space: &mut AddressSpace) { let name = "Open"; let node_id = NodeId::new(0, 11580); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11581), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11582), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11575), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11581), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11582), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11575), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_36(address_space: &mut AddressSpace) { @@ -634,11 +1526,26 @@ fn add_method_36(address_space: &mut AddressSpace) { let name = "Close"; let node_id = NodeId::new(0, 11583); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11584), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11575), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11584), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11575), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_37(address_space: &mut AddressSpace) { @@ -646,12 +1553,31 @@ fn add_method_37(address_space: &mut AddressSpace) { let name = "Read"; let node_id = NodeId::new(0, 11585); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11586), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11587), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11575), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11586), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11587), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11575), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_38(address_space: &mut AddressSpace) { @@ -659,11 +1585,26 @@ fn add_method_38(address_space: &mut AddressSpace) { let name = "Write"; let node_id = NodeId::new(0, 11588); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11589), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11575), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11589), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11575), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_39(address_space: &mut AddressSpace) { @@ -671,12 +1612,31 @@ fn add_method_39(address_space: &mut AddressSpace) { let name = "GetPosition"; let node_id = NodeId::new(0, 11590); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11591), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11592), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11575), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11591), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11592), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11575), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_40(address_space: &mut AddressSpace) { @@ -684,11 +1644,26 @@ fn add_method_40(address_space: &mut AddressSpace) { let name = "SetPosition"; let node_id = NodeId::new(0, 11593); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11594), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11575), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11594), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11575), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_41(address_space: &mut AddressSpace) { @@ -696,10 +1671,21 @@ fn add_method_41(address_space: &mut AddressSpace) { let name = "ExportNamespace"; let node_id = NodeId::new(0, 11615); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11595), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11595), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_42(address_space: &mut AddressSpace) { @@ -707,12 +1693,31 @@ fn add_method_42(address_space: &mut AddressSpace) { let name = "Open"; let node_id = NodeId::new(0, 11629); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11630), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11631), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11624), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11630), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11631), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11624), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_43(address_space: &mut AddressSpace) { @@ -720,11 +1725,26 @@ fn add_method_43(address_space: &mut AddressSpace) { let name = "Close"; let node_id = NodeId::new(0, 11632); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11633), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11624), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11633), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11624), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_44(address_space: &mut AddressSpace) { @@ -732,12 +1752,31 @@ fn add_method_44(address_space: &mut AddressSpace) { let name = "Read"; let node_id = NodeId::new(0, 11634); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11635), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11636), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11624), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11635), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11636), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11624), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_45(address_space: &mut AddressSpace) { @@ -745,11 +1784,26 @@ fn add_method_45(address_space: &mut AddressSpace) { let name = "Write"; let node_id = NodeId::new(0, 11637); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11638), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11624), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11638), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11624), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_46(address_space: &mut AddressSpace) { @@ -757,12 +1811,31 @@ fn add_method_46(address_space: &mut AddressSpace) { let name = "GetPosition"; let node_id = NodeId::new(0, 11639); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11640), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11641), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11624), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11640), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11641), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11624), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_47(address_space: &mut AddressSpace) { @@ -770,11 +1843,26 @@ fn add_method_47(address_space: &mut AddressSpace) { let name = "SetPosition"; let node_id = NodeId::new(0, 11642); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11643), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11624), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11643), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11624), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_48(address_space: &mut AddressSpace) { @@ -782,11 +1870,26 @@ fn add_method_48(address_space: &mut AddressSpace) { let name = "AddRole"; let node_id = NodeId::new(0, 16301); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16302), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16303), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15606), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16302), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16303), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15606), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_49(address_space: &mut AddressSpace) { @@ -794,10 +1897,21 @@ fn add_method_49(address_space: &mut AddressSpace) { let name = "RemoveRole"; let node_id = NodeId::new(0, 16304); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16305), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15606), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16305), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15606), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_50(address_space: &mut AddressSpace) { @@ -805,11 +1919,26 @@ fn add_method_50(address_space: &mut AddressSpace) { let name = "GetMonitoredItems"; let node_id = NodeId::new(0, 11492); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11493), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11494), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2253), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11493), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11494), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2253), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_51(address_space: &mut AddressSpace) { @@ -817,10 +1946,21 @@ fn add_method_51(address_space: &mut AddressSpace) { let name = "ResendData"; let node_id = NodeId::new(0, 12873); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12874), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2253), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12874), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2253), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_52(address_space: &mut AddressSpace) { @@ -828,11 +1968,26 @@ fn add_method_52(address_space: &mut AddressSpace) { let name = "SetSubscriptionDurable"; let node_id = NodeId::new(0, 12749); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12750), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 12751), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2253), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12750), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12751), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2253), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_53(address_space: &mut AddressSpace) { @@ -840,10 +1995,21 @@ fn add_method_53(address_space: &mut AddressSpace) { let name = "RequestServerStateChange"; let node_id = NodeId::new(0, 12886); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12887), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2253), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12887), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2253), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_54(address_space: &mut AddressSpace) { @@ -851,12 +2017,31 @@ fn add_method_54(address_space: &mut AddressSpace) { let name = "CreateDirectory"; let node_id = NodeId::new(0, 13355); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13356), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13357), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13354), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13356), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13357), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13354), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_55(address_space: &mut AddressSpace) { @@ -864,12 +2049,31 @@ fn add_method_55(address_space: &mut AddressSpace) { let name = "CreateFile"; let node_id = NodeId::new(0, 13358); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13359), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13360), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13354), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13359), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13360), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13354), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_56(address_space: &mut AddressSpace) { @@ -877,11 +2081,26 @@ fn add_method_56(address_space: &mut AddressSpace) { let name = "Delete"; let node_id = NodeId::new(0, 17718); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17719), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13354), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17719), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13354), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_57(address_space: &mut AddressSpace) { @@ -889,12 +2108,31 @@ fn add_method_57(address_space: &mut AddressSpace) { let name = "MoveOrCopy"; let node_id = NodeId::new(0, 13363); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13364), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13365), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13354), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13364), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13365), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13354), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_58(address_space: &mut AddressSpace) { @@ -902,12 +2140,31 @@ fn add_method_58(address_space: &mut AddressSpace) { let name = "Open"; let node_id = NodeId::new(0, 13372); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13373), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13374), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13366), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13373), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13374), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13366), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_59(address_space: &mut AddressSpace) { @@ -915,11 +2172,26 @@ fn add_method_59(address_space: &mut AddressSpace) { let name = "Close"; let node_id = NodeId::new(0, 13375); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13376), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13366), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13376), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13366), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_60(address_space: &mut AddressSpace) { @@ -927,12 +2199,31 @@ fn add_method_60(address_space: &mut AddressSpace) { let name = "Read"; let node_id = NodeId::new(0, 13377); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13378), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13379), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13366), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13378), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13379), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13366), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_61(address_space: &mut AddressSpace) { @@ -940,11 +2231,26 @@ fn add_method_61(address_space: &mut AddressSpace) { let name = "Write"; let node_id = NodeId::new(0, 13380); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13381), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13366), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13381), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13366), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_62(address_space: &mut AddressSpace) { @@ -952,12 +2258,31 @@ fn add_method_62(address_space: &mut AddressSpace) { let name = "GetPosition"; let node_id = NodeId::new(0, 13382); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13383), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13384), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13366), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13383), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13384), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13366), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_63(address_space: &mut AddressSpace) { @@ -965,11 +2290,26 @@ fn add_method_63(address_space: &mut AddressSpace) { let name = "SetPosition"; let node_id = NodeId::new(0, 13385); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13386), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13366), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13386), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13366), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_64(address_space: &mut AddressSpace) { @@ -977,12 +2317,31 @@ fn add_method_64(address_space: &mut AddressSpace) { let name = "CreateDirectory"; let node_id = NodeId::new(0, 13387); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13388), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13389), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13353), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13388), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13389), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13353), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_65(address_space: &mut AddressSpace) { @@ -990,12 +2349,31 @@ fn add_method_65(address_space: &mut AddressSpace) { let name = "CreateFile"; let node_id = NodeId::new(0, 13390); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13391), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13392), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13353), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13391), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13392), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13353), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_66(address_space: &mut AddressSpace) { @@ -1003,11 +2381,26 @@ fn add_method_66(address_space: &mut AddressSpace) { let name = "Delete"; let node_id = NodeId::new(0, 13393); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13394), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13353), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13394), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13353), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_67(address_space: &mut AddressSpace) { @@ -1015,12 +2408,31 @@ fn add_method_67(address_space: &mut AddressSpace) { let name = "MoveOrCopy"; let node_id = NodeId::new(0, 13395); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13396), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13397), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13353), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13396), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13397), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13353), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_68(address_space: &mut AddressSpace) { @@ -1028,11 +2440,26 @@ fn add_method_68(address_space: &mut AddressSpace) { let name = "CreateDirectory"; let node_id = NodeId::new(0, 16348); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16349), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16350), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16314), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16349), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16350), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16314), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_69(address_space: &mut AddressSpace) { @@ -1040,11 +2467,26 @@ fn add_method_69(address_space: &mut AddressSpace) { let name = "CreateFile"; let node_id = NodeId::new(0, 16351); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16352), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16353), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16314), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16352), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16353), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16314), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_70(address_space: &mut AddressSpace) { @@ -1052,10 +2494,21 @@ fn add_method_70(address_space: &mut AddressSpace) { let name = "Delete"; let node_id = NodeId::new(0, 16354); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16355), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16314), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16355), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16314), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_71(address_space: &mut AddressSpace) { @@ -1063,11 +2516,26 @@ fn add_method_71(address_space: &mut AddressSpace) { let name = "MoveOrCopy"; let node_id = NodeId::new(0, 16356); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16357), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16358), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16314), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16357), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16358), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16314), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_72(address_space: &mut AddressSpace) { @@ -1075,12 +2543,31 @@ fn add_method_72(address_space: &mut AddressSpace) { let name = "GenerateFileForRead"; let node_id = NodeId::new(0, 15746); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15747), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15748), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15744), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15747), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15748), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15744), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_73(address_space: &mut AddressSpace) { @@ -1088,12 +2575,31 @@ fn add_method_73(address_space: &mut AddressSpace) { let name = "GenerateFileForWrite"; let node_id = NodeId::new(0, 15749); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16359), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15750), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15744), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16359), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15750), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15744), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_74(address_space: &mut AddressSpace) { @@ -1101,12 +2607,31 @@ fn add_method_74(address_space: &mut AddressSpace) { let name = "CloseAndCommit"; let node_id = NodeId::new(0, 15751); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15752), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15753), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15744), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15752), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15753), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15744), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_75(address_space: &mut AddressSpace) { @@ -1114,10 +2639,21 @@ fn add_method_75(address_space: &mut AddressSpace) { let name = "Reset"; let node_id = NodeId::new(0, 15794); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15754), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15754), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_76(address_space: &mut AddressSpace) { @@ -1125,10 +2661,21 @@ fn add_method_76(address_space: &mut AddressSpace) { let name = "Reset"; let node_id = NodeId::new(0, 15843); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15803), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15803), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_77(address_space: &mut AddressSpace) { @@ -1136,12 +2683,31 @@ fn add_method_77(address_space: &mut AddressSpace) { let name = "AddRole"; let node_id = NodeId::new(0, 15997); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15998), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15999), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15607), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15998), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15999), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15607), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_78(address_space: &mut AddressSpace) { @@ -1149,11 +2715,26 @@ fn add_method_78(address_space: &mut AddressSpace) { let name = "RemoveRole"; let node_id = NodeId::new(0, 16000); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16001), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15607), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16001), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15607), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_79(address_space: &mut AddressSpace) { @@ -1161,11 +2742,26 @@ fn add_method_79(address_space: &mut AddressSpace) { let name = "AddIdentity"; let node_id = NodeId::new(0, 15624); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15625), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15620), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15625), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15620), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_80(address_space: &mut AddressSpace) { @@ -1173,11 +2769,26 @@ fn add_method_80(address_space: &mut AddressSpace) { let name = "RemoveIdentity"; let node_id = NodeId::new(0, 15626); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15627), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15620), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15627), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15620), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_81(address_space: &mut AddressSpace) { @@ -1185,11 +2796,26 @@ fn add_method_81(address_space: &mut AddressSpace) { let name = "AddApplication"; let node_id = NodeId::new(0, 16176); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16177), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15620), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16177), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15620), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_82(address_space: &mut AddressSpace) { @@ -1197,11 +2823,26 @@ fn add_method_82(address_space: &mut AddressSpace) { let name = "RemoveApplication"; let node_id = NodeId::new(0, 16178); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16179), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15620), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16179), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15620), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_83(address_space: &mut AddressSpace) { @@ -1209,11 +2850,26 @@ fn add_method_83(address_space: &mut AddressSpace) { let name = "AddEndpoint"; let node_id = NodeId::new(0, 16180); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16181), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15620), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16181), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15620), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_84(address_space: &mut AddressSpace) { @@ -1221,11 +2877,26 @@ fn add_method_84(address_space: &mut AddressSpace) { let name = "RemoveEndpoint"; let node_id = NodeId::new(0, 16182); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16183), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15620), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16183), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15620), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_85(address_space: &mut AddressSpace) { @@ -1233,10 +2904,21 @@ fn add_method_85(address_space: &mut AddressSpace) { let name = "AddIdentity"; let node_id = NodeId::new(0, 15648); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15649), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15644), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15649), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15644), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_86(address_space: &mut AddressSpace) { @@ -1244,10 +2926,21 @@ fn add_method_86(address_space: &mut AddressSpace) { let name = "RemoveIdentity"; let node_id = NodeId::new(0, 15650); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15651), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15644), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15651), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15644), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_87(address_space: &mut AddressSpace) { @@ -1255,10 +2948,21 @@ fn add_method_87(address_space: &mut AddressSpace) { let name = "AddApplication"; let node_id = NodeId::new(0, 16195); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16196), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15644), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16196), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15644), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_88(address_space: &mut AddressSpace) { @@ -1266,10 +2970,21 @@ fn add_method_88(address_space: &mut AddressSpace) { let name = "RemoveApplication"; let node_id = NodeId::new(0, 16197); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16198), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15644), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16198), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15644), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_89(address_space: &mut AddressSpace) { @@ -1277,10 +2992,21 @@ fn add_method_89(address_space: &mut AddressSpace) { let name = "AddEndpoint"; let node_id = NodeId::new(0, 16199); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16200), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15644), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16200), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15644), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_90(address_space: &mut AddressSpace) { @@ -1288,10 +3014,21 @@ fn add_method_90(address_space: &mut AddressSpace) { let name = "RemoveEndpoint"; let node_id = NodeId::new(0, 16201); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16202), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15644), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16202), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15644), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_91(address_space: &mut AddressSpace) { @@ -1299,10 +3036,21 @@ fn add_method_91(address_space: &mut AddressSpace) { let name = "AddIdentity"; let node_id = NodeId::new(0, 15660); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15661), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15656), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15661), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15656), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_92(address_space: &mut AddressSpace) { @@ -1310,10 +3058,21 @@ fn add_method_92(address_space: &mut AddressSpace) { let name = "RemoveIdentity"; let node_id = NodeId::new(0, 15662); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15663), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15656), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15663), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15656), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_93(address_space: &mut AddressSpace) { @@ -1321,10 +3080,21 @@ fn add_method_93(address_space: &mut AddressSpace) { let name = "AddApplication"; let node_id = NodeId::new(0, 16206); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16207), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15656), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16207), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15656), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_94(address_space: &mut AddressSpace) { @@ -1332,10 +3102,21 @@ fn add_method_94(address_space: &mut AddressSpace) { let name = "RemoveApplication"; let node_id = NodeId::new(0, 16208); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16209), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15656), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16209), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15656), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_95(address_space: &mut AddressSpace) { @@ -1343,10 +3124,21 @@ fn add_method_95(address_space: &mut AddressSpace) { let name = "AddEndpoint"; let node_id = NodeId::new(0, 16210); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16211), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15656), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16211), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15656), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_96(address_space: &mut AddressSpace) { @@ -1354,10 +3146,21 @@ fn add_method_96(address_space: &mut AddressSpace) { let name = "RemoveEndpoint"; let node_id = NodeId::new(0, 16212); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16213), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15656), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16213), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15656), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_97(address_space: &mut AddressSpace) { @@ -1365,10 +3168,21 @@ fn add_method_97(address_space: &mut AddressSpace) { let name = "AddIdentity"; let node_id = NodeId::new(0, 15672); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15673), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15668), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15673), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15668), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_98(address_space: &mut AddressSpace) { @@ -1376,10 +3190,21 @@ fn add_method_98(address_space: &mut AddressSpace) { let name = "RemoveIdentity"; let node_id = NodeId::new(0, 15674); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15675), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15668), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15675), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15668), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_99(address_space: &mut AddressSpace) { @@ -1387,10 +3212,21 @@ fn add_method_99(address_space: &mut AddressSpace) { let name = "AddApplication"; let node_id = NodeId::new(0, 16217); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16218), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15668), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16218), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15668), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_100(address_space: &mut AddressSpace) { @@ -1398,9 +3234,19 @@ fn add_method_100(address_space: &mut AddressSpace) { let name = "RemoveApplication"; let node_id = NodeId::new(0, 16219); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16220), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15668), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16220), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15668), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } - diff --git a/server/src/address_space/generated/nodeset_5_16.rs b/server/src/address_space/generated/nodeset_5_16.rs index ecf28eff3..aaf2bde37 100644 --- a/server/src/address_space/generated/nodeset_5_16.rs +++ b/server/src/address_space/generated/nodeset_5_16.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.NodeSet2.Part5.xml by tools/schema/gen_address_space.js // DO NOT EDIT THIS FILE @@ -9,8 +9,11 @@ use std::{convert::TryFrom, str::FromStr}; #[allow(unused_imports)] use crate::{ - address_space::{EventNotifier, types::*}, - prelude::{DataTypeId, ExtensionObject, LocalizedText, NodeId, ReferenceTypeId, service_types::Argument, UAString, Variant, VariantTypeId} + address_space::{types::*, EventNotifier}, + prelude::{ + service_types::Argument, DataTypeId, ExtensionObject, LocalizedText, NodeId, + ReferenceTypeId, UAString, Variant, VariantTypeId, + }, }; #[allow(unused_variables)] @@ -54,10 +57,21 @@ fn add_method_1(address_space: &mut AddressSpace) { let name = "AddEndpoint"; let node_id = NodeId::new(0, 16221); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16222), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15668), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16222), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15668), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_2(address_space: &mut AddressSpace) { @@ -65,10 +79,21 @@ fn add_method_2(address_space: &mut AddressSpace) { let name = "RemoveEndpoint"; let node_id = NodeId::new(0, 16223); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16224), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15668), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16224), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15668), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_3(address_space: &mut AddressSpace) { @@ -76,10 +101,21 @@ fn add_method_3(address_space: &mut AddressSpace) { let name = "AddIdentity"; let node_id = NodeId::new(0, 15684); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15685), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15680), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15685), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15680), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_4(address_space: &mut AddressSpace) { @@ -87,10 +123,21 @@ fn add_method_4(address_space: &mut AddressSpace) { let name = "RemoveIdentity"; let node_id = NodeId::new(0, 15686); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15687), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15680), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15687), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15680), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_5(address_space: &mut AddressSpace) { @@ -98,10 +145,21 @@ fn add_method_5(address_space: &mut AddressSpace) { let name = "AddApplication"; let node_id = NodeId::new(0, 16228); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16229), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15680), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16229), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15680), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_6(address_space: &mut AddressSpace) { @@ -109,10 +167,21 @@ fn add_method_6(address_space: &mut AddressSpace) { let name = "RemoveApplication"; let node_id = NodeId::new(0, 16230); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16231), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15680), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16231), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15680), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_7(address_space: &mut AddressSpace) { @@ -120,10 +189,21 @@ fn add_method_7(address_space: &mut AddressSpace) { let name = "AddEndpoint"; let node_id = NodeId::new(0, 16232); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16233), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15680), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16233), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15680), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_8(address_space: &mut AddressSpace) { @@ -131,10 +211,21 @@ fn add_method_8(address_space: &mut AddressSpace) { let name = "RemoveEndpoint"; let node_id = NodeId::new(0, 16234); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16235), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15680), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16235), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15680), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_9(address_space: &mut AddressSpace) { @@ -142,10 +233,21 @@ fn add_method_9(address_space: &mut AddressSpace) { let name = "AddIdentity"; let node_id = NodeId::new(0, 16041); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16042), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16036), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16042), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16036), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_10(address_space: &mut AddressSpace) { @@ -153,10 +255,21 @@ fn add_method_10(address_space: &mut AddressSpace) { let name = "RemoveIdentity"; let node_id = NodeId::new(0, 16043); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16044), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16036), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16044), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16036), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_11(address_space: &mut AddressSpace) { @@ -164,10 +277,21 @@ fn add_method_11(address_space: &mut AddressSpace) { let name = "AddApplication"; let node_id = NodeId::new(0, 16239); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16240), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16036), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16240), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16036), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_12(address_space: &mut AddressSpace) { @@ -175,10 +299,21 @@ fn add_method_12(address_space: &mut AddressSpace) { let name = "RemoveApplication"; let node_id = NodeId::new(0, 16241); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16242), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16036), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16242), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16036), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_13(address_space: &mut AddressSpace) { @@ -186,10 +321,21 @@ fn add_method_13(address_space: &mut AddressSpace) { let name = "AddEndpoint"; let node_id = NodeId::new(0, 16243); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16244), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16036), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16244), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16036), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_14(address_space: &mut AddressSpace) { @@ -197,10 +343,21 @@ fn add_method_14(address_space: &mut AddressSpace) { let name = "RemoveEndpoint"; let node_id = NodeId::new(0, 16245); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16246), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16036), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16246), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16036), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_15(address_space: &mut AddressSpace) { @@ -208,10 +365,21 @@ fn add_method_15(address_space: &mut AddressSpace) { let name = "AddIdentity"; let node_id = NodeId::new(0, 15696); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15697), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15692), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15697), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15692), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_16(address_space: &mut AddressSpace) { @@ -219,10 +387,21 @@ fn add_method_16(address_space: &mut AddressSpace) { let name = "RemoveIdentity"; let node_id = NodeId::new(0, 15698); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15699), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15692), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15699), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15692), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_17(address_space: &mut AddressSpace) { @@ -230,10 +409,21 @@ fn add_method_17(address_space: &mut AddressSpace) { let name = "AddApplication"; let node_id = NodeId::new(0, 16250); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16251), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15692), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16251), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15692), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_18(address_space: &mut AddressSpace) { @@ -241,10 +431,21 @@ fn add_method_18(address_space: &mut AddressSpace) { let name = "RemoveApplication"; let node_id = NodeId::new(0, 16252); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16253), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15692), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16253), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15692), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_19(address_space: &mut AddressSpace) { @@ -252,10 +453,21 @@ fn add_method_19(address_space: &mut AddressSpace) { let name = "AddEndpoint"; let node_id = NodeId::new(0, 16254); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16255), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15692), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16255), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15692), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_20(address_space: &mut AddressSpace) { @@ -263,10 +475,21 @@ fn add_method_20(address_space: &mut AddressSpace) { let name = "RemoveEndpoint"; let node_id = NodeId::new(0, 16256); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16257), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15692), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16257), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15692), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_21(address_space: &mut AddressSpace) { @@ -274,10 +497,21 @@ fn add_method_21(address_space: &mut AddressSpace) { let name = "AddIdentity"; let node_id = NodeId::new(0, 15720); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15721), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15716), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15721), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15716), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_22(address_space: &mut AddressSpace) { @@ -285,10 +519,21 @@ fn add_method_22(address_space: &mut AddressSpace) { let name = "RemoveIdentity"; let node_id = NodeId::new(0, 15722); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15723), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15716), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15723), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15716), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_23(address_space: &mut AddressSpace) { @@ -296,10 +541,21 @@ fn add_method_23(address_space: &mut AddressSpace) { let name = "AddApplication"; let node_id = NodeId::new(0, 16272); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16273), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15716), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16273), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15716), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_24(address_space: &mut AddressSpace) { @@ -307,10 +563,21 @@ fn add_method_24(address_space: &mut AddressSpace) { let name = "RemoveApplication"; let node_id = NodeId::new(0, 16274); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16275), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15716), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16275), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15716), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_25(address_space: &mut AddressSpace) { @@ -318,10 +585,21 @@ fn add_method_25(address_space: &mut AddressSpace) { let name = "AddEndpoint"; let node_id = NodeId::new(0, 16276); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16277), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15716), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16277), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15716), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_26(address_space: &mut AddressSpace) { @@ -329,10 +607,21 @@ fn add_method_26(address_space: &mut AddressSpace) { let name = "RemoveEndpoint"; let node_id = NodeId::new(0, 16278); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16279), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15716), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16279), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15716), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_27(address_space: &mut AddressSpace) { @@ -340,10 +629,21 @@ fn add_method_27(address_space: &mut AddressSpace) { let name = "AddIdentity"; let node_id = NodeId::new(0, 15708); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15709), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15704), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15709), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15704), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_28(address_space: &mut AddressSpace) { @@ -351,10 +651,21 @@ fn add_method_28(address_space: &mut AddressSpace) { let name = "RemoveIdentity"; let node_id = NodeId::new(0, 15710); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15711), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15704), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15711), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15704), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_29(address_space: &mut AddressSpace) { @@ -362,10 +673,21 @@ fn add_method_29(address_space: &mut AddressSpace) { let name = "AddApplication"; let node_id = NodeId::new(0, 16261); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16262), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15704), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16262), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15704), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_30(address_space: &mut AddressSpace) { @@ -373,10 +695,21 @@ fn add_method_30(address_space: &mut AddressSpace) { let name = "RemoveApplication"; let node_id = NodeId::new(0, 16263); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16264), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15704), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16264), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15704), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_31(address_space: &mut AddressSpace) { @@ -384,10 +717,21 @@ fn add_method_31(address_space: &mut AddressSpace) { let name = "AddEndpoint"; let node_id = NodeId::new(0, 16265); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16266), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15704), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16266), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15704), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_32(address_space: &mut AddressSpace) { @@ -395,9 +739,19 @@ fn add_method_32(address_space: &mut AddressSpace) { let name = "RemoveEndpoint"; let node_id = NodeId::new(0, 16267); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16268), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15704), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16268), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15704), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } - diff --git a/server/src/address_space/generated/nodeset_5_2.rs b/server/src/address_space/generated/nodeset_5_2.rs index b1555f051..f4c96172d 100644 --- a/server/src/address_space/generated/nodeset_5_2.rs +++ b/server/src/address_space/generated/nodeset_5_2.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.NodeSet2.Part5.xml by tools/schema/gen_address_space.js // DO NOT EDIT THIS FILE @@ -9,8 +9,11 @@ use std::{convert::TryFrom, str::FromStr}; #[allow(unused_imports)] use crate::{ - address_space::{EventNotifier, types::*}, - prelude::{DataTypeId, ExtensionObject, LocalizedText, NodeId, ReferenceTypeId, service_types::Argument, UAString, Variant, VariantTypeId} + address_space::{types::*, EventNotifier}, + prelude::{ + service_types::Argument, DataTypeId, ExtensionObject, LocalizedText, NodeId, + ReferenceTypeId, UAString, Variant, VariantTypeId, + }, }; #[allow(unused_variables)] @@ -122,11 +125,26 @@ fn add_object_1(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 870); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 868), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8223), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 868), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8223), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_2(address_space: &mut AddressSpace) { @@ -134,11 +152,26 @@ fn add_object_2(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 873); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 871), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8226), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 871), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8226), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_3(address_space: &mut AddressSpace) { @@ -146,11 +179,26 @@ fn add_object_3(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 301); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 299), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 7659), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 299), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 7659), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_4(address_space: &mut AddressSpace) { @@ -158,11 +206,26 @@ fn add_object_4(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 876); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 874), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8229), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 874), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8229), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_5(address_space: &mut AddressSpace) { @@ -170,11 +233,26 @@ fn add_object_5(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 879); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 877), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8232), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 877), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8232), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_6(address_space: &mut AddressSpace) { @@ -182,11 +260,26 @@ fn add_object_6(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 899); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 897), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8235), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 897), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8235), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_7(address_space: &mut AddressSpace) { @@ -194,11 +287,26 @@ fn add_object_7(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 14802); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 14533), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 14829), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 14533), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 14829), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_8(address_space: &mut AddressSpace) { @@ -206,11 +314,26 @@ fn add_object_8(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 17541); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16313), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 17542), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16313), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 17542), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_9(address_space: &mut AddressSpace) { @@ -218,11 +341,26 @@ fn add_object_9(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 17553); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17548), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 17554), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17548), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 17554), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_10(address_space: &mut AddressSpace) { @@ -230,11 +368,26 @@ fn add_object_10(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 15949); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15528), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 16024), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15528), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 16024), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_11(address_space: &mut AddressSpace) { @@ -242,11 +395,26 @@ fn add_object_11(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 18851); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18806), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 18860), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 18806), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 18860), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_12(address_space: &mut AddressSpace) { @@ -254,11 +422,26 @@ fn add_object_12(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 18852); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18807), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 18863), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 18807), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 18863), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_13(address_space: &mut AddressSpace) { @@ -266,11 +449,26 @@ fn add_object_13(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 18853); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18808), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 18866), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 18808), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 18866), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_14(address_space: &mut AddressSpace) { @@ -278,11 +476,26 @@ fn add_object_14(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 18854); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18809), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 18869), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 18809), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 18869), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_15(address_space: &mut AddressSpace) { @@ -290,11 +503,26 @@ fn add_object_15(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 18855); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18810), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 19049), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 18810), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 19049), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_16(address_space: &mut AddressSpace) { @@ -302,11 +530,26 @@ fn add_object_16(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 18856); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18811), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 19052), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 18811), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 19052), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_17(address_space: &mut AddressSpace) { @@ -314,11 +557,26 @@ fn add_object_17(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 18857); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18812), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 19055), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 18812), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 19055), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_18(address_space: &mut AddressSpace) { @@ -326,11 +584,26 @@ fn add_object_18(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 18858); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18813), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 19058), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 18813), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 19058), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_19(address_space: &mut AddressSpace) { @@ -338,11 +611,26 @@ fn add_object_19(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 18859); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18814), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 19061), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 18814), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 19061), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_20(address_space: &mut AddressSpace) { @@ -350,11 +638,26 @@ fn add_object_20(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 15728); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15634), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 15730), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15634), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 15730), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_21(address_space: &mut AddressSpace) { @@ -362,11 +665,26 @@ fn add_object_21(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 23520); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 23498), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 23522), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 23498), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 23522), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_22(address_space: &mut AddressSpace) { @@ -374,11 +692,26 @@ fn add_object_22(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 339); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 338), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8327), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 338), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8327), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_23(address_space: &mut AddressSpace) { @@ -386,11 +719,26 @@ fn add_object_23(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 854); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 853), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8843), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 853), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8843), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_24(address_space: &mut AddressSpace) { @@ -398,11 +746,26 @@ fn add_object_24(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 11949); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11943), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 11951), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11943), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 11951), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_25(address_space: &mut AddressSpace) { @@ -410,11 +773,26 @@ fn add_object_25(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 11950); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11944), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 11954), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11944), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 11954), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_26(address_space: &mut AddressSpace) { @@ -422,11 +800,26 @@ fn add_object_26(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 857); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 856), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8846), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 856), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8846), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_27(address_space: &mut AddressSpace) { @@ -434,11 +827,26 @@ fn add_object_27(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 860); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 859), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8849), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 859), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8849), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_28(address_space: &mut AddressSpace) { @@ -446,11 +854,26 @@ fn add_object_28(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 863); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 862), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8852), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 862), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8852), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_29(address_space: &mut AddressSpace) { @@ -458,11 +881,26 @@ fn add_object_29(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 866); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 865), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8855), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 865), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8855), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_30(address_space: &mut AddressSpace) { @@ -470,11 +908,26 @@ fn add_object_30(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 869); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 868), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8858), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 868), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8858), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_31(address_space: &mut AddressSpace) { @@ -482,11 +935,26 @@ fn add_object_31(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 872); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 871), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8861), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 871), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8861), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_32(address_space: &mut AddressSpace) { @@ -494,11 +962,26 @@ fn add_object_32(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 300); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 299), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8294), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 299), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8294), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_33(address_space: &mut AddressSpace) { @@ -506,11 +989,26 @@ fn add_object_33(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 875); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 874), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8864), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 874), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8864), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_34(address_space: &mut AddressSpace) { @@ -518,11 +1016,26 @@ fn add_object_34(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 878); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 877), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8867), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 877), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8867), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_35(address_space: &mut AddressSpace) { @@ -530,11 +1043,26 @@ fn add_object_35(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 898); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 897), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8870), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 897), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8870), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_36(address_space: &mut AddressSpace) { @@ -542,10 +1070,21 @@ fn add_object_36(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15041); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 14533), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 14533), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_37(address_space: &mut AddressSpace) { @@ -553,10 +1092,21 @@ fn add_object_37(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 17547); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16313), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16313), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_38(address_space: &mut AddressSpace) { @@ -564,10 +1114,21 @@ fn add_object_38(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 17557); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17548), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17548), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_39(address_space: &mut AddressSpace) { @@ -575,10 +1136,21 @@ fn add_object_39(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 16150); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15528), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15528), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_40(address_space: &mut AddressSpace) { @@ -586,10 +1158,21 @@ fn add_object_40(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 19064); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18806), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 18806), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_41(address_space: &mut AddressSpace) { @@ -597,10 +1180,21 @@ fn add_object_41(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 19065); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18807), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 18807), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_42(address_space: &mut AddressSpace) { @@ -608,10 +1202,21 @@ fn add_object_42(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 19066); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18808), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 18808), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_43(address_space: &mut AddressSpace) { @@ -619,10 +1224,21 @@ fn add_object_43(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 19067); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18809), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 18809), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_44(address_space: &mut AddressSpace) { @@ -630,10 +1246,21 @@ fn add_object_44(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 19068); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18810), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 18810), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_45(address_space: &mut AddressSpace) { @@ -641,10 +1268,21 @@ fn add_object_45(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 19069); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18811), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 18811), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_46(address_space: &mut AddressSpace) { @@ -652,10 +1290,21 @@ fn add_object_46(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 19070); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18812), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 18812), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_47(address_space: &mut AddressSpace) { @@ -663,10 +1312,21 @@ fn add_object_47(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 19071); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18813), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 18813), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_48(address_space: &mut AddressSpace) { @@ -674,10 +1334,21 @@ fn add_object_48(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 19072); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18814), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 18814), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_49(address_space: &mut AddressSpace) { @@ -685,10 +1356,21 @@ fn add_object_49(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15042); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15634), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15634), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_50(address_space: &mut AddressSpace) { @@ -696,10 +1378,21 @@ fn add_object_50(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 23528); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 23498), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 23498), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_51(address_space: &mut AddressSpace) { @@ -707,10 +1400,21 @@ fn add_object_51(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15361); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 338), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 338), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_52(address_space: &mut AddressSpace) { @@ -718,10 +1422,21 @@ fn add_object_52(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15362); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 853), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 853), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_53(address_space: &mut AddressSpace) { @@ -729,10 +1444,21 @@ fn add_object_53(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15363); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11943), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11943), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_54(address_space: &mut AddressSpace) { @@ -740,10 +1466,21 @@ fn add_object_54(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15364); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11944), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11944), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_55(address_space: &mut AddressSpace) { @@ -751,10 +1488,21 @@ fn add_object_55(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15365); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 856), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 856), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_56(address_space: &mut AddressSpace) { @@ -762,10 +1510,21 @@ fn add_object_56(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15366); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 859), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 859), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_57(address_space: &mut AddressSpace) { @@ -773,10 +1532,21 @@ fn add_object_57(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15367); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 862), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 862), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_58(address_space: &mut AddressSpace) { @@ -784,10 +1554,21 @@ fn add_object_58(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15368); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 865), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 865), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_59(address_space: &mut AddressSpace) { @@ -795,10 +1576,21 @@ fn add_object_59(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15369); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 868), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 868), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_60(address_space: &mut AddressSpace) { @@ -806,10 +1598,21 @@ fn add_object_60(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15370); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 871), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 871), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_61(address_space: &mut AddressSpace) { @@ -817,10 +1620,21 @@ fn add_object_61(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15371); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 299), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 299), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_62(address_space: &mut AddressSpace) { @@ -828,10 +1642,21 @@ fn add_object_62(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15372); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 874), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 874), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_63(address_space: &mut AddressSpace) { @@ -839,10 +1664,21 @@ fn add_object_63(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15373); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 877), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 877), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_64(address_space: &mut AddressSpace) { @@ -850,10 +1686,21 @@ fn add_object_64(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15374); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 897), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 897), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_objecttype_65(address_space: &mut AddressSpace) { @@ -869,9 +1716,14 @@ fn add_objecttype_66(address_space: &mut AddressSpace) { let name = "FolderType"; let node_id = NodeId::new(0, 61); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 58), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 58), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_67(address_space: &mut AddressSpace) { @@ -879,9 +1731,14 @@ fn add_objecttype_67(address_space: &mut AddressSpace) { let name = "DataTypeSystemType"; let node_id = NodeId::new(0, 75); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 58), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 58), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_68(address_space: &mut AddressSpace) { @@ -889,9 +1746,14 @@ fn add_objecttype_68(address_space: &mut AddressSpace) { let name = "DataTypeEncodingType"; let node_id = NodeId::new(0, 76); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 58), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 58), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_69(address_space: &mut AddressSpace) { @@ -899,10 +1761,21 @@ fn add_objecttype_69(address_space: &mut AddressSpace) { let name = "ModellingRuleType"; let node_id = NodeId::new(0, 77); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 111), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 111), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_70(address_space: &mut AddressSpace) { @@ -910,26 +1783,101 @@ fn add_objecttype_70(address_space: &mut AddressSpace) { let name = "ServerType"; let node_id = NodeId::new(0, 2004); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2005), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2006), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15003), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2007), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2008), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2742), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 12882), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17612), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2009), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2010), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2011), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2012), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 11527), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 11489), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12871), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12746), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12883), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2005), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2006), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15003), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2007), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2008), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2742), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12882), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17612), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2009), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2010), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2011), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2012), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11527), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11489), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12871), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12746), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12883), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_71(address_space: &mut AddressSpace) { @@ -937,24 +1885,91 @@ fn add_objecttype_71(address_space: &mut AddressSpace) { let name = "ServerCapabilitiesType"; let node_id = NodeId::new(0, 2013); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2014), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2016), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2017), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2732), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2733), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2734), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 3049), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11549), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11550), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 12910), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11551), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2019), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2754), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 11562), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16295), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2014), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2016), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2017), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2732), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2733), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2734), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3049), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11549), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11550), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12910), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11551), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2019), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2754), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11562), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16295), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_72(address_space: &mut AddressSpace) { @@ -962,14 +1977,41 @@ fn add_objecttype_72(address_space: &mut AddressSpace) { let name = "ServerDiagnosticsType"; let node_id = NodeId::new(0, 2020); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2021), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2022), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2023), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2744), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2025), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2021), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2022), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2023), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2744), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2025), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_73(address_space: &mut AddressSpace) { @@ -977,12 +2019,31 @@ fn add_objecttype_73(address_space: &mut AddressSpace) { let name = "SessionsDiagnosticsSummaryType"; let node_id = NodeId::new(0, 2026); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2027), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2028), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12097), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2027), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2028), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12097), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_74(address_space: &mut AddressSpace) { @@ -990,12 +2051,31 @@ fn add_objecttype_74(address_space: &mut AddressSpace) { let name = "SessionDiagnosticsObjectType"; let node_id = NodeId::new(0, 2029); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2030), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2031), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2032), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2030), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2031), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2032), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_75(address_space: &mut AddressSpace) { @@ -1003,9 +2083,14 @@ fn add_objecttype_75(address_space: &mut AddressSpace) { let name = "VendorServerInfoType"; let node_id = NodeId::new(0, 2033); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 58), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 58), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_76(address_space: &mut AddressSpace) { @@ -1013,10 +2098,21 @@ fn add_objecttype_76(address_space: &mut AddressSpace) { let name = "ServerRedundancyType"; let node_id = NodeId::new(0, 2034); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2035), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2035), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_77(address_space: &mut AddressSpace) { @@ -1024,11 +2120,26 @@ fn add_objecttype_77(address_space: &mut AddressSpace) { let name = "TransparentRedundancyType"; let node_id = NodeId::new(0, 2036); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2037), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2038), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2034), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2037), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2038), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2034), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_78(address_space: &mut AddressSpace) { @@ -1036,10 +2147,21 @@ fn add_objecttype_78(address_space: &mut AddressSpace) { let name = "NonTransparentRedundancyType"; let node_id = NodeId::new(0, 2039); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2040), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2034), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2040), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2034), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_79(address_space: &mut AddressSpace) { @@ -1047,10 +2169,21 @@ fn add_objecttype_79(address_space: &mut AddressSpace) { let name = "NonTransparentNetworkRedundancyType"; let node_id = NodeId::new(0, 11945); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11948), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2039), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11948), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2039), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_80(address_space: &mut AddressSpace) { @@ -1058,21 +2191,76 @@ fn add_objecttype_80(address_space: &mut AddressSpace) { let name = "OperationLimitsType"; let node_id = NodeId::new(0, 11564); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11565), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 12161), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 12162), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11567), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 12163), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 12164), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11569), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11570), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11571), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11572), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11573), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11574), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 61), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11565), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12161), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12162), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11567), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12163), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12164), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11569), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11570), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11571), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11572), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11573), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11574), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 61), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_81(address_space: &mut AddressSpace) { @@ -1080,20 +2268,71 @@ fn add_objecttype_81(address_space: &mut AddressSpace) { let name = "FileType"; let node_id = NodeId::new(0, 11575); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11576), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 12686), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 12687), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11579), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13341), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11580), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 11583), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 11585), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 11588), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 11590), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 11593), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11576), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12686), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12687), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11579), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13341), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11580), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11583), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11585), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11588), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11590), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11593), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_82(address_space: &mut AddressSpace) { @@ -1101,10 +2340,21 @@ fn add_objecttype_82(address_space: &mut AddressSpace) { let name = "AddressSpaceFileType"; let node_id = NodeId::new(0, 11595); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11615), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 11575), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11615), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11575), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_83(address_space: &mut AddressSpace) { @@ -1112,20 +2362,71 @@ fn add_objecttype_83(address_space: &mut AddressSpace) { let name = "NamespaceMetadataType"; let node_id = NodeId::new(0, 11616); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11617), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11618), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11619), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11620), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11621), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11622), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11623), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11624), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16137), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16138), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16139), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11617), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11618), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11619), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11620), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11621), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11622), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11623), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11624), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16137), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16138), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16139), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_84(address_space: &mut AddressSpace) { @@ -1133,10 +2434,21 @@ fn add_objecttype_84(address_space: &mut AddressSpace) { let name = "NamespacesType"; let node_id = NodeId::new(0, 11645); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11646), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11646), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_85(address_space: &mut AddressSpace) { @@ -1144,18 +2456,61 @@ fn add_objecttype_85(address_space: &mut AddressSpace) { let name = "BaseEventType"; let node_id = NodeId::new(0, 2041); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2042), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2043), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2044), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2045), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2046), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2047), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 3190), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2050), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2051), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2042), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2043), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2044), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2045), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2046), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2047), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3190), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2050), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2051), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_86(address_space: &mut AddressSpace) { @@ -1163,14 +2518,41 @@ fn add_objecttype_86(address_space: &mut AddressSpace) { let name = "AuditEventType"; let node_id = NodeId::new(0, 2052); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2053), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2054), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2055), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2056), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2057), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2041), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2053), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2054), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2055), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2056), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2057), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2041), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_87(address_space: &mut AddressSpace) { @@ -1178,10 +2560,21 @@ fn add_objecttype_87(address_space: &mut AddressSpace) { let name = "AuditSecurityEventType"; let node_id = NodeId::new(0, 2058); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17615), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2052), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17615), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2052), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_88(address_space: &mut AddressSpace) { @@ -1189,10 +2582,21 @@ fn add_objecttype_88(address_space: &mut AddressSpace) { let name = "AuditChannelEventType"; let node_id = NodeId::new(0, 2059); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2745), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2058), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2745), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2058), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_89(address_space: &mut AddressSpace) { @@ -1200,15 +2604,46 @@ fn add_objecttype_89(address_space: &mut AddressSpace) { let name = "AuditOpenSecureChannelEventType"; let node_id = NodeId::new(0, 2060); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2061), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2746), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2062), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2063), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2065), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2066), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2059), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2061), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2746), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2062), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2063), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2065), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2066), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2059), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_90(address_space: &mut AddressSpace) { @@ -1216,10 +2651,21 @@ fn add_objecttype_90(address_space: &mut AddressSpace) { let name = "AuditSessionEventType"; let node_id = NodeId::new(0, 2069); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2070), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2058), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2070), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2058), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_91(address_space: &mut AddressSpace) { @@ -1227,13 +2673,36 @@ fn add_objecttype_91(address_space: &mut AddressSpace) { let name = "AuditCreateSessionEventType"; let node_id = NodeId::new(0, 2071); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2072), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2073), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2747), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2074), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2069), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2072), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2073), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2747), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2074), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2069), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_92(address_space: &mut AddressSpace) { @@ -1241,10 +2710,21 @@ fn add_objecttype_92(address_space: &mut AddressSpace) { let name = "AuditUrlMismatchEventType"; let node_id = NodeId::new(0, 2748); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2749), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2071), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2749), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2071), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_93(address_space: &mut AddressSpace) { @@ -1252,12 +2732,31 @@ fn add_objecttype_93(address_space: &mut AddressSpace) { let name = "AuditActivateSessionEventType"; let node_id = NodeId::new(0, 2075); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2076), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2077), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11485), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2069), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2076), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2077), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11485), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2069), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_94(address_space: &mut AddressSpace) { @@ -1265,10 +2764,21 @@ fn add_objecttype_94(address_space: &mut AddressSpace) { let name = "AuditCancelEventType"; let node_id = NodeId::new(0, 2078); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2079), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2069), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2079), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2069), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_95(address_space: &mut AddressSpace) { @@ -1276,10 +2786,21 @@ fn add_objecttype_95(address_space: &mut AddressSpace) { let name = "AuditCertificateEventType"; let node_id = NodeId::new(0, 2080); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2081), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2058), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2081), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2058), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_96(address_space: &mut AddressSpace) { @@ -1287,11 +2808,26 @@ fn add_objecttype_96(address_space: &mut AddressSpace) { let name = "AuditCertificateDataMismatchEventType"; let node_id = NodeId::new(0, 2082); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2083), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2084), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2080), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2083), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2084), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2080), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_97(address_space: &mut AddressSpace) { @@ -1299,9 +2835,14 @@ fn add_objecttype_97(address_space: &mut AddressSpace) { let name = "AuditCertificateExpiredEventType"; let node_id = NodeId::new(0, 2085); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2080), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2080), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_98(address_space: &mut AddressSpace) { @@ -1309,9 +2850,14 @@ fn add_objecttype_98(address_space: &mut AddressSpace) { let name = "AuditCertificateInvalidEventType"; let node_id = NodeId::new(0, 2086); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2080), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2080), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_99(address_space: &mut AddressSpace) { @@ -1319,9 +2865,14 @@ fn add_objecttype_99(address_space: &mut AddressSpace) { let name = "AuditCertificateUntrustedEventType"; let node_id = NodeId::new(0, 2087); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2080), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2080), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_100(address_space: &mut AddressSpace) { @@ -1329,8 +2880,12 @@ fn add_objecttype_100(address_space: &mut AddressSpace) { let name = "AuditCertificateRevokedEventType"; let node_id = NodeId::new(0, 2088); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2080), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2080), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } - diff --git a/server/src/address_space/generated/nodeset_5_3.rs b/server/src/address_space/generated/nodeset_5_3.rs index d8705bf7d..c77a2d060 100644 --- a/server/src/address_space/generated/nodeset_5_3.rs +++ b/server/src/address_space/generated/nodeset_5_3.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.NodeSet2.Part5.xml by tools/schema/gen_address_space.js // DO NOT EDIT THIS FILE @@ -9,8 +9,11 @@ use std::{convert::TryFrom, str::FromStr}; #[allow(unused_imports)] use crate::{ - address_space::{EventNotifier, types::*}, - prelude::{DataTypeId, ExtensionObject, LocalizedText, NodeId, ReferenceTypeId, service_types::Argument, UAString, Variant, VariantTypeId} + address_space::{types::*, EventNotifier}, + prelude::{ + service_types::Argument, DataTypeId, ExtensionObject, LocalizedText, NodeId, + ReferenceTypeId, UAString, Variant, VariantTypeId, + }, }; #[allow(unused_variables)] @@ -122,9 +125,14 @@ fn add_objecttype_1(address_space: &mut AddressSpace) { let name = "AuditCertificateMismatchEventType"; let node_id = NodeId::new(0, 2089); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2080), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2080), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_2(address_space: &mut AddressSpace) { @@ -132,9 +140,14 @@ fn add_objecttype_2(address_space: &mut AddressSpace) { let name = "AuditNodeManagementEventType"; let node_id = NodeId::new(0, 2090); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2052), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2052), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_3(address_space: &mut AddressSpace) { @@ -142,10 +155,21 @@ fn add_objecttype_3(address_space: &mut AddressSpace) { let name = "AuditAddNodesEventType"; let node_id = NodeId::new(0, 2091); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2092), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2090), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2092), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2090), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_4(address_space: &mut AddressSpace) { @@ -153,10 +177,21 @@ fn add_objecttype_4(address_space: &mut AddressSpace) { let name = "AuditDeleteNodesEventType"; let node_id = NodeId::new(0, 2093); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2094), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2090), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2094), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2090), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_5(address_space: &mut AddressSpace) { @@ -164,10 +199,21 @@ fn add_objecttype_5(address_space: &mut AddressSpace) { let name = "AuditAddReferencesEventType"; let node_id = NodeId::new(0, 2095); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2096), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2090), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2096), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2090), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_6(address_space: &mut AddressSpace) { @@ -175,10 +221,21 @@ fn add_objecttype_6(address_space: &mut AddressSpace) { let name = "AuditDeleteReferencesEventType"; let node_id = NodeId::new(0, 2097); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2098), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2090), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2098), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2090), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_7(address_space: &mut AddressSpace) { @@ -186,9 +243,14 @@ fn add_objecttype_7(address_space: &mut AddressSpace) { let name = "AuditUpdateEventType"; let node_id = NodeId::new(0, 2099); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2052), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2052), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_8(address_space: &mut AddressSpace) { @@ -196,13 +258,36 @@ fn add_objecttype_8(address_space: &mut AddressSpace) { let name = "AuditWriteUpdateEventType"; let node_id = NodeId::new(0, 2100); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2750), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2101), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2102), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2103), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2099), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2750), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2101), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2102), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2103), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2099), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_9(address_space: &mut AddressSpace) { @@ -210,10 +295,21 @@ fn add_objecttype_9(address_space: &mut AddressSpace) { let name = "AuditHistoryUpdateEventType"; let node_id = NodeId::new(0, 2104); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2751), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2099), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2751), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2099), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_10(address_space: &mut AddressSpace) { @@ -221,11 +317,26 @@ fn add_objecttype_10(address_space: &mut AddressSpace) { let name = "AuditUpdateMethodEventType"; let node_id = NodeId::new(0, 2127); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2128), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2129), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2052), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2128), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2129), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2052), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_11(address_space: &mut AddressSpace) { @@ -233,9 +344,14 @@ fn add_objecttype_11(address_space: &mut AddressSpace) { let name = "SystemEventType"; let node_id = NodeId::new(0, 2130); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2041), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2041), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_12(address_space: &mut AddressSpace) { @@ -243,9 +359,14 @@ fn add_objecttype_12(address_space: &mut AddressSpace) { let name = "DeviceFailureEventType"; let node_id = NodeId::new(0, 2131); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2130), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2130), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_13(address_space: &mut AddressSpace) { @@ -253,10 +374,21 @@ fn add_objecttype_13(address_space: &mut AddressSpace) { let name = "SystemStatusChangeEventType"; let node_id = NodeId::new(0, 11446); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11696), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2130), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11696), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2130), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_14(address_space: &mut AddressSpace) { @@ -264,9 +396,14 @@ fn add_objecttype_14(address_space: &mut AddressSpace) { let name = "BaseModelChangeEventType"; let node_id = NodeId::new(0, 2132); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2041), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2041), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_15(address_space: &mut AddressSpace) { @@ -274,10 +411,21 @@ fn add_objecttype_15(address_space: &mut AddressSpace) { let name = "GeneralModelChangeEventType"; let node_id = NodeId::new(0, 2133); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2134), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2132), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2134), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2132), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_16(address_space: &mut AddressSpace) { @@ -285,10 +433,21 @@ fn add_objecttype_16(address_space: &mut AddressSpace) { let name = "SemanticChangeEventType"; let node_id = NodeId::new(0, 2738); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2739), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2041), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2739), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2041), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_17(address_space: &mut AddressSpace) { @@ -296,9 +455,14 @@ fn add_objecttype_17(address_space: &mut AddressSpace) { let name = "EventQueueOverflowEventType"; let node_id = NodeId::new(0, 3035); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2041), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2041), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_18(address_space: &mut AddressSpace) { @@ -306,11 +470,26 @@ fn add_objecttype_18(address_space: &mut AddressSpace) { let name = "ProgressEventType"; let node_id = NodeId::new(0, 11436); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12502), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 12503), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2041), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12502), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12503), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2041), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_19(address_space: &mut AddressSpace) { @@ -318,9 +497,14 @@ fn add_objecttype_19(address_space: &mut AddressSpace) { let name = "AggregateFunctionType"; let node_id = NodeId::new(0, 2340); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 58), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 58), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_20(address_space: &mut AddressSpace) { @@ -328,11 +512,26 @@ fn add_objecttype_20(address_space: &mut AddressSpace) { let name = "StateMachineType"; let node_id = NodeId::new(0, 2299); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2769), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2770), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2769), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2770), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_21(address_space: &mut AddressSpace) { @@ -340,13 +539,36 @@ fn add_objecttype_21(address_space: &mut AddressSpace) { let name = "FiniteStateMachineType"; let node_id = NodeId::new(0, 2771); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2772), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2773), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17635), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17636), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2299), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2772), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2773), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17635), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17636), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2299), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_22(address_space: &mut AddressSpace) { @@ -354,10 +576,21 @@ fn add_objecttype_22(address_space: &mut AddressSpace) { let name = "StateType"; let node_id = NodeId::new(0, 2307); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2308), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2308), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_23(address_space: &mut AddressSpace) { @@ -365,9 +598,14 @@ fn add_objecttype_23(address_space: &mut AddressSpace) { let name = "InitialStateType"; let node_id = NodeId::new(0, 2309); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2307), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2307), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_24(address_space: &mut AddressSpace) { @@ -375,10 +613,21 @@ fn add_objecttype_24(address_space: &mut AddressSpace) { let name = "TransitionType"; let node_id = NodeId::new(0, 2310); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2312), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2312), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_25(address_space: &mut AddressSpace) { @@ -386,9 +635,14 @@ fn add_objecttype_25(address_space: &mut AddressSpace) { let name = "ChoiceStateType"; let node_id = NodeId::new(0, 15109); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2307), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2307), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_26(address_space: &mut AddressSpace) { @@ -396,12 +650,31 @@ fn add_objecttype_26(address_space: &mut AddressSpace) { let name = "TransitionEventType"; let node_id = NodeId::new(0, 2311); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2774), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2775), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2776), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2041), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2774), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2775), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2776), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2041), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_27(address_space: &mut AddressSpace) { @@ -409,11 +682,26 @@ fn add_objecttype_27(address_space: &mut AddressSpace) { let name = "AuditUpdateStateEventType"; let node_id = NodeId::new(0, 2315); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2777), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2778), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2127), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2777), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2778), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2127), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_28(address_space: &mut AddressSpace) { @@ -421,15 +709,46 @@ fn add_objecttype_28(address_space: &mut AddressSpace) { let name = "FileDirectoryType"; let node_id = NodeId::new(0, 13353); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13354), &ReferenceTypeId::Organizes, ReferenceDirection::Forward), - (&NodeId::new(0, 13366), &ReferenceTypeId::Organizes, ReferenceDirection::Forward), - (&NodeId::new(0, 13387), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 13390), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 13393), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 13395), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 61), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13354), + &ReferenceTypeId::Organizes, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13366), + &ReferenceTypeId::Organizes, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13387), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13390), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13393), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13395), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 61), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_29(address_space: &mut AddressSpace) { @@ -437,14 +756,41 @@ fn add_objecttype_29(address_space: &mut AddressSpace) { let name = "TemporaryFileTransferType"; let node_id = NodeId::new(0, 15744); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15745), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15746), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15749), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15751), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15754), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15745), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15746), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15749), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15751), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15754), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_30(address_space: &mut AddressSpace) { @@ -452,24 +798,91 @@ fn add_objecttype_30(address_space: &mut AddressSpace) { let name = "FileTransferStateMachineType"; let node_id = NodeId::new(0, 15803); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15815), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15817), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15819), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15821), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15823), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15825), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15827), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15829), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15831), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15833), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15835), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15837), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15839), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15841), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15843), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2771), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15815), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15817), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15819), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15821), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15823), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15825), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15827), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15829), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15831), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15833), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15835), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15837), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15839), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15841), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15843), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2771), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_31(address_space: &mut AddressSpace) { @@ -477,12 +890,31 @@ fn add_objecttype_31(address_space: &mut AddressSpace) { let name = "RoleSetType"; let node_id = NodeId::new(0, 15607); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15608), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15997), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16000), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15608), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15997), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16000), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_32(address_space: &mut AddressSpace) { @@ -490,20 +922,71 @@ fn add_objecttype_32(address_space: &mut AddressSpace) { let name = "RoleType"; let node_id = NodeId::new(0, 15620); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16173), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16174), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15410), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16175), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15411), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15624), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 15626), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16176), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16178), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16180), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16182), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16173), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16174), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15410), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16175), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15411), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15624), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15626), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16176), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16178), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16180), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16182), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_33(address_space: &mut AddressSpace) { @@ -511,9 +994,14 @@ fn add_objecttype_33(address_space: &mut AddressSpace) { let name = "RoleMappingRuleChangedAuditEventType"; let node_id = NodeId::new(0, 17641); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2127), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2127), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_34(address_space: &mut AddressSpace) { @@ -521,10 +1009,21 @@ fn add_objecttype_34(address_space: &mut AddressSpace) { let name = "DictionaryEntryType"; let node_id = NodeId::new(0, 17589); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17590), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17590), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_35(address_space: &mut AddressSpace) { @@ -532,11 +1031,26 @@ fn add_objecttype_35(address_space: &mut AddressSpace) { let name = "DictionaryFolderType"; let node_id = NodeId::new(0, 17591); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17592), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17593), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 61), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17592), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17593), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 61), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_36(address_space: &mut AddressSpace) { @@ -544,9 +1058,14 @@ fn add_objecttype_36(address_space: &mut AddressSpace) { let name = "IrdiDictionaryEntryType"; let node_id = NodeId::new(0, 17598); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17589), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 17589), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_37(address_space: &mut AddressSpace) { @@ -554,9 +1073,14 @@ fn add_objecttype_37(address_space: &mut AddressSpace) { let name = "UriDictionaryEntryType"; let node_id = NodeId::new(0, 17600); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17589), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 17589), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_38(address_space: &mut AddressSpace) { @@ -564,9 +1088,14 @@ fn add_objecttype_38(address_space: &mut AddressSpace) { let name = "BaseInterfaceType"; let node_id = NodeId::new(0, 17602); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 58), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 58), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_39(address_space: &mut AddressSpace) { @@ -574,10 +1103,21 @@ fn add_objecttype_39(address_space: &mut AddressSpace) { let name = "IOrderedObjectType"; let node_id = NodeId::new(0, 23513); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 23517), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17602), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 23517), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17602), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_40(address_space: &mut AddressSpace) { @@ -585,10 +1125,21 @@ fn add_objecttype_40(address_space: &mut AddressSpace) { let name = "OrderedListType"; let node_id = NodeId::new(0, 23518); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 23525), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 23525), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_datatype_41(address_space: &mut AddressSpace) { @@ -596,9 +1147,14 @@ fn add_datatype_41(address_space: &mut AddressSpace) { let name = "BitFieldMaskDataType"; let node_id = NodeId::new(0, 11737); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 9), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 9), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_42(address_space: &mut AddressSpace) { @@ -606,9 +1162,14 @@ fn add_datatype_42(address_space: &mut AddressSpace) { let name = "KeyValuePair"; let node_id = NodeId::new(0, 14533); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_43(address_space: &mut AddressSpace) { @@ -616,9 +1177,14 @@ fn add_datatype_43(address_space: &mut AddressSpace) { let name = "AdditionalParametersType"; let node_id = NodeId::new(0, 16313); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_44(address_space: &mut AddressSpace) { @@ -626,9 +1192,14 @@ fn add_datatype_44(address_space: &mut AddressSpace) { let name = "EphemeralKeyType"; let node_id = NodeId::new(0, 17548); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_45(address_space: &mut AddressSpace) { @@ -636,9 +1207,14 @@ fn add_datatype_45(address_space: &mut AddressSpace) { let name = "EndpointType"; let node_id = NodeId::new(0, 15528); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_46(address_space: &mut AddressSpace) { @@ -646,9 +1222,14 @@ fn add_datatype_46(address_space: &mut AddressSpace) { let name = "RationalNumber"; let node_id = NodeId::new(0, 18806); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_47(address_space: &mut AddressSpace) { @@ -656,9 +1237,14 @@ fn add_datatype_47(address_space: &mut AddressSpace) { let name = "Vector"; let node_id = NodeId::new(0, 18807); let node = DataType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_48(address_space: &mut AddressSpace) { @@ -666,9 +1252,14 @@ fn add_datatype_48(address_space: &mut AddressSpace) { let name = "3DVector"; let node_id = NodeId::new(0, 18808); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18807), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 18807), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_49(address_space: &mut AddressSpace) { @@ -676,9 +1267,14 @@ fn add_datatype_49(address_space: &mut AddressSpace) { let name = "CartesianCoordinates"; let node_id = NodeId::new(0, 18809); let node = DataType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_50(address_space: &mut AddressSpace) { @@ -686,9 +1282,14 @@ fn add_datatype_50(address_space: &mut AddressSpace) { let name = "3DCartesianCoordinates"; let node_id = NodeId::new(0, 18810); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18809), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 18809), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_51(address_space: &mut AddressSpace) { @@ -696,9 +1297,14 @@ fn add_datatype_51(address_space: &mut AddressSpace) { let name = "Orientation"; let node_id = NodeId::new(0, 18811); let node = DataType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_52(address_space: &mut AddressSpace) { @@ -706,9 +1312,14 @@ fn add_datatype_52(address_space: &mut AddressSpace) { let name = "3DOrientation"; let node_id = NodeId::new(0, 18812); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18811), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 18811), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_53(address_space: &mut AddressSpace) { @@ -716,9 +1327,14 @@ fn add_datatype_53(address_space: &mut AddressSpace) { let name = "Frame"; let node_id = NodeId::new(0, 18813); let node = DataType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_54(address_space: &mut AddressSpace) { @@ -726,9 +1342,14 @@ fn add_datatype_54(address_space: &mut AddressSpace) { let name = "3DFrame"; let node_id = NodeId::new(0, 18814); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18813), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 18813), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_55(address_space: &mut AddressSpace) { @@ -736,10 +1357,21 @@ fn add_datatype_55(address_space: &mut AddressSpace) { let name = "OpenFileMode"; let node_id = NodeId::new(0, 11939); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11940), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 29), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11940), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 29), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_datatype_56(address_space: &mut AddressSpace) { @@ -747,10 +1379,21 @@ fn add_datatype_56(address_space: &mut AddressSpace) { let name = "IdentityCriteriaType"; let node_id = NodeId::new(0, 15632); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 15633), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 29), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 15633), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 29), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_datatype_57(address_space: &mut AddressSpace) { @@ -758,9 +1401,14 @@ fn add_datatype_57(address_space: &mut AddressSpace) { let name = "IdentityMappingRuleType"; let node_id = NodeId::new(0, 15634); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_58(address_space: &mut AddressSpace) { @@ -768,9 +1416,14 @@ fn add_datatype_58(address_space: &mut AddressSpace) { let name = "CurrencyUnitType"; let node_id = NodeId::new(0, 23498); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_59(address_space: &mut AddressSpace) { @@ -778,9 +1431,14 @@ fn add_datatype_59(address_space: &mut AddressSpace) { let name = "BuildInfo"; let node_id = NodeId::new(0, 338); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_60(address_space: &mut AddressSpace) { @@ -788,10 +1446,21 @@ fn add_datatype_60(address_space: &mut AddressSpace) { let name = "RedundancySupport"; let node_id = NodeId::new(0, 851); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 7611), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 29), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 7611), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 29), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_datatype_61(address_space: &mut AddressSpace) { @@ -799,10 +1468,21 @@ fn add_datatype_61(address_space: &mut AddressSpace) { let name = "ServerState"; let node_id = NodeId::new(0, 852); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 7612), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 29), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 7612), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 29), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_datatype_62(address_space: &mut AddressSpace) { @@ -810,9 +1490,14 @@ fn add_datatype_62(address_space: &mut AddressSpace) { let name = "RedundantServerDataType"; let node_id = NodeId::new(0, 853); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_63(address_space: &mut AddressSpace) { @@ -820,9 +1505,14 @@ fn add_datatype_63(address_space: &mut AddressSpace) { let name = "EndpointUrlListDataType"; let node_id = NodeId::new(0, 11943); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_64(address_space: &mut AddressSpace) { @@ -830,9 +1520,14 @@ fn add_datatype_64(address_space: &mut AddressSpace) { let name = "NetworkGroupDataType"; let node_id = NodeId::new(0, 11944); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_65(address_space: &mut AddressSpace) { @@ -840,9 +1535,14 @@ fn add_datatype_65(address_space: &mut AddressSpace) { let name = "SamplingIntervalDiagnosticsDataType"; let node_id = NodeId::new(0, 856); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_66(address_space: &mut AddressSpace) { @@ -850,9 +1550,14 @@ fn add_datatype_66(address_space: &mut AddressSpace) { let name = "ServerDiagnosticsSummaryDataType"; let node_id = NodeId::new(0, 859); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_67(address_space: &mut AddressSpace) { @@ -860,9 +1565,14 @@ fn add_datatype_67(address_space: &mut AddressSpace) { let name = "ServerStatusDataType"; let node_id = NodeId::new(0, 862); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_68(address_space: &mut AddressSpace) { @@ -870,9 +1580,14 @@ fn add_datatype_68(address_space: &mut AddressSpace) { let name = "SessionDiagnosticsDataType"; let node_id = NodeId::new(0, 865); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_69(address_space: &mut AddressSpace) { @@ -880,9 +1595,14 @@ fn add_datatype_69(address_space: &mut AddressSpace) { let name = "SessionSecurityDiagnosticsDataType"; let node_id = NodeId::new(0, 868); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_70(address_space: &mut AddressSpace) { @@ -890,9 +1610,14 @@ fn add_datatype_70(address_space: &mut AddressSpace) { let name = "ServiceCounterDataType"; let node_id = NodeId::new(0, 871); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_71(address_space: &mut AddressSpace) { @@ -900,9 +1625,14 @@ fn add_datatype_71(address_space: &mut AddressSpace) { let name = "StatusResult"; let node_id = NodeId::new(0, 299); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_72(address_space: &mut AddressSpace) { @@ -910,9 +1640,14 @@ fn add_datatype_72(address_space: &mut AddressSpace) { let name = "SubscriptionDiagnosticsDataType"; let node_id = NodeId::new(0, 874); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_73(address_space: &mut AddressSpace) { @@ -920,10 +1655,21 @@ fn add_datatype_73(address_space: &mut AddressSpace) { let name = "ModelChangeStructureVerbMask"; let node_id = NodeId::new(0, 11941); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11942), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 29), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11942), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 29), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_datatype_74(address_space: &mut AddressSpace) { @@ -931,9 +1677,14 @@ fn add_datatype_74(address_space: &mut AddressSpace) { let name = "ModelChangeStructureDataType"; let node_id = NodeId::new(0, 877); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_75(address_space: &mut AddressSpace) { @@ -941,99 +1692,212 @@ fn add_datatype_75(address_space: &mut AddressSpace) { let name = "SemanticChangeStructureDataType"; let node_id = NodeId::new(0, 897); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_referencetype_76(address_space: &mut AddressSpace) { // ReferenceType let name = "FromState"; let node_id = NodeId::new(0, 51); - let node = ReferenceType::new(&node_id, name, name, Some(LocalizedText::new("", "ToTransition")), false, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 32), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let node = ReferenceType::new( + &node_id, + name, + name, + Some(LocalizedText::new("", "ToTransition")), + false, + false, + ); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 32), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_referencetype_77(address_space: &mut AddressSpace) { // ReferenceType let name = "ToState"; let node_id = NodeId::new(0, 52); - let node = ReferenceType::new(&node_id, name, name, Some(LocalizedText::new("", "FromTransition")), false, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 32), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let node = ReferenceType::new( + &node_id, + name, + name, + Some(LocalizedText::new("", "FromTransition")), + false, + false, + ); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 32), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_referencetype_78(address_space: &mut AddressSpace) { // ReferenceType let name = "HasCause"; let node_id = NodeId::new(0, 53); - let node = ReferenceType::new(&node_id, name, name, Some(LocalizedText::new("", "MayBeCausedBy")), false, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 32), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let node = ReferenceType::new( + &node_id, + name, + name, + Some(LocalizedText::new("", "MayBeCausedBy")), + false, + false, + ); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 32), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_referencetype_79(address_space: &mut AddressSpace) { // ReferenceType let name = "HasEffect"; let node_id = NodeId::new(0, 54); - let node = ReferenceType::new(&node_id, name, name, Some(LocalizedText::new("", "MayBeEffectedBy")), false, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 32), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let node = ReferenceType::new( + &node_id, + name, + name, + Some(LocalizedText::new("", "MayBeEffectedBy")), + false, + false, + ); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 32), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_referencetype_80(address_space: &mut AddressSpace) { // ReferenceType let name = "HasSubStateMachine"; let node_id = NodeId::new(0, 117); - let node = ReferenceType::new(&node_id, name, name, Some(LocalizedText::new("", "SubStateMachineOf")), false, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 32), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let node = ReferenceType::new( + &node_id, + name, + name, + Some(LocalizedText::new("", "SubStateMachineOf")), + false, + false, + ); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 32), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_referencetype_81(address_space: &mut AddressSpace) { // ReferenceType let name = "HasGuard"; let node_id = NodeId::new(0, 15112); - let node = ReferenceType::new(&node_id, name, name, Some(LocalizedText::new("", "GuardOf")), false, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 47), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let node = ReferenceType::new( + &node_id, + name, + name, + Some(LocalizedText::new("", "GuardOf")), + false, + false, + ); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 47), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_referencetype_82(address_space: &mut AddressSpace) { // ReferenceType let name = "HasDictionaryEntry"; let node_id = NodeId::new(0, 17597); - let node = ReferenceType::new(&node_id, name, name, Some(LocalizedText::new("", "DictionaryEntryOf")), false, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 32), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let node = ReferenceType::new( + &node_id, + name, + name, + Some(LocalizedText::new("", "DictionaryEntryOf")), + false, + false, + ); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 32), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_referencetype_83(address_space: &mut AddressSpace) { // ReferenceType let name = "HasInterface"; let node_id = NodeId::new(0, 17603); - let node = ReferenceType::new(&node_id, name, name, Some(LocalizedText::new("", "InterfaceOf")), false, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 32), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let node = ReferenceType::new( + &node_id, + name, + name, + Some(LocalizedText::new("", "InterfaceOf")), + false, + false, + ); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 32), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_referencetype_84(address_space: &mut AddressSpace) { // ReferenceType let name = "HasAddIn"; let node_id = NodeId::new(0, 17604); - let node = ReferenceType::new(&node_id, name, name, Some(LocalizedText::new("", "AddInOf")), false, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 47), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let node = ReferenceType::new( + &node_id, + name, + name, + Some(LocalizedText::new("", "AddInOf")), + false, + false, + ); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 47), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_variable_85(address_space: &mut AddressSpace) { @@ -1041,12 +1905,28 @@ fn add_variable_85(address_space: &mut AddressSpace) { let name = "DataTypeVersion"; let value = Variant::Empty; let node_id = NodeId::new(0, 104); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 69), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_86(address_space: &mut AddressSpace) { @@ -1054,12 +1934,28 @@ fn add_variable_86(address_space: &mut AddressSpace) { let name = "DictionaryFragment"; let value = Variant::Empty; let node_id = NodeId::new(0, 105); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 69), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 69), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_87(address_space: &mut AddressSpace) { @@ -1067,12 +1963,28 @@ fn add_variable_87(address_space: &mut AddressSpace) { let name = "DataTypeVersion"; let value = Variant::Empty; let node_id = NodeId::new(0, 106); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 72), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 72), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_88(address_space: &mut AddressSpace) { @@ -1080,12 +1992,28 @@ fn add_variable_88(address_space: &mut AddressSpace) { let name = "NamespaceUri"; let value = Variant::Empty; let node_id = NodeId::new(0, 107); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 72), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 72), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_89(address_space: &mut AddressSpace) { @@ -1094,11 +2022,26 @@ fn add_variable_89(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 15001); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 72), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 72), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_90(address_space: &mut AddressSpace) { @@ -1106,12 +2049,28 @@ fn add_variable_90(address_space: &mut AddressSpace) { let name = "NamingRule"; let value = Variant::Empty; let node_id = NodeId::new(0, 111); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 120), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 77), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 120), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 77), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_91(address_space: &mut AddressSpace) { @@ -1119,11 +2078,23 @@ fn add_variable_91(address_space: &mut AddressSpace) { let name = "NamingRule"; let value = Variant::Empty; let node_id = NodeId::new(0, 112); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 120), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 120), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_92(address_space: &mut AddressSpace) { @@ -1131,11 +2102,23 @@ fn add_variable_92(address_space: &mut AddressSpace) { let name = "NamingRule"; let value = Variant::Empty; let node_id = NodeId::new(0, 113); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 120), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 120), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_93(address_space: &mut AddressSpace) { @@ -1143,11 +2126,23 @@ fn add_variable_93(address_space: &mut AddressSpace) { let name = "NamingRule"; let value = Variant::Empty; let node_id = NodeId::new(0, 114); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 120), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 83), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 120), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 83), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_94(address_space: &mut AddressSpace) { @@ -1155,11 +2150,23 @@ fn add_variable_94(address_space: &mut AddressSpace) { let name = "NamingRule"; let value = Variant::Empty; let node_id = NodeId::new(0, 11509); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 120), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11508), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 120), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11508), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_95(address_space: &mut AddressSpace) { @@ -1167,11 +2174,23 @@ fn add_variable_95(address_space: &mut AddressSpace) { let name = "NamingRule"; let value = Variant::Empty; let node_id = NodeId::new(0, 11511); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 120), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11510), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 120), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11510), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_96(address_space: &mut AddressSpace) { @@ -1179,11 +2198,23 @@ fn add_variable_96(address_space: &mut AddressSpace) { let name = "NamespaceUri"; let value = Variant::Empty; let node_id = NodeId::new(0, 15958); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15957), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15957), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_97(address_space: &mut AddressSpace) { @@ -1191,11 +2222,23 @@ fn add_variable_97(address_space: &mut AddressSpace) { let name = "NamespaceVersion"; let value = Variant::Empty; let node_id = NodeId::new(0, 15959); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15957), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15957), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_98(address_space: &mut AddressSpace) { @@ -1203,11 +2246,23 @@ fn add_variable_98(address_space: &mut AddressSpace) { let name = "NamespacePublicationDate"; let value = Variant::Empty; let node_id = NodeId::new(0, 15960); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 13), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15957), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 13), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15957), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_99(address_space: &mut AddressSpace) { @@ -1216,10 +2271,21 @@ fn add_variable_99(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 15961); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15957), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15957), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_100(address_space: &mut AddressSpace) { @@ -1227,10 +2293,28 @@ fn add_variable_100(address_space: &mut AddressSpace) { let name = "StaticNodeIdTypes"; let value = Variant::Empty; let node_id = NodeId::new(0, 15962); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 256), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15957), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 256), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15957), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } - diff --git a/server/src/address_space/generated/nodeset_5_4.rs b/server/src/address_space/generated/nodeset_5_4.rs index 896a3ddf9..2f67b0fcf 100644 --- a/server/src/address_space/generated/nodeset_5_4.rs +++ b/server/src/address_space/generated/nodeset_5_4.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.NodeSet2.Part5.xml by tools/schema/gen_address_space.js // DO NOT EDIT THIS FILE @@ -9,8 +9,11 @@ use std::{convert::TryFrom, str::FromStr}; #[allow(unused_imports)] use crate::{ - address_space::{EventNotifier, types::*}, - prelude::{DataTypeId, ExtensionObject, LocalizedText, NodeId, ReferenceTypeId, service_types::Argument, UAString, Variant, VariantTypeId} + address_space::{types::*, EventNotifier}, + prelude::{ + service_types::Argument, DataTypeId, ExtensionObject, LocalizedText, NodeId, + ReferenceTypeId, UAString, Variant, VariantTypeId, + }, }; #[allow(unused_variables)] @@ -122,11 +125,30 @@ fn add_variable_1(address_space: &mut AddressSpace) { let name = "StaticNumericNodeIdRange"; let value = Variant::Empty; let node_id = NodeId::new(0, 15963); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 291), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15957), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 291), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15957), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_2(address_space: &mut AddressSpace) { @@ -134,11 +156,23 @@ fn add_variable_2(address_space: &mut AddressSpace) { let name = "StaticStringNodeIdPattern"; let value = Variant::Empty; let node_id = NodeId::new(0, 15964); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15957), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15957), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_3(address_space: &mut AddressSpace) { @@ -146,11 +180,30 @@ fn add_variable_3(address_space: &mut AddressSpace) { let name = "DefaultRolePermissions"; let value = Variant::Empty; let node_id = NodeId::new(0, 16134); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 96), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15957), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 96), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15957), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_4(address_space: &mut AddressSpace) { @@ -158,11 +211,30 @@ fn add_variable_4(address_space: &mut AddressSpace) { let name = "DefaultUserRolePermissions"; let value = Variant::Empty; let node_id = NodeId::new(0, 16135); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 96), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15957), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 96), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15957), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_5(address_space: &mut AddressSpace) { @@ -170,11 +242,23 @@ fn add_variable_5(address_space: &mut AddressSpace) { let name = "DefaultAccessRestrictions"; let value = Variant::Empty; let node_id = NodeId::new(0, 16136); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 95), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 15957), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 95), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15957), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_6(address_space: &mut AddressSpace) { @@ -182,12 +266,35 @@ fn add_variable_6(address_space: &mut AddressSpace) { let name = "ServerArray"; let value = Variant::Empty; let node_id = NodeId::new(0, 2005); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2004), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 12), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2004), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_7(address_space: &mut AddressSpace) { @@ -195,12 +302,35 @@ fn add_variable_7(address_space: &mut AddressSpace) { let name = "NamespaceArray"; let value = Variant::Empty; let node_id = NodeId::new(0, 2006); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2004), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 12), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2004), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_8(address_space: &mut AddressSpace) { @@ -208,12 +338,35 @@ fn add_variable_8(address_space: &mut AddressSpace) { let name = "UrisVersion"; let value = Variant::Empty; let node_id = NodeId::new(0, 15003); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 20998), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2004), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 20998), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2004), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_9(address_space: &mut AddressSpace) { @@ -221,18 +374,58 @@ fn add_variable_9(address_space: &mut AddressSpace) { let name = "ServerStatus"; let value = Variant::Empty; let node_id = NodeId::new(0, 2007); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 862), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 3074), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3075), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3076), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3077), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3084), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3085), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2138), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2004), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 862), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 3074), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3075), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3076), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3077), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3084), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3085), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2138), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2004), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_10(address_space: &mut AddressSpace) { @@ -240,12 +433,28 @@ fn add_variable_10(address_space: &mut AddressSpace) { let name = "StartTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 3074); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2007), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2007), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_11(address_space: &mut AddressSpace) { @@ -253,12 +462,28 @@ fn add_variable_11(address_space: &mut AddressSpace) { let name = "CurrentTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 3075); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2007), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2007), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_12(address_space: &mut AddressSpace) { @@ -266,12 +491,28 @@ fn add_variable_12(address_space: &mut AddressSpace) { let name = "State"; let value = Variant::Empty; let node_id = NodeId::new(0, 3076); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 852), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2007), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 852), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2007), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_13(address_space: &mut AddressSpace) { @@ -279,18 +520,58 @@ fn add_variable_13(address_space: &mut AddressSpace) { let name = "BuildInfo"; let value = Variant::Empty; let node_id = NodeId::new(0, 3077); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 338), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 3078), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3079), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3080), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3081), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3082), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3083), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3051), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2007), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 338), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 3078), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3079), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3080), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3081), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3082), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3083), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3051), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2007), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_14(address_space: &mut AddressSpace) { @@ -298,12 +579,28 @@ fn add_variable_14(address_space: &mut AddressSpace) { let name = "ProductUri"; let value = Variant::Empty; let node_id = NodeId::new(0, 3078); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 3077), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3077), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_15(address_space: &mut AddressSpace) { @@ -311,12 +608,28 @@ fn add_variable_15(address_space: &mut AddressSpace) { let name = "ManufacturerName"; let value = Variant::Empty; let node_id = NodeId::new(0, 3079); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 3077), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3077), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_16(address_space: &mut AddressSpace) { @@ -324,12 +637,28 @@ fn add_variable_16(address_space: &mut AddressSpace) { let name = "ProductName"; let value = Variant::Empty; let node_id = NodeId::new(0, 3080); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 3077), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3077), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_17(address_space: &mut AddressSpace) { @@ -337,12 +666,28 @@ fn add_variable_17(address_space: &mut AddressSpace) { let name = "SoftwareVersion"; let value = Variant::Empty; let node_id = NodeId::new(0, 3081); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 3077), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3077), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_18(address_space: &mut AddressSpace) { @@ -350,12 +695,28 @@ fn add_variable_18(address_space: &mut AddressSpace) { let name = "BuildNumber"; let value = Variant::Empty; let node_id = NodeId::new(0, 3082); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 3077), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3077), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_19(address_space: &mut AddressSpace) { @@ -363,12 +724,28 @@ fn add_variable_19(address_space: &mut AddressSpace) { let name = "BuildDate"; let value = Variant::Empty; let node_id = NodeId::new(0, 3083); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 3077), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3077), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_20(address_space: &mut AddressSpace) { @@ -377,11 +754,26 @@ fn add_variable_20(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 3084); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2007), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2007), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_21(address_space: &mut AddressSpace) { @@ -389,12 +781,28 @@ fn add_variable_21(address_space: &mut AddressSpace) { let name = "ShutdownReason"; let value = Variant::Empty; let node_id = NodeId::new(0, 3085); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2007), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2007), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_22(address_space: &mut AddressSpace) { @@ -403,11 +811,26 @@ fn add_variable_22(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2008); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 3), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2004), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2004), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_23(address_space: &mut AddressSpace) { @@ -416,11 +839,26 @@ fn add_variable_23(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2742); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2004), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2004), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_24(address_space: &mut AddressSpace) { @@ -428,12 +866,28 @@ fn add_variable_24(address_space: &mut AddressSpace) { let name = "EstimatedReturnTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 12882); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 13), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2004), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 13), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2004), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_25(address_space: &mut AddressSpace) { @@ -441,12 +895,35 @@ fn add_variable_25(address_space: &mut AddressSpace) { let name = "LocalTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 17612); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 8912), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2004), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 8912), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2004), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_26(address_space: &mut AddressSpace) { @@ -454,12 +931,35 @@ fn add_variable_26(address_space: &mut AddressSpace) { let name = "ServerProfileArray"; let value = Variant::Empty; let node_id = NodeId::new(0, 3086); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2009), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 12), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2009), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_27(address_space: &mut AddressSpace) { @@ -467,12 +967,35 @@ fn add_variable_27(address_space: &mut AddressSpace) { let name = "LocaleIdArray"; let value = Variant::Empty; let node_id = NodeId::new(0, 3087); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 295), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2009), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 295), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2009), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_28(address_space: &mut AddressSpace) { @@ -480,12 +1003,28 @@ fn add_variable_28(address_space: &mut AddressSpace) { let name = "MinSupportedSampleRate"; let value = Variant::Empty; let node_id = NodeId::new(0, 3088); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2009), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2009), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_29(address_space: &mut AddressSpace) { @@ -494,11 +1033,26 @@ fn add_variable_29(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 3089); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2009), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2009), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_30(address_space: &mut AddressSpace) { @@ -507,11 +1061,26 @@ fn add_variable_30(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 3090); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2009), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2009), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_31(address_space: &mut AddressSpace) { @@ -520,11 +1089,26 @@ fn add_variable_31(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 3091); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2009), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2009), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_32(address_space: &mut AddressSpace) { @@ -532,12 +1116,35 @@ fn add_variable_32(address_space: &mut AddressSpace) { let name = "SoftwareCertificates"; let value = Variant::Empty; let node_id = NodeId::new(0, 3092); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 344), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2009), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 344), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2009), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_33(address_space: &mut AddressSpace) { @@ -545,24 +1152,88 @@ fn add_variable_33(address_space: &mut AddressSpace) { let name = "ServerDiagnosticsSummary"; let value = Variant::Empty; let node_id = NodeId::new(0, 3095); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 859), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 3096), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3097), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3098), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3099), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3100), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3101), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3102), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3104), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3105), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3106), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3107), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3108), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2150), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2010), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 859), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 3096), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3097), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3098), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3099), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3100), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3101), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3102), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3104), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3105), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3106), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3107), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3108), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2150), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2010), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_34(address_space: &mut AddressSpace) { @@ -571,11 +1242,26 @@ fn add_variable_34(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 3096); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 3095), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3095), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_35(address_space: &mut AddressSpace) { @@ -584,11 +1270,26 @@ fn add_variable_35(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 3097); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 3095), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3095), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_36(address_space: &mut AddressSpace) { @@ -597,11 +1298,26 @@ fn add_variable_36(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 3098); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 3095), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3095), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_37(address_space: &mut AddressSpace) { @@ -610,11 +1326,26 @@ fn add_variable_37(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 3099); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 3095), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3095), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_38(address_space: &mut AddressSpace) { @@ -623,11 +1354,26 @@ fn add_variable_38(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 3100); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 3095), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3095), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_39(address_space: &mut AddressSpace) { @@ -636,11 +1382,26 @@ fn add_variable_39(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 3101); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 3095), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3095), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_40(address_space: &mut AddressSpace) { @@ -649,11 +1410,26 @@ fn add_variable_40(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 3102); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 3095), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3095), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_41(address_space: &mut AddressSpace) { @@ -662,11 +1438,26 @@ fn add_variable_41(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 3104); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 3095), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3095), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_42(address_space: &mut AddressSpace) { @@ -675,11 +1466,26 @@ fn add_variable_42(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 3105); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 3095), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3095), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_43(address_space: &mut AddressSpace) { @@ -688,11 +1494,26 @@ fn add_variable_43(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 3106); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 3095), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3095), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_44(address_space: &mut AddressSpace) { @@ -701,11 +1522,26 @@ fn add_variable_44(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 3107); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 3095), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3095), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_45(address_space: &mut AddressSpace) { @@ -714,11 +1550,26 @@ fn add_variable_45(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 3108); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 3095), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3095), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_46(address_space: &mut AddressSpace) { @@ -726,12 +1577,35 @@ fn add_variable_46(address_space: &mut AddressSpace) { let name = "SubscriptionDiagnosticsArray"; let value = Variant::Empty; let node_id = NodeId::new(0, 3110); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 874), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2171), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2010), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 874), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2171), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2010), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_47(address_space: &mut AddressSpace) { @@ -739,12 +1613,35 @@ fn add_variable_47(address_space: &mut AddressSpace) { let name = "SessionDiagnosticsArray"; let value = Variant::Empty; let node_id = NodeId::new(0, 3112); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 865), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2196), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 3111), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 865), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2196), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3111), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_48(address_space: &mut AddressSpace) { @@ -752,12 +1649,35 @@ fn add_variable_48(address_space: &mut AddressSpace) { let name = "SessionSecurityDiagnosticsArray"; let value = Variant::Empty; let node_id = NodeId::new(0, 3113); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 868), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2243), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 3111), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 868), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2243), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3111), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_49(address_space: &mut AddressSpace) { @@ -766,11 +1686,26 @@ fn add_variable_49(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 3114); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2010), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2010), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_50(address_space: &mut AddressSpace) { @@ -778,34 +1713,73 @@ fn add_variable_50(address_space: &mut AddressSpace) { let name = "RedundancySupport"; let value = Variant::Empty; let node_id = NodeId::new(0, 3115); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 851), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2012), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 851), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2012), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_51(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("SubscriptionId"), - data_type: NodeId::new(0, 7), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("SubscriptionId"), + data_type: NodeId::new(0, 7), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 11490); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11489), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11489), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_52(address_space: &mut AddressSpace) { @@ -813,51 +1787,101 @@ fn add_variable_52(address_space: &mut AddressSpace) { let name = "OutputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("ServerHandles"), data_type: NodeId::new(0, 7), value_rank: 1, array_dimensions: Some(vec![0]), description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("ClientHandles"), data_type: NodeId::new(0, 7), value_rank: 1, array_dimensions: Some(vec![0]), description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 11491); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11489), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11489), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_53(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("SubscriptionId"), - data_type: NodeId::new(0, 7), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("SubscriptionId"), + data_type: NodeId::new(0, 7), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 12872); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12871), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12871), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_54(address_space: &mut AddressSpace) { @@ -865,51 +1889,101 @@ fn add_variable_54(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("SubscriptionId"), data_type: NodeId::new(0, 7), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("LifetimeInHours"), data_type: NodeId::new(0, 7), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 12747); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12746), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12746), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_55(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("RevisedLifetimeInHours"), - data_type: NodeId::new(0, 7), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("RevisedLifetimeInHours"), + data_type: NodeId::new(0, 7), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 12748); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12746), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12746), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_56(address_space: &mut AddressSpace) { @@ -917,53 +1991,86 @@ fn add_variable_56(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("State"), data_type: NodeId::new(0, 852), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("EstimatedReturnTime"), data_type: NodeId::new(0, 13), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("SecondsTillShutdown"), data_type: NodeId::new(0, 7), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("Reason"), data_type: NodeId::new(0, 21), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("Restart"), data_type: NodeId::new(0, 1), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 12884); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12883), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12883), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_57(address_space: &mut AddressSpace) { @@ -971,12 +2078,35 @@ fn add_variable_57(address_space: &mut AddressSpace) { let name = "ServerProfileArray"; let value = Variant::Empty; let node_id = NodeId::new(0, 2014); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2013), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 12), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2013), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_58(address_space: &mut AddressSpace) { @@ -984,12 +2114,35 @@ fn add_variable_58(address_space: &mut AddressSpace) { let name = "LocaleIdArray"; let value = Variant::Empty; let node_id = NodeId::new(0, 2016); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 295), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2013), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 295), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2013), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_59(address_space: &mut AddressSpace) { @@ -997,12 +2150,28 @@ fn add_variable_59(address_space: &mut AddressSpace) { let name = "MinSupportedSampleRate"; let value = Variant::Empty; let node_id = NodeId::new(0, 2017); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2013), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2013), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_60(address_space: &mut AddressSpace) { @@ -1011,11 +2180,26 @@ fn add_variable_60(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2732); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2013), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2013), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_61(address_space: &mut AddressSpace) { @@ -1024,11 +2208,26 @@ fn add_variable_61(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2733); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2013), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2013), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_62(address_space: &mut AddressSpace) { @@ -1037,11 +2236,26 @@ fn add_variable_62(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2734); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2013), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2013), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_63(address_space: &mut AddressSpace) { @@ -1049,12 +2263,35 @@ fn add_variable_63(address_space: &mut AddressSpace) { let name = "SoftwareCertificates"; let value = Variant::Empty; let node_id = NodeId::new(0, 3049); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 344), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2013), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 344), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2013), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_64(address_space: &mut AddressSpace) { @@ -1063,11 +2300,26 @@ fn add_variable_64(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11549); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2013), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2013), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_65(address_space: &mut AddressSpace) { @@ -1076,11 +2328,26 @@ fn add_variable_65(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11550); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2013), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2013), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_66(address_space: &mut AddressSpace) { @@ -1089,11 +2356,26 @@ fn add_variable_66(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 12910); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2013), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2013), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_67(address_space: &mut AddressSpace) { @@ -1101,12 +2383,28 @@ fn add_variable_67(address_space: &mut AddressSpace) { let name = ""; let value = Variant::Empty; let node_id = NodeId::new(0, 11562); - let node = Variable::new_data_value(&node_id, name, name, DataTypeId::Boolean, None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2137), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11508), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2013), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, DataTypeId::Boolean, None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2137), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11508), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2013), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_68(address_space: &mut AddressSpace) { @@ -1114,73 +2412,146 @@ fn add_variable_68(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("RoleName"), data_type: NodeId::new(0, 12), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("NamespaceUri"), data_type: NodeId::new(0, 12), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 16297); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16296), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16296), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_69(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("RoleNodeId"), - data_type: NodeId::new(0, 17), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("RoleNodeId"), + data_type: NodeId::new(0, 17), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 16298); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16296), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16296), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_70(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("RoleNodeId"), - data_type: NodeId::new(0, 17), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("RoleNodeId"), + data_type: NodeId::new(0, 17), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 16300); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16299), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16299), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_71(address_space: &mut AddressSpace) { @@ -1188,24 +2559,88 @@ fn add_variable_71(address_space: &mut AddressSpace) { let name = "ServerDiagnosticsSummary"; let value = Variant::Empty; let node_id = NodeId::new(0, 2021); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 859), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 3116), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3117), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3118), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3119), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3120), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3121), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3122), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3124), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3125), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3126), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3127), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3128), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2150), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2020), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 859), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 3116), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3117), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3118), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3119), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3120), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3121), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3122), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3124), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3125), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3126), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3127), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3128), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2150), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2020), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_72(address_space: &mut AddressSpace) { @@ -1214,11 +2649,26 @@ fn add_variable_72(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 3116); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2021), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2021), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_73(address_space: &mut AddressSpace) { @@ -1227,11 +2677,26 @@ fn add_variable_73(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 3117); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2021), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2021), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_74(address_space: &mut AddressSpace) { @@ -1240,11 +2705,26 @@ fn add_variable_74(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 3118); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2021), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2021), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_75(address_space: &mut AddressSpace) { @@ -1253,11 +2733,26 @@ fn add_variable_75(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 3119); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2021), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2021), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_76(address_space: &mut AddressSpace) { @@ -1266,11 +2761,26 @@ fn add_variable_76(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 3120); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2021), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2021), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_77(address_space: &mut AddressSpace) { @@ -1279,11 +2789,26 @@ fn add_variable_77(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 3121); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2021), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2021), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_78(address_space: &mut AddressSpace) { @@ -1292,11 +2817,26 @@ fn add_variable_78(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 3122); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2021), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2021), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_79(address_space: &mut AddressSpace) { @@ -1305,11 +2845,26 @@ fn add_variable_79(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 3124); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2021), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2021), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_80(address_space: &mut AddressSpace) { @@ -1318,11 +2873,26 @@ fn add_variable_80(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 3125); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2021), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2021), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_81(address_space: &mut AddressSpace) { @@ -1331,11 +2901,26 @@ fn add_variable_81(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 3126); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2021), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2021), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_82(address_space: &mut AddressSpace) { @@ -1344,11 +2929,26 @@ fn add_variable_82(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 3127); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2021), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2021), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_83(address_space: &mut AddressSpace) { @@ -1357,11 +2957,26 @@ fn add_variable_83(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 3128); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2021), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2021), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_84(address_space: &mut AddressSpace) { @@ -1369,12 +2984,35 @@ fn add_variable_84(address_space: &mut AddressSpace) { let name = "SamplingIntervalDiagnosticsArray"; let value = Variant::Empty; let node_id = NodeId::new(0, 2022); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 856), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2164), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2020), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 856), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2164), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2020), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_85(address_space: &mut AddressSpace) { @@ -1382,12 +3020,35 @@ fn add_variable_85(address_space: &mut AddressSpace) { let name = "SubscriptionDiagnosticsArray"; let value = Variant::Empty; let node_id = NodeId::new(0, 2023); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 874), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2171), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2020), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 874), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2171), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2020), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_86(address_space: &mut AddressSpace) { @@ -1395,12 +3056,35 @@ fn add_variable_86(address_space: &mut AddressSpace) { let name = "SessionDiagnosticsArray"; let value = Variant::Empty; let node_id = NodeId::new(0, 3129); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 865), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2196), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2744), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 865), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2196), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2744), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_87(address_space: &mut AddressSpace) { @@ -1408,12 +3092,35 @@ fn add_variable_87(address_space: &mut AddressSpace) { let name = "SessionSecurityDiagnosticsArray"; let value = Variant::Empty; let node_id = NodeId::new(0, 3130); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 868), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2243), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2744), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 868), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2243), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2744), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_88(address_space: &mut AddressSpace) { @@ -1422,11 +3129,26 @@ fn add_variable_88(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2025); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2020), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2020), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_89(address_space: &mut AddressSpace) { @@ -1434,12 +3156,35 @@ fn add_variable_89(address_space: &mut AddressSpace) { let name = "SessionDiagnosticsArray"; let value = Variant::Empty; let node_id = NodeId::new(0, 2027); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 865), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2196), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2026), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 865), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2196), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2026), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_90(address_space: &mut AddressSpace) { @@ -1447,12 +3192,35 @@ fn add_variable_90(address_space: &mut AddressSpace) { let name = "SessionSecurityDiagnosticsArray"; let value = Variant::Empty; let node_id = NodeId::new(0, 2028); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 868), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2243), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2026), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 868), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2243), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2026), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_91(address_space: &mut AddressSpace) { @@ -1460,55 +3228,243 @@ fn add_variable_91(address_space: &mut AddressSpace) { let name = "SessionDiagnostics"; let value = Variant::Empty; let node_id = NodeId::new(0, 12098); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 865), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12099), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12100), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12101), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12102), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12103), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12104), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12105), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12106), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12107), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12108), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12109), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12110), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12111), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12112), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12113), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12114), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12115), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12116), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12117), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12118), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12119), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12120), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12121), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12122), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12123), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12124), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12125), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12126), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12127), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12128), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12129), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12130), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12131), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12132), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12133), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12134), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12135), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12136), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12137), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12138), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12139), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12140), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12141), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2197), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12097), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 865), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12099), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12100), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12101), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12102), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12103), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12104), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12105), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12106), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12107), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12108), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12109), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12110), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12111), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12112), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12113), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12114), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12115), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12116), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12117), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12118), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12119), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12120), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12121), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12122), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12123), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12124), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12125), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12126), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12127), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12128), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12129), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12130), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12131), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12132), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12133), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12134), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12135), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12136), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12137), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12138), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12139), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12140), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12141), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2197), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12097), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_92(address_space: &mut AddressSpace) { @@ -1516,12 +3472,28 @@ fn add_variable_92(address_space: &mut AddressSpace) { let name = "SessionId"; let value = Variant::Empty; let node_id = NodeId::new(0, 12099); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12098), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12098), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_93(address_space: &mut AddressSpace) { @@ -1529,12 +3501,28 @@ fn add_variable_93(address_space: &mut AddressSpace) { let name = "SessionName"; let value = Variant::Empty; let node_id = NodeId::new(0, 12100); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12098), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12098), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_94(address_space: &mut AddressSpace) { @@ -1542,12 +3530,28 @@ fn add_variable_94(address_space: &mut AddressSpace) { let name = "ClientDescription"; let value = Variant::Empty; let node_id = NodeId::new(0, 12101); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 308), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12098), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 308), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12098), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_95(address_space: &mut AddressSpace) { @@ -1555,12 +3559,28 @@ fn add_variable_95(address_space: &mut AddressSpace) { let name = "ServerUri"; let value = Variant::Empty; let node_id = NodeId::new(0, 12102); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12098), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12098), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_96(address_space: &mut AddressSpace) { @@ -1568,12 +3588,28 @@ fn add_variable_96(address_space: &mut AddressSpace) { let name = "EndpointUrl"; let value = Variant::Empty; let node_id = NodeId::new(0, 12103); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12098), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12098), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_97(address_space: &mut AddressSpace) { @@ -1581,12 +3617,35 @@ fn add_variable_97(address_space: &mut AddressSpace) { let name = "LocaleIds"; let value = Variant::Empty; let node_id = NodeId::new(0, 12104); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 295), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12098), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 295), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12098), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_98(address_space: &mut AddressSpace) { @@ -1594,12 +3653,28 @@ fn add_variable_98(address_space: &mut AddressSpace) { let name = "ActualSessionTimeout"; let value = Variant::Empty; let node_id = NodeId::new(0, 12105); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12098), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12098), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_99(address_space: &mut AddressSpace) { @@ -1608,11 +3683,26 @@ fn add_variable_99(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 12106); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12098), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12098), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_100(address_space: &mut AddressSpace) { @@ -1620,11 +3710,26 @@ fn add_variable_100(address_space: &mut AddressSpace) { let name = "ClientConnectionTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 12107); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12098), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12098), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } - diff --git a/server/src/address_space/generated/nodeset_5_5.rs b/server/src/address_space/generated/nodeset_5_5.rs index aac334689..c277608aa 100644 --- a/server/src/address_space/generated/nodeset_5_5.rs +++ b/server/src/address_space/generated/nodeset_5_5.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.NodeSet2.Part5.xml by tools/schema/gen_address_space.js // DO NOT EDIT THIS FILE @@ -9,8 +9,11 @@ use std::{convert::TryFrom, str::FromStr}; #[allow(unused_imports)] use crate::{ - address_space::{EventNotifier, types::*}, - prelude::{DataTypeId, ExtensionObject, LocalizedText, NodeId, ReferenceTypeId, service_types::Argument, UAString, Variant, VariantTypeId} + address_space::{types::*, EventNotifier}, + prelude::{ + service_types::Argument, DataTypeId, ExtensionObject, LocalizedText, NodeId, + ReferenceTypeId, UAString, Variant, VariantTypeId, + }, }; #[allow(unused_variables)] @@ -122,12 +125,28 @@ fn add_variable_1(address_space: &mut AddressSpace) { let name = "ClientLastContactTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 12108); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12098), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12098), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_2(address_space: &mut AddressSpace) { @@ -136,11 +155,26 @@ fn add_variable_2(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 12109); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12098), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12098), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_3(address_space: &mut AddressSpace) { @@ -149,11 +183,26 @@ fn add_variable_3(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 12110); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12098), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12098), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_4(address_space: &mut AddressSpace) { @@ -162,11 +211,26 @@ fn add_variable_4(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 12111); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12098), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12098), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_5(address_space: &mut AddressSpace) { @@ -174,12 +238,28 @@ fn add_variable_5(address_space: &mut AddressSpace) { let name = "TotalRequestCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 12112); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12098), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12098), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_6(address_space: &mut AddressSpace) { @@ -188,11 +268,26 @@ fn add_variable_6(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 12113); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12098), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12098), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_7(address_space: &mut AddressSpace) { @@ -200,12 +295,28 @@ fn add_variable_7(address_space: &mut AddressSpace) { let name = "ReadCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 12114); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12098), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12098), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_8(address_space: &mut AddressSpace) { @@ -213,12 +324,28 @@ fn add_variable_8(address_space: &mut AddressSpace) { let name = "HistoryReadCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 12115); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12098), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12098), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_9(address_space: &mut AddressSpace) { @@ -226,12 +353,28 @@ fn add_variable_9(address_space: &mut AddressSpace) { let name = "WriteCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 12116); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12098), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12098), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_10(address_space: &mut AddressSpace) { @@ -239,12 +382,28 @@ fn add_variable_10(address_space: &mut AddressSpace) { let name = "HistoryUpdateCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 12117); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12098), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12098), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_11(address_space: &mut AddressSpace) { @@ -252,12 +411,28 @@ fn add_variable_11(address_space: &mut AddressSpace) { let name = "CallCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 12118); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12098), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12098), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_12(address_space: &mut AddressSpace) { @@ -265,12 +440,28 @@ fn add_variable_12(address_space: &mut AddressSpace) { let name = "CreateMonitoredItemsCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 12119); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12098), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12098), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_13(address_space: &mut AddressSpace) { @@ -278,12 +469,28 @@ fn add_variable_13(address_space: &mut AddressSpace) { let name = "ModifyMonitoredItemsCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 12120); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12098), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12098), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_14(address_space: &mut AddressSpace) { @@ -291,12 +498,28 @@ fn add_variable_14(address_space: &mut AddressSpace) { let name = "SetMonitoringModeCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 12121); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12098), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12098), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_15(address_space: &mut AddressSpace) { @@ -304,12 +527,28 @@ fn add_variable_15(address_space: &mut AddressSpace) { let name = "SetTriggeringCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 12122); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12098), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12098), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_16(address_space: &mut AddressSpace) { @@ -317,12 +556,28 @@ fn add_variable_16(address_space: &mut AddressSpace) { let name = "DeleteMonitoredItemsCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 12123); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12098), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12098), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_17(address_space: &mut AddressSpace) { @@ -330,12 +585,28 @@ fn add_variable_17(address_space: &mut AddressSpace) { let name = "CreateSubscriptionCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 12124); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12098), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12098), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_18(address_space: &mut AddressSpace) { @@ -343,12 +614,28 @@ fn add_variable_18(address_space: &mut AddressSpace) { let name = "ModifySubscriptionCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 12125); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12098), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12098), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_19(address_space: &mut AddressSpace) { @@ -356,12 +643,28 @@ fn add_variable_19(address_space: &mut AddressSpace) { let name = "SetPublishingModeCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 12126); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12098), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12098), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_20(address_space: &mut AddressSpace) { @@ -369,12 +672,28 @@ fn add_variable_20(address_space: &mut AddressSpace) { let name = "PublishCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 12127); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12098), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12098), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_21(address_space: &mut AddressSpace) { @@ -382,12 +701,28 @@ fn add_variable_21(address_space: &mut AddressSpace) { let name = "RepublishCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 12128); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12098), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12098), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_22(address_space: &mut AddressSpace) { @@ -395,12 +730,28 @@ fn add_variable_22(address_space: &mut AddressSpace) { let name = "TransferSubscriptionsCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 12129); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12098), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12098), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_23(address_space: &mut AddressSpace) { @@ -408,12 +759,28 @@ fn add_variable_23(address_space: &mut AddressSpace) { let name = "DeleteSubscriptionsCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 12130); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12098), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12098), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_24(address_space: &mut AddressSpace) { @@ -421,12 +788,28 @@ fn add_variable_24(address_space: &mut AddressSpace) { let name = "AddNodesCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 12131); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12098), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12098), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_25(address_space: &mut AddressSpace) { @@ -434,12 +817,28 @@ fn add_variable_25(address_space: &mut AddressSpace) { let name = "AddReferencesCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 12132); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12098), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12098), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_26(address_space: &mut AddressSpace) { @@ -447,12 +846,28 @@ fn add_variable_26(address_space: &mut AddressSpace) { let name = "DeleteNodesCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 12133); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12098), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12098), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_27(address_space: &mut AddressSpace) { @@ -460,12 +875,28 @@ fn add_variable_27(address_space: &mut AddressSpace) { let name = "DeleteReferencesCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 12134); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12098), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12098), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_28(address_space: &mut AddressSpace) { @@ -473,12 +904,28 @@ fn add_variable_28(address_space: &mut AddressSpace) { let name = "BrowseCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 12135); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12098), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12098), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_29(address_space: &mut AddressSpace) { @@ -486,12 +933,28 @@ fn add_variable_29(address_space: &mut AddressSpace) { let name = "BrowseNextCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 12136); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12098), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12098), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_30(address_space: &mut AddressSpace) { @@ -499,12 +962,28 @@ fn add_variable_30(address_space: &mut AddressSpace) { let name = "TranslateBrowsePathsToNodeIdsCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 12137); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12098), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12098), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_31(address_space: &mut AddressSpace) { @@ -512,12 +991,28 @@ fn add_variable_31(address_space: &mut AddressSpace) { let name = "QueryFirstCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 12138); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12098), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12098), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_32(address_space: &mut AddressSpace) { @@ -525,12 +1020,28 @@ fn add_variable_32(address_space: &mut AddressSpace) { let name = "QueryNextCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 12139); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12098), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12098), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_33(address_space: &mut AddressSpace) { @@ -538,12 +1049,28 @@ fn add_variable_33(address_space: &mut AddressSpace) { let name = "RegisterNodesCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 12140); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12098), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12098), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_34(address_space: &mut AddressSpace) { @@ -551,12 +1078,28 @@ fn add_variable_34(address_space: &mut AddressSpace) { let name = "UnregisterNodesCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 12141); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12098), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12098), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_35(address_space: &mut AddressSpace) { @@ -564,21 +1107,73 @@ fn add_variable_35(address_space: &mut AddressSpace) { let name = "SessionSecurityDiagnostics"; let value = Variant::Empty; let node_id = NodeId::new(0, 12142); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 868), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12143), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12144), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12145), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12146), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12147), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12148), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12149), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12150), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12151), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2244), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12097), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 868), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12143), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12144), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12145), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12146), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12147), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12148), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12149), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12150), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12151), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2244), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12097), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_36(address_space: &mut AddressSpace) { @@ -586,12 +1181,28 @@ fn add_variable_36(address_space: &mut AddressSpace) { let name = "SessionId"; let value = Variant::Empty; let node_id = NodeId::new(0, 12143); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12142), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12142), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_37(address_space: &mut AddressSpace) { @@ -599,12 +1210,28 @@ fn add_variable_37(address_space: &mut AddressSpace) { let name = "ClientUserIdOfSession"; let value = Variant::Empty; let node_id = NodeId::new(0, 12144); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12142), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12142), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_38(address_space: &mut AddressSpace) { @@ -612,12 +1239,35 @@ fn add_variable_38(address_space: &mut AddressSpace) { let name = "ClientUserIdHistory"; let value = Variant::Empty; let node_id = NodeId::new(0, 12145); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12142), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 12), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12142), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_39(address_space: &mut AddressSpace) { @@ -625,12 +1275,28 @@ fn add_variable_39(address_space: &mut AddressSpace) { let name = "AuthenticationMechanism"; let value = Variant::Empty; let node_id = NodeId::new(0, 12146); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12142), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12142), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_40(address_space: &mut AddressSpace) { @@ -638,12 +1304,28 @@ fn add_variable_40(address_space: &mut AddressSpace) { let name = "Encoding"; let value = Variant::Empty; let node_id = NodeId::new(0, 12147); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12142), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12142), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_41(address_space: &mut AddressSpace) { @@ -651,12 +1333,28 @@ fn add_variable_41(address_space: &mut AddressSpace) { let name = "TransportProtocol"; let value = Variant::Empty; let node_id = NodeId::new(0, 12148); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12142), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12142), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_42(address_space: &mut AddressSpace) { @@ -664,12 +1362,28 @@ fn add_variable_42(address_space: &mut AddressSpace) { let name = "SecurityMode"; let value = Variant::Empty; let node_id = NodeId::new(0, 12149); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 302), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12142), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 302), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12142), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_43(address_space: &mut AddressSpace) { @@ -677,12 +1391,28 @@ fn add_variable_43(address_space: &mut AddressSpace) { let name = "SecurityPolicyUri"; let value = Variant::Empty; let node_id = NodeId::new(0, 12150); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12142), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12142), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_44(address_space: &mut AddressSpace) { @@ -690,12 +1420,28 @@ fn add_variable_44(address_space: &mut AddressSpace) { let name = "ClientCertificate"; let value = Variant::Empty; let node_id = NodeId::new(0, 12151); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12142), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12142), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_45(address_space: &mut AddressSpace) { @@ -703,12 +1449,35 @@ fn add_variable_45(address_space: &mut AddressSpace) { let name = "SubscriptionDiagnosticsArray"; let value = Variant::Empty; let node_id = NodeId::new(0, 12152); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 874), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2171), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12097), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 874), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2171), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12097), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_46(address_space: &mut AddressSpace) { @@ -716,55 +1485,243 @@ fn add_variable_46(address_space: &mut AddressSpace) { let name = "SessionDiagnostics"; let value = Variant::Empty; let node_id = NodeId::new(0, 2030); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 865), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 3131), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3132), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3133), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3134), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3135), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3136), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3137), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3138), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3139), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3140), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3141), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3142), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3143), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 8898), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 11891), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3151), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3152), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3153), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3154), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3155), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3156), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3157), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3158), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3159), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3160), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3161), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3162), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3163), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3164), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3165), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3166), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3167), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3168), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3169), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3170), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3171), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3172), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3173), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3174), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3175), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3176), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3177), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3178), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2197), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2029), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 865), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 3131), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3132), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3133), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3134), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3135), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3136), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3137), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3138), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3139), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3140), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3141), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3142), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3143), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8898), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11891), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3151), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3152), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3153), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3154), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3155), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3156), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3157), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3158), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3159), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3160), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3161), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3162), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3163), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3164), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3165), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3166), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3167), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3168), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3169), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3170), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3171), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3172), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3173), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3174), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3175), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3176), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3177), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3178), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2197), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2029), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_47(address_space: &mut AddressSpace) { @@ -772,12 +1729,28 @@ fn add_variable_47(address_space: &mut AddressSpace) { let name = "SessionId"; let value = Variant::Empty; let node_id = NodeId::new(0, 3131); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2030), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2030), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_48(address_space: &mut AddressSpace) { @@ -785,12 +1758,28 @@ fn add_variable_48(address_space: &mut AddressSpace) { let name = "SessionName"; let value = Variant::Empty; let node_id = NodeId::new(0, 3132); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2030), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2030), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_49(address_space: &mut AddressSpace) { @@ -798,12 +1787,28 @@ fn add_variable_49(address_space: &mut AddressSpace) { let name = "ClientDescription"; let value = Variant::Empty; let node_id = NodeId::new(0, 3133); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 308), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2030), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 308), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2030), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_50(address_space: &mut AddressSpace) { @@ -811,12 +1816,28 @@ fn add_variable_50(address_space: &mut AddressSpace) { let name = "ServerUri"; let value = Variant::Empty; let node_id = NodeId::new(0, 3134); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2030), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2030), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_51(address_space: &mut AddressSpace) { @@ -824,12 +1845,28 @@ fn add_variable_51(address_space: &mut AddressSpace) { let name = "EndpointUrl"; let value = Variant::Empty; let node_id = NodeId::new(0, 3135); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2030), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2030), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_52(address_space: &mut AddressSpace) { @@ -837,12 +1874,35 @@ fn add_variable_52(address_space: &mut AddressSpace) { let name = "LocaleIds"; let value = Variant::Empty; let node_id = NodeId::new(0, 3136); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 295), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2030), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 295), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2030), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_53(address_space: &mut AddressSpace) { @@ -850,12 +1910,28 @@ fn add_variable_53(address_space: &mut AddressSpace) { let name = "ActualSessionTimeout"; let value = Variant::Empty; let node_id = NodeId::new(0, 3137); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2030), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2030), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_54(address_space: &mut AddressSpace) { @@ -864,11 +1940,26 @@ fn add_variable_54(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 3138); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2030), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2030), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_55(address_space: &mut AddressSpace) { @@ -876,12 +1967,28 @@ fn add_variable_55(address_space: &mut AddressSpace) { let name = "ClientConnectionTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 3139); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2030), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2030), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_56(address_space: &mut AddressSpace) { @@ -889,12 +1996,28 @@ fn add_variable_56(address_space: &mut AddressSpace) { let name = "ClientLastContactTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 3140); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2030), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2030), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_57(address_space: &mut AddressSpace) { @@ -903,11 +2026,26 @@ fn add_variable_57(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 3141); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2030), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2030), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_58(address_space: &mut AddressSpace) { @@ -916,11 +2054,26 @@ fn add_variable_58(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 3142); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2030), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2030), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_59(address_space: &mut AddressSpace) { @@ -929,11 +2082,26 @@ fn add_variable_59(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 3143); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2030), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2030), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_60(address_space: &mut AddressSpace) { @@ -941,12 +2109,28 @@ fn add_variable_60(address_space: &mut AddressSpace) { let name = "TotalRequestCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 8898); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2030), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2030), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_61(address_space: &mut AddressSpace) { @@ -955,11 +2139,26 @@ fn add_variable_61(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11891); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2030), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2030), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_62(address_space: &mut AddressSpace) { @@ -967,12 +2166,28 @@ fn add_variable_62(address_space: &mut AddressSpace) { let name = "ReadCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 3151); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2030), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2030), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_63(address_space: &mut AddressSpace) { @@ -980,12 +2195,28 @@ fn add_variable_63(address_space: &mut AddressSpace) { let name = "HistoryReadCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 3152); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2030), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2030), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_64(address_space: &mut AddressSpace) { @@ -993,12 +2224,28 @@ fn add_variable_64(address_space: &mut AddressSpace) { let name = "WriteCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 3153); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2030), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2030), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_65(address_space: &mut AddressSpace) { @@ -1006,12 +2253,28 @@ fn add_variable_65(address_space: &mut AddressSpace) { let name = "HistoryUpdateCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 3154); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2030), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2030), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_66(address_space: &mut AddressSpace) { @@ -1019,12 +2282,28 @@ fn add_variable_66(address_space: &mut AddressSpace) { let name = "CallCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 3155); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2030), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2030), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_67(address_space: &mut AddressSpace) { @@ -1032,12 +2311,28 @@ fn add_variable_67(address_space: &mut AddressSpace) { let name = "CreateMonitoredItemsCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 3156); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2030), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2030), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_68(address_space: &mut AddressSpace) { @@ -1045,12 +2340,28 @@ fn add_variable_68(address_space: &mut AddressSpace) { let name = "ModifyMonitoredItemsCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 3157); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2030), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2030), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_69(address_space: &mut AddressSpace) { @@ -1058,12 +2369,28 @@ fn add_variable_69(address_space: &mut AddressSpace) { let name = "SetMonitoringModeCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 3158); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2030), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2030), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_70(address_space: &mut AddressSpace) { @@ -1071,12 +2398,28 @@ fn add_variable_70(address_space: &mut AddressSpace) { let name = "SetTriggeringCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 3159); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2030), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2030), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_71(address_space: &mut AddressSpace) { @@ -1084,12 +2427,28 @@ fn add_variable_71(address_space: &mut AddressSpace) { let name = "DeleteMonitoredItemsCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 3160); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2030), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2030), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_72(address_space: &mut AddressSpace) { @@ -1097,12 +2456,28 @@ fn add_variable_72(address_space: &mut AddressSpace) { let name = "CreateSubscriptionCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 3161); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2030), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2030), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_73(address_space: &mut AddressSpace) { @@ -1110,12 +2485,28 @@ fn add_variable_73(address_space: &mut AddressSpace) { let name = "ModifySubscriptionCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 3162); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2030), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2030), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_74(address_space: &mut AddressSpace) { @@ -1123,12 +2514,28 @@ fn add_variable_74(address_space: &mut AddressSpace) { let name = "SetPublishingModeCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 3163); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2030), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2030), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_75(address_space: &mut AddressSpace) { @@ -1136,12 +2543,28 @@ fn add_variable_75(address_space: &mut AddressSpace) { let name = "PublishCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 3164); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2030), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2030), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_76(address_space: &mut AddressSpace) { @@ -1149,12 +2572,28 @@ fn add_variable_76(address_space: &mut AddressSpace) { let name = "RepublishCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 3165); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2030), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2030), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_77(address_space: &mut AddressSpace) { @@ -1162,12 +2601,28 @@ fn add_variable_77(address_space: &mut AddressSpace) { let name = "TransferSubscriptionsCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 3166); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2030), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2030), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_78(address_space: &mut AddressSpace) { @@ -1175,12 +2630,28 @@ fn add_variable_78(address_space: &mut AddressSpace) { let name = "DeleteSubscriptionsCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 3167); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2030), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2030), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_79(address_space: &mut AddressSpace) { @@ -1188,12 +2659,28 @@ fn add_variable_79(address_space: &mut AddressSpace) { let name = "AddNodesCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 3168); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2030), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2030), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_80(address_space: &mut AddressSpace) { @@ -1201,12 +2688,28 @@ fn add_variable_80(address_space: &mut AddressSpace) { let name = "AddReferencesCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 3169); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2030), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2030), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_81(address_space: &mut AddressSpace) { @@ -1214,12 +2717,28 @@ fn add_variable_81(address_space: &mut AddressSpace) { let name = "DeleteNodesCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 3170); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2030), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2030), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_82(address_space: &mut AddressSpace) { @@ -1227,12 +2746,28 @@ fn add_variable_82(address_space: &mut AddressSpace) { let name = "DeleteReferencesCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 3171); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2030), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2030), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_83(address_space: &mut AddressSpace) { @@ -1240,12 +2775,28 @@ fn add_variable_83(address_space: &mut AddressSpace) { let name = "BrowseCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 3172); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2030), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2030), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_84(address_space: &mut AddressSpace) { @@ -1253,12 +2804,28 @@ fn add_variable_84(address_space: &mut AddressSpace) { let name = "BrowseNextCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 3173); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2030), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2030), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_85(address_space: &mut AddressSpace) { @@ -1266,12 +2833,28 @@ fn add_variable_85(address_space: &mut AddressSpace) { let name = "TranslateBrowsePathsToNodeIdsCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 3174); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2030), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2030), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_86(address_space: &mut AddressSpace) { @@ -1279,12 +2862,28 @@ fn add_variable_86(address_space: &mut AddressSpace) { let name = "QueryFirstCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 3175); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2030), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2030), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_87(address_space: &mut AddressSpace) { @@ -1292,12 +2891,28 @@ fn add_variable_87(address_space: &mut AddressSpace) { let name = "QueryNextCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 3176); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2030), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2030), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_88(address_space: &mut AddressSpace) { @@ -1305,12 +2920,28 @@ fn add_variable_88(address_space: &mut AddressSpace) { let name = "RegisterNodesCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 3177); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2030), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2030), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_89(address_space: &mut AddressSpace) { @@ -1318,12 +2949,28 @@ fn add_variable_89(address_space: &mut AddressSpace) { let name = "UnregisterNodesCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 3178); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2030), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2030), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_90(address_space: &mut AddressSpace) { @@ -1331,21 +2978,73 @@ fn add_variable_90(address_space: &mut AddressSpace) { let name = "SessionSecurityDiagnostics"; let value = Variant::Empty; let node_id = NodeId::new(0, 2031); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 868), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 3179), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3180), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3181), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3182), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3183), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3184), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3185), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3186), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3187), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2244), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2029), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 868), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 3179), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3180), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3181), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3182), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3183), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3184), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3185), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3186), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3187), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2244), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2029), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_91(address_space: &mut AddressSpace) { @@ -1353,12 +3052,28 @@ fn add_variable_91(address_space: &mut AddressSpace) { let name = "SessionId"; let value = Variant::Empty; let node_id = NodeId::new(0, 3179); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2031), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2031), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_92(address_space: &mut AddressSpace) { @@ -1366,12 +3081,28 @@ fn add_variable_92(address_space: &mut AddressSpace) { let name = "ClientUserIdOfSession"; let value = Variant::Empty; let node_id = NodeId::new(0, 3180); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2031), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2031), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_93(address_space: &mut AddressSpace) { @@ -1379,12 +3110,35 @@ fn add_variable_93(address_space: &mut AddressSpace) { let name = "ClientUserIdHistory"; let value = Variant::Empty; let node_id = NodeId::new(0, 3181); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2031), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 12), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2031), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_94(address_space: &mut AddressSpace) { @@ -1392,12 +3146,28 @@ fn add_variable_94(address_space: &mut AddressSpace) { let name = "AuthenticationMechanism"; let value = Variant::Empty; let node_id = NodeId::new(0, 3182); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2031), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2031), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_95(address_space: &mut AddressSpace) { @@ -1405,12 +3175,28 @@ fn add_variable_95(address_space: &mut AddressSpace) { let name = "Encoding"; let value = Variant::Empty; let node_id = NodeId::new(0, 3183); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2031), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2031), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_96(address_space: &mut AddressSpace) { @@ -1418,12 +3204,28 @@ fn add_variable_96(address_space: &mut AddressSpace) { let name = "TransportProtocol"; let value = Variant::Empty; let node_id = NodeId::new(0, 3184); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2031), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2031), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_97(address_space: &mut AddressSpace) { @@ -1431,12 +3233,28 @@ fn add_variable_97(address_space: &mut AddressSpace) { let name = "SecurityMode"; let value = Variant::Empty; let node_id = NodeId::new(0, 3185); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 302), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2031), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 302), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2031), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_98(address_space: &mut AddressSpace) { @@ -1444,12 +3262,28 @@ fn add_variable_98(address_space: &mut AddressSpace) { let name = "SecurityPolicyUri"; let value = Variant::Empty; let node_id = NodeId::new(0, 3186); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2031), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2031), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_99(address_space: &mut AddressSpace) { @@ -1457,12 +3291,28 @@ fn add_variable_99(address_space: &mut AddressSpace) { let name = "ClientCertificate"; let value = Variant::Empty; let node_id = NodeId::new(0, 3187); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2031), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2031), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_100(address_space: &mut AddressSpace) { @@ -1470,11 +3320,33 @@ fn add_variable_100(address_space: &mut AddressSpace) { let name = "SubscriptionDiagnosticsArray"; let value = Variant::Empty; let node_id = NodeId::new(0, 2032); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 874), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2171), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2029), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 874), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2171), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2029), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } - diff --git a/server/src/address_space/generated/nodeset_5_6.rs b/server/src/address_space/generated/nodeset_5_6.rs index 3873384a5..ec8bcf03d 100644 --- a/server/src/address_space/generated/nodeset_5_6.rs +++ b/server/src/address_space/generated/nodeset_5_6.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.NodeSet2.Part5.xml by tools/schema/gen_address_space.js // DO NOT EDIT THIS FILE @@ -9,8 +9,11 @@ use std::{convert::TryFrom, str::FromStr}; #[allow(unused_imports)] use crate::{ - address_space::{EventNotifier, types::*}, - prelude::{DataTypeId, ExtensionObject, LocalizedText, NodeId, ReferenceTypeId, service_types::Argument, UAString, Variant, VariantTypeId} + address_space::{types::*, EventNotifier}, + prelude::{ + service_types::Argument, DataTypeId, ExtensionObject, LocalizedText, NodeId, + ReferenceTypeId, UAString, Variant, VariantTypeId, + }, }; #[allow(unused_variables)] @@ -122,12 +125,28 @@ fn add_variable_1(address_space: &mut AddressSpace) { let name = "RedundancySupport"; let value = Variant::Empty; let node_id = NodeId::new(0, 2035); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 851), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2034), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 851), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2034), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_2(address_space: &mut AddressSpace) { @@ -135,12 +154,28 @@ fn add_variable_2(address_space: &mut AddressSpace) { let name = "CurrentServerId"; let value = Variant::Empty; let node_id = NodeId::new(0, 2037); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2036), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2036), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_3(address_space: &mut AddressSpace) { @@ -148,12 +183,35 @@ fn add_variable_3(address_space: &mut AddressSpace) { let name = "RedundantServerArray"; let value = Variant::Empty; let node_id = NodeId::new(0, 2038); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 853), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2036), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 853), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2036), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_4(address_space: &mut AddressSpace) { @@ -161,12 +219,35 @@ fn add_variable_4(address_space: &mut AddressSpace) { let name = "ServerUriArray"; let value = Variant::Empty; let node_id = NodeId::new(0, 2040); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2039), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 12), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2039), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_5(address_space: &mut AddressSpace) { @@ -174,12 +255,35 @@ fn add_variable_5(address_space: &mut AddressSpace) { let name = "ServerNetworkGroups"; let value = Variant::Empty; let node_id = NodeId::new(0, 11948); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11944), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11945), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 11944), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11945), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_6(address_space: &mut AddressSpace) { @@ -188,11 +292,26 @@ fn add_variable_6(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11565); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11564), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11564), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_7(address_space: &mut AddressSpace) { @@ -201,11 +320,26 @@ fn add_variable_7(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 12161); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11564), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11564), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_8(address_space: &mut AddressSpace) { @@ -214,11 +348,26 @@ fn add_variable_8(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 12162); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11564), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11564), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_9(address_space: &mut AddressSpace) { @@ -227,11 +376,26 @@ fn add_variable_9(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11567); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11564), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11564), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_10(address_space: &mut AddressSpace) { @@ -240,11 +404,26 @@ fn add_variable_10(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 12163); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11564), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11564), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_11(address_space: &mut AddressSpace) { @@ -253,11 +432,26 @@ fn add_variable_11(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 12164); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11564), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11564), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_12(address_space: &mut AddressSpace) { @@ -266,11 +460,26 @@ fn add_variable_12(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11569); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11564), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11564), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_13(address_space: &mut AddressSpace) { @@ -279,11 +488,26 @@ fn add_variable_13(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11570); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11564), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11564), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_14(address_space: &mut AddressSpace) { @@ -292,11 +516,26 @@ fn add_variable_14(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11571); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11564), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11564), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_15(address_space: &mut AddressSpace) { @@ -305,11 +544,26 @@ fn add_variable_15(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11572); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11564), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11564), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_16(address_space: &mut AddressSpace) { @@ -318,11 +572,26 @@ fn add_variable_16(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11573); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11564), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11564), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_17(address_space: &mut AddressSpace) { @@ -331,11 +600,26 @@ fn add_variable_17(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11574); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11564), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11564), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_18(address_space: &mut AddressSpace) { @@ -344,11 +628,26 @@ fn add_variable_18(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11576); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 9), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11575), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11575), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_19(address_space: &mut AddressSpace) { @@ -357,11 +656,26 @@ fn add_variable_19(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 12686); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11575), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11575), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_20(address_space: &mut AddressSpace) { @@ -370,11 +684,26 @@ fn add_variable_20(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 12687); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11575), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11575), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_21(address_space: &mut AddressSpace) { @@ -383,11 +712,26 @@ fn add_variable_21(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11579); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11575), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11575), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_22(address_space: &mut AddressSpace) { @@ -395,78 +739,163 @@ fn add_variable_22(address_space: &mut AddressSpace) { let name = "MimeType"; let value = Variant::Empty; let node_id = NodeId::new(0, 13341); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11575), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11575), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_23(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Mode"), - data_type: NodeId::new(0, 3), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Mode"), + data_type: NodeId::new(0, 3), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 11581); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11580), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11580), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_24(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("FileHandle"), - data_type: NodeId::new(0, 7), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("FileHandle"), + data_type: NodeId::new(0, 7), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 11582); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11580), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11580), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_25(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("FileHandle"), - data_type: NodeId::new(0, 7), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("FileHandle"), + data_type: NodeId::new(0, 7), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 11584); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11583), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11583), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_26(address_space: &mut AddressSpace) { @@ -474,51 +903,101 @@ fn add_variable_26(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("FileHandle"), data_type: NodeId::new(0, 7), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("Length"), data_type: NodeId::new(0, 6), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 11586); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11585), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11585), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_27(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Data"), - data_type: NodeId::new(0, 15), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Data"), + data_type: NodeId::new(0, 15), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 11587); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11585), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11585), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_28(address_space: &mut AddressSpace) { @@ -526,73 +1005,146 @@ fn add_variable_28(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("FileHandle"), data_type: NodeId::new(0, 7), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("Data"), data_type: NodeId::new(0, 15), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 11589); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11588), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11588), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_29(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("FileHandle"), - data_type: NodeId::new(0, 7), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("FileHandle"), + data_type: NodeId::new(0, 7), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 11591); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11590), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11590), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_30(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Position"), - data_type: NodeId::new(0, 9), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Position"), + data_type: NodeId::new(0, 9), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 11592); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11590), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11590), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_31(address_space: &mut AddressSpace) { @@ -600,29 +1152,56 @@ fn add_variable_31(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("FileHandle"), data_type: NodeId::new(0, 7), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("Position"), data_type: NodeId::new(0, 9), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 11594); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11593), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11593), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_32(address_space: &mut AddressSpace) { @@ -630,12 +1209,28 @@ fn add_variable_32(address_space: &mut AddressSpace) { let name = "NamespaceUri"; let value = Variant::Empty; let node_id = NodeId::new(0, 11617); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11616), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11616), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_33(address_space: &mut AddressSpace) { @@ -643,12 +1238,28 @@ fn add_variable_33(address_space: &mut AddressSpace) { let name = "NamespaceVersion"; let value = Variant::Empty; let node_id = NodeId::new(0, 11618); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11616), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11616), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_34(address_space: &mut AddressSpace) { @@ -656,12 +1267,28 @@ fn add_variable_34(address_space: &mut AddressSpace) { let name = "NamespacePublicationDate"; let value = Variant::Empty; let node_id = NodeId::new(0, 11619); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 13), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11616), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 13), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11616), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_35(address_space: &mut AddressSpace) { @@ -670,11 +1297,26 @@ fn add_variable_35(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11620); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11616), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11616), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_36(address_space: &mut AddressSpace) { @@ -682,12 +1324,35 @@ fn add_variable_36(address_space: &mut AddressSpace) { let name = "StaticNodeIdTypes"; let value = Variant::Empty; let node_id = NodeId::new(0, 11621); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 256), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11616), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 256), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11616), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_37(address_space: &mut AddressSpace) { @@ -695,12 +1360,35 @@ fn add_variable_37(address_space: &mut AddressSpace) { let name = "StaticNumericNodeIdRange"; let value = Variant::Empty; let node_id = NodeId::new(0, 11622); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 291), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11616), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 291), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11616), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_38(address_space: &mut AddressSpace) { @@ -708,12 +1396,28 @@ fn add_variable_38(address_space: &mut AddressSpace) { let name = "StaticStringNodeIdPattern"; let value = Variant::Empty; let node_id = NodeId::new(0, 11623); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11616), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11616), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_39(address_space: &mut AddressSpace) { @@ -722,11 +1426,26 @@ fn add_variable_39(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11625); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 9), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11624), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11624), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_40(address_space: &mut AddressSpace) { @@ -735,11 +1454,26 @@ fn add_variable_40(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 12690); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11624), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11624), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_41(address_space: &mut AddressSpace) { @@ -748,11 +1482,26 @@ fn add_variable_41(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 12691); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11624), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11624), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_42(address_space: &mut AddressSpace) { @@ -761,77 +1510,161 @@ fn add_variable_42(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11628); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11624), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11624), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_43(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Mode"), - data_type: NodeId::new(0, 3), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Mode"), + data_type: NodeId::new(0, 3), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 11630); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11629), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11629), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_44(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("FileHandle"), - data_type: NodeId::new(0, 7), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("FileHandle"), + data_type: NodeId::new(0, 7), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 11631); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11629), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11629), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_45(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("FileHandle"), - data_type: NodeId::new(0, 7), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("FileHandle"), + data_type: NodeId::new(0, 7), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 11633); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11632), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11632), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_46(address_space: &mut AddressSpace) { @@ -839,51 +1672,101 @@ fn add_variable_46(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("FileHandle"), data_type: NodeId::new(0, 7), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("Length"), data_type: NodeId::new(0, 6), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 11635); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11634), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11634), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_47(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Data"), - data_type: NodeId::new(0, 15), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Data"), + data_type: NodeId::new(0, 15), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 11636); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11634), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11634), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_48(address_space: &mut AddressSpace) { @@ -891,73 +1774,146 @@ fn add_variable_48(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("FileHandle"), data_type: NodeId::new(0, 7), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("Data"), data_type: NodeId::new(0, 15), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 11638); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11637), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11637), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_49(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("FileHandle"), - data_type: NodeId::new(0, 7), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("FileHandle"), + data_type: NodeId::new(0, 7), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 11640); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11639), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11639), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_50(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("Position"), - data_type: NodeId::new(0, 9), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("Position"), + data_type: NodeId::new(0, 9), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 11641); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11639), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11639), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_51(address_space: &mut AddressSpace) { @@ -965,29 +1921,56 @@ fn add_variable_51(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("FileHandle"), data_type: NodeId::new(0, 7), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("Position"), data_type: NodeId::new(0, 9), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 11643); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11642), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11642), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_52(address_space: &mut AddressSpace) { @@ -995,12 +1978,35 @@ fn add_variable_52(address_space: &mut AddressSpace) { let name = "DefaultRolePermissions"; let value = Variant::Empty; let node_id = NodeId::new(0, 16137); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 96), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11616), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 96), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11616), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_53(address_space: &mut AddressSpace) { @@ -1008,12 +2014,35 @@ fn add_variable_53(address_space: &mut AddressSpace) { let name = "DefaultUserRolePermissions"; let value = Variant::Empty; let node_id = NodeId::new(0, 16138); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 96), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11616), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 96), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11616), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_54(address_space: &mut AddressSpace) { @@ -1021,12 +2050,28 @@ fn add_variable_54(address_space: &mut AddressSpace) { let name = "DefaultAccessRestrictions"; let value = Variant::Empty; let node_id = NodeId::new(0, 16139); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 95), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11616), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 95), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11616), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_55(address_space: &mut AddressSpace) { @@ -1034,12 +2079,28 @@ fn add_variable_55(address_space: &mut AddressSpace) { let name = "NamespaceUri"; let value = Variant::Empty; let node_id = NodeId::new(0, 11647); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11646), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11646), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_56(address_space: &mut AddressSpace) { @@ -1047,12 +2108,28 @@ fn add_variable_56(address_space: &mut AddressSpace) { let name = "NamespaceVersion"; let value = Variant::Empty; let node_id = NodeId::new(0, 11648); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11646), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11646), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_57(address_space: &mut AddressSpace) { @@ -1060,12 +2137,28 @@ fn add_variable_57(address_space: &mut AddressSpace) { let name = "NamespacePublicationDate"; let value = Variant::Empty; let node_id = NodeId::new(0, 11649); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 13), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11646), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 13), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11646), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_58(address_space: &mut AddressSpace) { @@ -1074,11 +2167,26 @@ fn add_variable_58(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11650); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11646), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11646), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_59(address_space: &mut AddressSpace) { @@ -1086,12 +2194,35 @@ fn add_variable_59(address_space: &mut AddressSpace) { let name = "StaticNodeIdTypes"; let value = Variant::Empty; let node_id = NodeId::new(0, 11651); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 256), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11646), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 256), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11646), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_60(address_space: &mut AddressSpace) { @@ -1099,12 +2230,35 @@ fn add_variable_60(address_space: &mut AddressSpace) { let name = "StaticNumericNodeIdRange"; let value = Variant::Empty; let node_id = NodeId::new(0, 11652); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 291), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11646), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 291), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11646), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_61(address_space: &mut AddressSpace) { @@ -1112,12 +2266,28 @@ fn add_variable_61(address_space: &mut AddressSpace) { let name = "StaticStringNodeIdPattern"; let value = Variant::Empty; let node_id = NodeId::new(0, 11653); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11646), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11646), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_62(address_space: &mut AddressSpace) { @@ -1125,12 +2295,28 @@ fn add_variable_62(address_space: &mut AddressSpace) { let name = "EventId"; let value = Variant::Empty; let node_id = NodeId::new(0, 2042); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2041), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2041), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_63(address_space: &mut AddressSpace) { @@ -1138,12 +2324,28 @@ fn add_variable_63(address_space: &mut AddressSpace) { let name = "EventType"; let value = Variant::Empty; let node_id = NodeId::new(0, 2043); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2041), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2041), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_64(address_space: &mut AddressSpace) { @@ -1151,12 +2353,28 @@ fn add_variable_64(address_space: &mut AddressSpace) { let name = "SourceNode"; let value = Variant::Empty; let node_id = NodeId::new(0, 2044); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2041), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2041), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_65(address_space: &mut AddressSpace) { @@ -1164,12 +2382,28 @@ fn add_variable_65(address_space: &mut AddressSpace) { let name = "SourceName"; let value = Variant::Empty; let node_id = NodeId::new(0, 2045); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2041), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2041), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_66(address_space: &mut AddressSpace) { @@ -1177,12 +2411,28 @@ fn add_variable_66(address_space: &mut AddressSpace) { let name = "Time"; let value = Variant::Empty; let node_id = NodeId::new(0, 2046); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2041), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2041), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_67(address_space: &mut AddressSpace) { @@ -1190,12 +2440,28 @@ fn add_variable_67(address_space: &mut AddressSpace) { let name = "ReceiveTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 2047); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2041), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2041), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_68(address_space: &mut AddressSpace) { @@ -1203,12 +2469,35 @@ fn add_variable_68(address_space: &mut AddressSpace) { let name = "LocalTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 3190); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 8912), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2041), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 8912), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2041), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_69(address_space: &mut AddressSpace) { @@ -1216,12 +2505,28 @@ fn add_variable_69(address_space: &mut AddressSpace) { let name = "Message"; let value = Variant::Empty; let node_id = NodeId::new(0, 2050); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2041), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2041), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_70(address_space: &mut AddressSpace) { @@ -1230,11 +2535,26 @@ fn add_variable_70(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2051); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2041), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2041), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_71(address_space: &mut AddressSpace) { @@ -1242,12 +2562,28 @@ fn add_variable_71(address_space: &mut AddressSpace) { let name = "ActionTimeStamp"; let value = Variant::Empty; let node_id = NodeId::new(0, 2053); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2052), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2052), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_72(address_space: &mut AddressSpace) { @@ -1256,11 +2592,26 @@ fn add_variable_72(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2054); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2052), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2052), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_73(address_space: &mut AddressSpace) { @@ -1268,12 +2619,28 @@ fn add_variable_73(address_space: &mut AddressSpace) { let name = "ServerId"; let value = Variant::Empty; let node_id = NodeId::new(0, 2055); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2052), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2052), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_74(address_space: &mut AddressSpace) { @@ -1281,12 +2648,28 @@ fn add_variable_74(address_space: &mut AddressSpace) { let name = "ClientAuditEntryId"; let value = Variant::Empty; let node_id = NodeId::new(0, 2056); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2052), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2052), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_75(address_space: &mut AddressSpace) { @@ -1294,12 +2677,28 @@ fn add_variable_75(address_space: &mut AddressSpace) { let name = "ClientUserId"; let value = Variant::Empty; let node_id = NodeId::new(0, 2057); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2052), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2052), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_76(address_space: &mut AddressSpace) { @@ -1307,12 +2706,28 @@ fn add_variable_76(address_space: &mut AddressSpace) { let name = "StatusCodeId"; let value = Variant::Empty; let node_id = NodeId::new(0, 17615); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2058), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2058), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_77(address_space: &mut AddressSpace) { @@ -1320,12 +2735,28 @@ fn add_variable_77(address_space: &mut AddressSpace) { let name = "SecureChannelId"; let value = Variant::Empty; let node_id = NodeId::new(0, 2745); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2059), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2059), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_78(address_space: &mut AddressSpace) { @@ -1333,12 +2764,28 @@ fn add_variable_78(address_space: &mut AddressSpace) { let name = "ClientCertificate"; let value = Variant::Empty; let node_id = NodeId::new(0, 2061); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2060), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2060), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_79(address_space: &mut AddressSpace) { @@ -1346,12 +2793,28 @@ fn add_variable_79(address_space: &mut AddressSpace) { let name = "ClientCertificateThumbprint"; let value = Variant::Empty; let node_id = NodeId::new(0, 2746); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2060), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2060), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_80(address_space: &mut AddressSpace) { @@ -1359,12 +2822,28 @@ fn add_variable_80(address_space: &mut AddressSpace) { let name = "RequestType"; let value = Variant::Empty; let node_id = NodeId::new(0, 2062); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 315), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2060), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 315), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2060), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_81(address_space: &mut AddressSpace) { @@ -1372,12 +2851,28 @@ fn add_variable_81(address_space: &mut AddressSpace) { let name = "SecurityPolicyUri"; let value = Variant::Empty; let node_id = NodeId::new(0, 2063); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2060), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2060), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_82(address_space: &mut AddressSpace) { @@ -1385,12 +2880,28 @@ fn add_variable_82(address_space: &mut AddressSpace) { let name = "SecurityMode"; let value = Variant::Empty; let node_id = NodeId::new(0, 2065); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 302), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2060), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 302), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2060), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_83(address_space: &mut AddressSpace) { @@ -1398,12 +2909,28 @@ fn add_variable_83(address_space: &mut AddressSpace) { let name = "RequestedLifetime"; let value = Variant::Empty; let node_id = NodeId::new(0, 2066); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2060), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2060), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_84(address_space: &mut AddressSpace) { @@ -1411,12 +2938,28 @@ fn add_variable_84(address_space: &mut AddressSpace) { let name = "SessionId"; let value = Variant::Empty; let node_id = NodeId::new(0, 2070); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2069), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2069), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_85(address_space: &mut AddressSpace) { @@ -1424,12 +2967,28 @@ fn add_variable_85(address_space: &mut AddressSpace) { let name = "SecureChannelId"; let value = Variant::Empty; let node_id = NodeId::new(0, 2072); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2071), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2071), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_86(address_space: &mut AddressSpace) { @@ -1437,12 +2996,28 @@ fn add_variable_86(address_space: &mut AddressSpace) { let name = "ClientCertificate"; let value = Variant::Empty; let node_id = NodeId::new(0, 2073); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2071), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2071), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_87(address_space: &mut AddressSpace) { @@ -1450,12 +3025,28 @@ fn add_variable_87(address_space: &mut AddressSpace) { let name = "ClientCertificateThumbprint"; let value = Variant::Empty; let node_id = NodeId::new(0, 2747); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2071), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2071), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_88(address_space: &mut AddressSpace) { @@ -1463,12 +3054,28 @@ fn add_variable_88(address_space: &mut AddressSpace) { let name = "RevisedSessionTimeout"; let value = Variant::Empty; let node_id = NodeId::new(0, 2074); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2071), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2071), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_89(address_space: &mut AddressSpace) { @@ -1476,12 +3083,28 @@ fn add_variable_89(address_space: &mut AddressSpace) { let name = "EndpointUrl"; let value = Variant::Empty; let node_id = NodeId::new(0, 2749); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2748), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2748), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_90(address_space: &mut AddressSpace) { @@ -1489,12 +3112,35 @@ fn add_variable_90(address_space: &mut AddressSpace) { let name = "ClientSoftwareCertificates"; let value = Variant::Empty; let node_id = NodeId::new(0, 2076); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 344), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2075), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 344), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2075), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_91(address_space: &mut AddressSpace) { @@ -1502,12 +3148,28 @@ fn add_variable_91(address_space: &mut AddressSpace) { let name = "UserIdentityToken"; let value = Variant::Empty; let node_id = NodeId::new(0, 2077); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 316), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2075), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 316), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2075), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_92(address_space: &mut AddressSpace) { @@ -1515,12 +3177,28 @@ fn add_variable_92(address_space: &mut AddressSpace) { let name = "SecureChannelId"; let value = Variant::Empty; let node_id = NodeId::new(0, 11485); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2075), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2075), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_93(address_space: &mut AddressSpace) { @@ -1529,11 +3207,26 @@ fn add_variable_93(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2079); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2078), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2078), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_94(address_space: &mut AddressSpace) { @@ -1541,12 +3234,28 @@ fn add_variable_94(address_space: &mut AddressSpace) { let name = "Certificate"; let value = Variant::Empty; let node_id = NodeId::new(0, 2081); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2080), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2080), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_95(address_space: &mut AddressSpace) { @@ -1554,12 +3263,28 @@ fn add_variable_95(address_space: &mut AddressSpace) { let name = "InvalidHostname"; let value = Variant::Empty; let node_id = NodeId::new(0, 2083); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2082), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2082), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_96(address_space: &mut AddressSpace) { @@ -1567,12 +3292,28 @@ fn add_variable_96(address_space: &mut AddressSpace) { let name = "InvalidUri"; let value = Variant::Empty; let node_id = NodeId::new(0, 2084); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2082), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2082), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_97(address_space: &mut AddressSpace) { @@ -1580,12 +3321,35 @@ fn add_variable_97(address_space: &mut AddressSpace) { let name = "NodesToAdd"; let value = Variant::Empty; let node_id = NodeId::new(0, 2092); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 376), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2091), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 376), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2091), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_98(address_space: &mut AddressSpace) { @@ -1593,12 +3357,35 @@ fn add_variable_98(address_space: &mut AddressSpace) { let name = "NodesToDelete"; let value = Variant::Empty; let node_id = NodeId::new(0, 2094); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 382), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2093), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 382), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2093), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_99(address_space: &mut AddressSpace) { @@ -1606,12 +3393,35 @@ fn add_variable_99(address_space: &mut AddressSpace) { let name = "ReferencesToAdd"; let value = Variant::Empty; let node_id = NodeId::new(0, 2096); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 379), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2095), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 379), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2095), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_100(address_space: &mut AddressSpace) { @@ -1619,11 +3429,33 @@ fn add_variable_100(address_space: &mut AddressSpace) { let name = "ReferencesToDelete"; let value = Variant::Empty; let node_id = NodeId::new(0, 2098); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 385), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2097), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 385), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2097), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } - diff --git a/server/src/address_space/generated/nodeset_5_7.rs b/server/src/address_space/generated/nodeset_5_7.rs index 93f365168..6b933231b 100644 --- a/server/src/address_space/generated/nodeset_5_7.rs +++ b/server/src/address_space/generated/nodeset_5_7.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.NodeSet2.Part5.xml by tools/schema/gen_address_space.js // DO NOT EDIT THIS FILE @@ -9,8 +9,11 @@ use std::{convert::TryFrom, str::FromStr}; #[allow(unused_imports)] use crate::{ - address_space::{EventNotifier, types::*}, - prelude::{DataTypeId, ExtensionObject, LocalizedText, NodeId, ReferenceTypeId, service_types::Argument, UAString, Variant, VariantTypeId} + address_space::{types::*, EventNotifier}, + prelude::{ + service_types::Argument, DataTypeId, ExtensionObject, LocalizedText, NodeId, + ReferenceTypeId, UAString, Variant, VariantTypeId, + }, }; #[allow(unused_variables)] @@ -123,11 +126,26 @@ fn add_variable_1(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2750); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2100), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2100), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_2(address_space: &mut AddressSpace) { @@ -135,12 +153,28 @@ fn add_variable_2(address_space: &mut AddressSpace) { let name = "IndexRange"; let value = Variant::Empty; let node_id = NodeId::new(0, 2101); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 291), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2100), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 291), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2100), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_3(address_space: &mut AddressSpace) { @@ -148,12 +182,28 @@ fn add_variable_3(address_space: &mut AddressSpace) { let name = "OldValue"; let value = Variant::Empty; let node_id = NodeId::new(0, 2102); - let node = Variable::new_data_value(&node_id, name, name, DataTypeId::Boolean, None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2100), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, DataTypeId::Boolean, None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2100), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_4(address_space: &mut AddressSpace) { @@ -161,12 +211,28 @@ fn add_variable_4(address_space: &mut AddressSpace) { let name = "NewValue"; let value = Variant::Empty; let node_id = NodeId::new(0, 2103); - let node = Variable::new_data_value(&node_id, name, name, DataTypeId::Boolean, None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2100), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, DataTypeId::Boolean, None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2100), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_5(address_space: &mut AddressSpace) { @@ -174,12 +240,28 @@ fn add_variable_5(address_space: &mut AddressSpace) { let name = "ParameterDataTypeId"; let value = Variant::Empty; let node_id = NodeId::new(0, 2751); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2104), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2104), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_6(address_space: &mut AddressSpace) { @@ -187,12 +269,28 @@ fn add_variable_6(address_space: &mut AddressSpace) { let name = "MethodId"; let value = Variant::Empty; let node_id = NodeId::new(0, 2128); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2127), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2127), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_7(address_space: &mut AddressSpace) { @@ -200,12 +298,35 @@ fn add_variable_7(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = Variant::Empty; let node_id = NodeId::new(0, 2129); - let node = Variable::new_data_value(&node_id, name, name, DataTypeId::Boolean, Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2127), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + DataTypeId::Boolean, + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2127), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_8(address_space: &mut AddressSpace) { @@ -213,12 +334,28 @@ fn add_variable_8(address_space: &mut AddressSpace) { let name = "SystemState"; let value = Variant::Empty; let node_id = NodeId::new(0, 11696); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 852), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11446), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 852), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11446), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_9(address_space: &mut AddressSpace) { @@ -226,12 +363,35 @@ fn add_variable_9(address_space: &mut AddressSpace) { let name = "Changes"; let value = Variant::Empty; let node_id = NodeId::new(0, 2134); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 877), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2133), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 877), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2133), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_10(address_space: &mut AddressSpace) { @@ -239,12 +399,35 @@ fn add_variable_10(address_space: &mut AddressSpace) { let name = "Changes"; let value = Variant::Empty; let node_id = NodeId::new(0, 2739); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 897), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2738), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 897), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2738), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_11(address_space: &mut AddressSpace) { @@ -252,12 +435,28 @@ fn add_variable_11(address_space: &mut AddressSpace) { let name = "Context"; let value = Variant::Empty; let node_id = NodeId::new(0, 12502); - let node = Variable::new_data_value(&node_id, name, name, DataTypeId::Boolean, None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11436), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, DataTypeId::Boolean, None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11436), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_12(address_space: &mut AddressSpace) { @@ -266,11 +465,26 @@ fn add_variable_12(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 12503); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11436), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11436), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_13(address_space: &mut AddressSpace) { @@ -278,12 +492,28 @@ fn add_variable_13(address_space: &mut AddressSpace) { let name = "StartTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 2139); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2138), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2138), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_14(address_space: &mut AddressSpace) { @@ -291,12 +521,28 @@ fn add_variable_14(address_space: &mut AddressSpace) { let name = "CurrentTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 2140); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2138), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2138), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_15(address_space: &mut AddressSpace) { @@ -304,12 +550,28 @@ fn add_variable_15(address_space: &mut AddressSpace) { let name = "State"; let value = Variant::Empty; let node_id = NodeId::new(0, 2141); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 852), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2138), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 852), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2138), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_16(address_space: &mut AddressSpace) { @@ -317,18 +579,58 @@ fn add_variable_16(address_space: &mut AddressSpace) { let name = "BuildInfo"; let value = Variant::Empty; let node_id = NodeId::new(0, 2142); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 338), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 3698), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3699), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3700), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3701), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3702), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3703), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3051), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2138), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 338), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 3698), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3699), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3700), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3701), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3702), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3703), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3051), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2138), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_17(address_space: &mut AddressSpace) { @@ -336,12 +638,28 @@ fn add_variable_17(address_space: &mut AddressSpace) { let name = "ProductUri"; let value = Variant::Empty; let node_id = NodeId::new(0, 3698); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2142), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2142), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_18(address_space: &mut AddressSpace) { @@ -349,12 +667,28 @@ fn add_variable_18(address_space: &mut AddressSpace) { let name = "ManufacturerName"; let value = Variant::Empty; let node_id = NodeId::new(0, 3699); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2142), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2142), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_19(address_space: &mut AddressSpace) { @@ -362,12 +696,28 @@ fn add_variable_19(address_space: &mut AddressSpace) { let name = "ProductName"; let value = Variant::Empty; let node_id = NodeId::new(0, 3700); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2142), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2142), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_20(address_space: &mut AddressSpace) { @@ -375,12 +725,28 @@ fn add_variable_20(address_space: &mut AddressSpace) { let name = "SoftwareVersion"; let value = Variant::Empty; let node_id = NodeId::new(0, 3701); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2142), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2142), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_21(address_space: &mut AddressSpace) { @@ -388,12 +754,28 @@ fn add_variable_21(address_space: &mut AddressSpace) { let name = "BuildNumber"; let value = Variant::Empty; let node_id = NodeId::new(0, 3702); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2142), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2142), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_22(address_space: &mut AddressSpace) { @@ -401,12 +783,28 @@ fn add_variable_22(address_space: &mut AddressSpace) { let name = "BuildDate"; let value = Variant::Empty; let node_id = NodeId::new(0, 3703); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2142), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2142), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_23(address_space: &mut AddressSpace) { @@ -415,11 +813,26 @@ fn add_variable_23(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2752); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2138), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2138), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_24(address_space: &mut AddressSpace) { @@ -427,12 +840,28 @@ fn add_variable_24(address_space: &mut AddressSpace) { let name = "ShutdownReason"; let value = Variant::Empty; let node_id = NodeId::new(0, 2753); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2138), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2138), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_25(address_space: &mut AddressSpace) { @@ -440,12 +869,28 @@ fn add_variable_25(address_space: &mut AddressSpace) { let name = "ProductUri"; let value = Variant::Empty; let node_id = NodeId::new(0, 3052); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 3051), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3051), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_26(address_space: &mut AddressSpace) { @@ -453,12 +898,28 @@ fn add_variable_26(address_space: &mut AddressSpace) { let name = "ManufacturerName"; let value = Variant::Empty; let node_id = NodeId::new(0, 3053); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 3051), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3051), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_27(address_space: &mut AddressSpace) { @@ -466,12 +927,28 @@ fn add_variable_27(address_space: &mut AddressSpace) { let name = "ProductName"; let value = Variant::Empty; let node_id = NodeId::new(0, 3054); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 3051), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3051), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_28(address_space: &mut AddressSpace) { @@ -479,12 +956,28 @@ fn add_variable_28(address_space: &mut AddressSpace) { let name = "SoftwareVersion"; let value = Variant::Empty; let node_id = NodeId::new(0, 3055); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 3051), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3051), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_29(address_space: &mut AddressSpace) { @@ -492,12 +985,28 @@ fn add_variable_29(address_space: &mut AddressSpace) { let name = "BuildNumber"; let value = Variant::Empty; let node_id = NodeId::new(0, 3056); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 3051), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3051), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_30(address_space: &mut AddressSpace) { @@ -505,12 +1014,28 @@ fn add_variable_30(address_space: &mut AddressSpace) { let name = "BuildDate"; let value = Variant::Empty; let node_id = NodeId::new(0, 3057); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 3051), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3051), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_31(address_space: &mut AddressSpace) { @@ -519,11 +1044,26 @@ fn add_variable_31(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2151); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2150), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2150), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_32(address_space: &mut AddressSpace) { @@ -532,11 +1072,26 @@ fn add_variable_32(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2152); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2150), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2150), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_33(address_space: &mut AddressSpace) { @@ -545,11 +1100,26 @@ fn add_variable_33(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2153); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2150), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2150), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_34(address_space: &mut AddressSpace) { @@ -558,11 +1128,26 @@ fn add_variable_34(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2154); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2150), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2150), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_35(address_space: &mut AddressSpace) { @@ -571,11 +1156,26 @@ fn add_variable_35(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2155); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2150), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2150), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_36(address_space: &mut AddressSpace) { @@ -584,11 +1184,26 @@ fn add_variable_36(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2156); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2150), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2150), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_37(address_space: &mut AddressSpace) { @@ -597,11 +1212,26 @@ fn add_variable_37(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2157); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2150), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2150), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_38(address_space: &mut AddressSpace) { @@ -610,11 +1240,26 @@ fn add_variable_38(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2159); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2150), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2150), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_39(address_space: &mut AddressSpace) { @@ -623,11 +1268,26 @@ fn add_variable_39(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2160); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2150), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2150), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_40(address_space: &mut AddressSpace) { @@ -636,11 +1296,26 @@ fn add_variable_40(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2161); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2150), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2150), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_41(address_space: &mut AddressSpace) { @@ -649,11 +1324,26 @@ fn add_variable_41(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2162); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2150), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2150), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_42(address_space: &mut AddressSpace) { @@ -662,11 +1352,26 @@ fn add_variable_42(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2163); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2150), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2150), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_43(address_space: &mut AddressSpace) { @@ -674,16 +1379,48 @@ fn add_variable_43(address_space: &mut AddressSpace) { let name = "SamplingIntervalDiagnostics"; let value = Variant::Empty; let node_id = NodeId::new(0, 12779); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 856), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12780), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12781), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12782), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12783), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2165), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 83), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2164), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 856), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12780), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12781), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12782), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12783), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2165), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 83), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2164), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_44(address_space: &mut AddressSpace) { @@ -691,12 +1428,28 @@ fn add_variable_44(address_space: &mut AddressSpace) { let name = "SamplingInterval"; let value = Variant::Empty; let node_id = NodeId::new(0, 12780); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12779), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12779), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_45(address_space: &mut AddressSpace) { @@ -705,11 +1458,26 @@ fn add_variable_45(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 12781); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12779), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12779), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_46(address_space: &mut AddressSpace) { @@ -718,11 +1486,26 @@ fn add_variable_46(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 12782); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12779), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12779), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_47(address_space: &mut AddressSpace) { @@ -731,11 +1514,26 @@ fn add_variable_47(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 12783); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12779), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12779), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_48(address_space: &mut AddressSpace) { @@ -743,12 +1541,28 @@ fn add_variable_48(address_space: &mut AddressSpace) { let name = "SamplingInterval"; let value = Variant::Empty; let node_id = NodeId::new(0, 2166); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2165), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2165), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_49(address_space: &mut AddressSpace) { @@ -757,11 +1571,26 @@ fn add_variable_49(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11697); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2165), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2165), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_50(address_space: &mut AddressSpace) { @@ -770,11 +1599,26 @@ fn add_variable_50(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11698); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2165), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2165), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_51(address_space: &mut AddressSpace) { @@ -783,11 +1627,26 @@ fn add_variable_51(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11699); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2165), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2165), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_52(address_space: &mut AddressSpace) { @@ -795,43 +1654,183 @@ fn add_variable_52(address_space: &mut AddressSpace) { let name = "SubscriptionDiagnostics"; let value = Variant::Empty; let node_id = NodeId::new(0, 12784); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 874), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12785), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12786), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12787), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12788), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12789), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12790), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12791), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12792), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12793), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12794), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12795), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12796), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12797), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12798), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12799), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12800), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12801), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12802), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12803), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12804), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12805), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12806), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12807), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12808), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12809), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12810), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12811), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12812), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12813), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12814), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12815), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2172), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 83), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2171), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 874), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12785), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12786), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12787), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12788), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12789), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12790), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12791), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12792), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12793), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12794), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12795), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12796), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12797), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12798), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12799), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12800), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12801), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12802), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12803), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12804), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12805), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12806), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12807), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12808), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12809), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12810), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12811), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12812), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12813), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12814), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12815), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2172), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 83), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2171), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_53(address_space: &mut AddressSpace) { @@ -839,12 +1838,28 @@ fn add_variable_53(address_space: &mut AddressSpace) { let name = "SessionId"; let value = Variant::Empty; let node_id = NodeId::new(0, 12785); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12784), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12784), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_54(address_space: &mut AddressSpace) { @@ -853,11 +1868,26 @@ fn add_variable_54(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 12786); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12784), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12784), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_55(address_space: &mut AddressSpace) { @@ -866,11 +1896,26 @@ fn add_variable_55(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 12787); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 3), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12784), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12784), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_56(address_space: &mut AddressSpace) { @@ -878,12 +1923,28 @@ fn add_variable_56(address_space: &mut AddressSpace) { let name = "PublishingInterval"; let value = Variant::Empty; let node_id = NodeId::new(0, 12788); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12784), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12784), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_57(address_space: &mut AddressSpace) { @@ -892,11 +1953,26 @@ fn add_variable_57(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 12789); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12784), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12784), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_58(address_space: &mut AddressSpace) { @@ -905,11 +1981,26 @@ fn add_variable_58(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 12790); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12784), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12784), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_59(address_space: &mut AddressSpace) { @@ -918,11 +2009,26 @@ fn add_variable_59(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 12791); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12784), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12784), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_60(address_space: &mut AddressSpace) { @@ -931,11 +2037,26 @@ fn add_variable_60(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 12792); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12784), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12784), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_61(address_space: &mut AddressSpace) { @@ -944,11 +2065,26 @@ fn add_variable_61(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 12793); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12784), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12784), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_62(address_space: &mut AddressSpace) { @@ -957,11 +2093,26 @@ fn add_variable_62(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 12794); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12784), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12784), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_63(address_space: &mut AddressSpace) { @@ -970,11 +2121,26 @@ fn add_variable_63(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 12795); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12784), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12784), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_64(address_space: &mut AddressSpace) { @@ -983,11 +2149,26 @@ fn add_variable_64(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 12796); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12784), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12784), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_65(address_space: &mut AddressSpace) { @@ -996,11 +2177,26 @@ fn add_variable_65(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 12797); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12784), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12784), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_66(address_space: &mut AddressSpace) { @@ -1009,11 +2205,26 @@ fn add_variable_66(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 12798); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12784), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12784), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_67(address_space: &mut AddressSpace) { @@ -1022,11 +2233,26 @@ fn add_variable_67(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 12799); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12784), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12784), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_68(address_space: &mut AddressSpace) { @@ -1035,11 +2261,26 @@ fn add_variable_68(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 12800); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12784), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12784), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_69(address_space: &mut AddressSpace) { @@ -1048,11 +2289,26 @@ fn add_variable_69(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 12801); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12784), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12784), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_70(address_space: &mut AddressSpace) { @@ -1061,11 +2317,26 @@ fn add_variable_70(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 12802); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12784), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12784), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_71(address_space: &mut AddressSpace) { @@ -1074,11 +2345,26 @@ fn add_variable_71(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 12803); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12784), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12784), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_72(address_space: &mut AddressSpace) { @@ -1087,11 +2373,26 @@ fn add_variable_72(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 12804); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12784), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12784), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_73(address_space: &mut AddressSpace) { @@ -1100,11 +2401,26 @@ fn add_variable_73(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 12805); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12784), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12784), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_74(address_space: &mut AddressSpace) { @@ -1113,11 +2429,26 @@ fn add_variable_74(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 12806); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12784), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12784), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_75(address_space: &mut AddressSpace) { @@ -1126,11 +2457,26 @@ fn add_variable_75(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 12807); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12784), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12784), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_76(address_space: &mut AddressSpace) { @@ -1139,11 +2485,26 @@ fn add_variable_76(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 12808); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12784), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12784), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_77(address_space: &mut AddressSpace) { @@ -1152,11 +2513,26 @@ fn add_variable_77(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 12809); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12784), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12784), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_78(address_space: &mut AddressSpace) { @@ -1165,11 +2541,26 @@ fn add_variable_78(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 12810); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12784), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12784), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_79(address_space: &mut AddressSpace) { @@ -1178,11 +2569,26 @@ fn add_variable_79(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 12811); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12784), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12784), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_80(address_space: &mut AddressSpace) { @@ -1191,11 +2597,26 @@ fn add_variable_80(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 12812); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12784), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12784), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_81(address_space: &mut AddressSpace) { @@ -1204,11 +2625,26 @@ fn add_variable_81(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 12813); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12784), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12784), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_82(address_space: &mut AddressSpace) { @@ -1217,11 +2653,26 @@ fn add_variable_82(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 12814); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12784), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12784), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_83(address_space: &mut AddressSpace) { @@ -1230,11 +2681,26 @@ fn add_variable_83(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 12815); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12784), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12784), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_84(address_space: &mut AddressSpace) { @@ -1242,12 +2708,28 @@ fn add_variable_84(address_space: &mut AddressSpace) { let name = "SessionId"; let value = Variant::Empty; let node_id = NodeId::new(0, 2173); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2172), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2172), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_85(address_space: &mut AddressSpace) { @@ -1256,11 +2738,26 @@ fn add_variable_85(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2174); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2172), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2172), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_86(address_space: &mut AddressSpace) { @@ -1269,11 +2766,26 @@ fn add_variable_86(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2175); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 3), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2172), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2172), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_87(address_space: &mut AddressSpace) { @@ -1281,12 +2793,28 @@ fn add_variable_87(address_space: &mut AddressSpace) { let name = "PublishingInterval"; let value = Variant::Empty; let node_id = NodeId::new(0, 2176); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2172), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2172), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_88(address_space: &mut AddressSpace) { @@ -1295,11 +2823,26 @@ fn add_variable_88(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2177); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2172), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2172), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_89(address_space: &mut AddressSpace) { @@ -1308,11 +2851,26 @@ fn add_variable_89(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 8888); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2172), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2172), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_90(address_space: &mut AddressSpace) { @@ -1321,11 +2879,26 @@ fn add_variable_90(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2179); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2172), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2172), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_91(address_space: &mut AddressSpace) { @@ -1334,11 +2907,26 @@ fn add_variable_91(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2180); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2172), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2172), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_92(address_space: &mut AddressSpace) { @@ -1347,11 +2935,26 @@ fn add_variable_92(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2181); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2172), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2172), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_93(address_space: &mut AddressSpace) { @@ -1360,11 +2963,26 @@ fn add_variable_93(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2182); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2172), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2172), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_94(address_space: &mut AddressSpace) { @@ -1373,11 +2991,26 @@ fn add_variable_94(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2183); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2172), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2172), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_95(address_space: &mut AddressSpace) { @@ -1386,11 +3019,26 @@ fn add_variable_95(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2184); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2172), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2172), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_96(address_space: &mut AddressSpace) { @@ -1399,11 +3047,26 @@ fn add_variable_96(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2185); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2172), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2172), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_97(address_space: &mut AddressSpace) { @@ -1412,11 +3075,26 @@ fn add_variable_97(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2186); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2172), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2172), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_98(address_space: &mut AddressSpace) { @@ -1425,11 +3103,26 @@ fn add_variable_98(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2187); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2172), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2172), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_99(address_space: &mut AddressSpace) { @@ -1438,11 +3131,26 @@ fn add_variable_99(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2188); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2172), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2172), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_100(address_space: &mut AddressSpace) { @@ -1451,10 +3159,24 @@ fn add_variable_100(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2189); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2172), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2172), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } - diff --git a/server/src/address_space/generated/nodeset_5_8.rs b/server/src/address_space/generated/nodeset_5_8.rs index 5d8c8f29a..ba6a489e1 100644 --- a/server/src/address_space/generated/nodeset_5_8.rs +++ b/server/src/address_space/generated/nodeset_5_8.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.NodeSet2.Part5.xml by tools/schema/gen_address_space.js // DO NOT EDIT THIS FILE @@ -9,8 +9,11 @@ use std::{convert::TryFrom, str::FromStr}; #[allow(unused_imports)] use crate::{ - address_space::{EventNotifier, types::*}, - prelude::{DataTypeId, ExtensionObject, LocalizedText, NodeId, ReferenceTypeId, service_types::Argument, UAString, Variant, VariantTypeId} + address_space::{types::*, EventNotifier}, + prelude::{ + service_types::Argument, DataTypeId, ExtensionObject, LocalizedText, NodeId, + ReferenceTypeId, UAString, Variant, VariantTypeId, + }, }; #[allow(unused_variables)] @@ -123,11 +126,26 @@ fn add_variable_1(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2190); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2172), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2172), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_2(address_space: &mut AddressSpace) { @@ -136,11 +154,26 @@ fn add_variable_2(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2191); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2172), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2172), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_3(address_space: &mut AddressSpace) { @@ -149,11 +182,26 @@ fn add_variable_3(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2998); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2172), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2172), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_4(address_space: &mut AddressSpace) { @@ -162,11 +210,26 @@ fn add_variable_4(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2193); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2172), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2172), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_5(address_space: &mut AddressSpace) { @@ -175,11 +238,26 @@ fn add_variable_5(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 8889); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2172), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2172), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_6(address_space: &mut AddressSpace) { @@ -188,11 +266,26 @@ fn add_variable_6(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 8890); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2172), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2172), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_7(address_space: &mut AddressSpace) { @@ -201,11 +294,26 @@ fn add_variable_7(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 8891); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2172), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2172), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_8(address_space: &mut AddressSpace) { @@ -214,11 +322,26 @@ fn add_variable_8(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 8892); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2172), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2172), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_9(address_space: &mut AddressSpace) { @@ -227,11 +350,26 @@ fn add_variable_9(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 8893); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2172), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2172), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_10(address_space: &mut AddressSpace) { @@ -240,11 +378,26 @@ fn add_variable_10(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 8894); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2172), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2172), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_11(address_space: &mut AddressSpace) { @@ -253,11 +406,26 @@ fn add_variable_11(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 8895); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2172), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2172), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_12(address_space: &mut AddressSpace) { @@ -266,11 +434,26 @@ fn add_variable_12(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 8896); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2172), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2172), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_13(address_space: &mut AddressSpace) { @@ -279,11 +462,26 @@ fn add_variable_13(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 8897); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2172), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2172), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_14(address_space: &mut AddressSpace) { @@ -292,11 +490,26 @@ fn add_variable_14(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 8902); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2172), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2172), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_15(address_space: &mut AddressSpace) { @@ -304,55 +517,243 @@ fn add_variable_15(address_space: &mut AddressSpace) { let name = "SessionDiagnostics"; let value = Variant::Empty; let node_id = NodeId::new(0, 12816); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 865), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12817), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12818), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12819), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12820), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12821), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12822), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12823), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12824), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12825), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12826), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12827), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12828), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12829), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12830), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12831), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12832), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12833), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12834), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12835), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12836), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12837), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12838), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12839), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12840), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12841), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12842), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12843), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12844), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12845), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12846), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12847), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12848), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12849), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12850), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12851), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12852), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12853), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12854), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12855), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12856), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12857), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12858), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12859), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2197), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 83), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2196), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 865), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12817), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12818), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12819), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12820), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12821), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12822), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12823), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12824), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12825), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12826), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12827), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12828), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12829), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12830), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12831), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12832), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12833), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12834), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12835), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12836), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12837), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12838), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12839), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12840), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12841), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12842), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12843), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12844), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12845), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12846), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12847), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12848), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12849), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12850), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12851), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12852), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12853), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12854), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12855), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12856), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12857), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12858), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12859), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2197), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 83), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2196), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_16(address_space: &mut AddressSpace) { @@ -360,12 +761,28 @@ fn add_variable_16(address_space: &mut AddressSpace) { let name = "SessionId"; let value = Variant::Empty; let node_id = NodeId::new(0, 12817); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12816), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12816), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_17(address_space: &mut AddressSpace) { @@ -373,12 +790,28 @@ fn add_variable_17(address_space: &mut AddressSpace) { let name = "SessionName"; let value = Variant::Empty; let node_id = NodeId::new(0, 12818); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12816), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12816), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_18(address_space: &mut AddressSpace) { @@ -386,12 +819,28 @@ fn add_variable_18(address_space: &mut AddressSpace) { let name = "ClientDescription"; let value = Variant::Empty; let node_id = NodeId::new(0, 12819); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 308), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12816), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 308), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12816), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_19(address_space: &mut AddressSpace) { @@ -399,12 +848,28 @@ fn add_variable_19(address_space: &mut AddressSpace) { let name = "ServerUri"; let value = Variant::Empty; let node_id = NodeId::new(0, 12820); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12816), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12816), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_20(address_space: &mut AddressSpace) { @@ -412,12 +877,28 @@ fn add_variable_20(address_space: &mut AddressSpace) { let name = "EndpointUrl"; let value = Variant::Empty; let node_id = NodeId::new(0, 12821); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12816), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12816), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_21(address_space: &mut AddressSpace) { @@ -425,12 +906,35 @@ fn add_variable_21(address_space: &mut AddressSpace) { let name = "LocaleIds"; let value = Variant::Empty; let node_id = NodeId::new(0, 12822); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 295), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12816), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 295), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12816), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_22(address_space: &mut AddressSpace) { @@ -438,12 +942,28 @@ fn add_variable_22(address_space: &mut AddressSpace) { let name = "ActualSessionTimeout"; let value = Variant::Empty; let node_id = NodeId::new(0, 12823); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12816), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12816), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_23(address_space: &mut AddressSpace) { @@ -452,11 +972,26 @@ fn add_variable_23(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 12824); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12816), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12816), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_24(address_space: &mut AddressSpace) { @@ -464,12 +999,28 @@ fn add_variable_24(address_space: &mut AddressSpace) { let name = "ClientConnectionTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 12825); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12816), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12816), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_25(address_space: &mut AddressSpace) { @@ -477,12 +1028,28 @@ fn add_variable_25(address_space: &mut AddressSpace) { let name = "ClientLastContactTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 12826); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12816), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12816), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_26(address_space: &mut AddressSpace) { @@ -491,11 +1058,26 @@ fn add_variable_26(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 12827); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12816), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12816), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_27(address_space: &mut AddressSpace) { @@ -504,11 +1086,26 @@ fn add_variable_27(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 12828); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12816), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12816), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_28(address_space: &mut AddressSpace) { @@ -517,11 +1114,26 @@ fn add_variable_28(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 12829); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12816), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12816), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_29(address_space: &mut AddressSpace) { @@ -529,12 +1141,28 @@ fn add_variable_29(address_space: &mut AddressSpace) { let name = "TotalRequestCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 12830); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12816), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12816), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_30(address_space: &mut AddressSpace) { @@ -543,11 +1171,26 @@ fn add_variable_30(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 12831); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12816), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12816), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_31(address_space: &mut AddressSpace) { @@ -555,12 +1198,28 @@ fn add_variable_31(address_space: &mut AddressSpace) { let name = "ReadCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 12832); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12816), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12816), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_32(address_space: &mut AddressSpace) { @@ -568,12 +1227,28 @@ fn add_variable_32(address_space: &mut AddressSpace) { let name = "HistoryReadCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 12833); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12816), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12816), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_33(address_space: &mut AddressSpace) { @@ -581,12 +1256,28 @@ fn add_variable_33(address_space: &mut AddressSpace) { let name = "WriteCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 12834); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12816), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12816), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_34(address_space: &mut AddressSpace) { @@ -594,12 +1285,28 @@ fn add_variable_34(address_space: &mut AddressSpace) { let name = "HistoryUpdateCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 12835); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12816), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12816), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_35(address_space: &mut AddressSpace) { @@ -607,12 +1314,28 @@ fn add_variable_35(address_space: &mut AddressSpace) { let name = "CallCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 12836); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12816), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12816), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_36(address_space: &mut AddressSpace) { @@ -620,12 +1343,28 @@ fn add_variable_36(address_space: &mut AddressSpace) { let name = "CreateMonitoredItemsCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 12837); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12816), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12816), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_37(address_space: &mut AddressSpace) { @@ -633,12 +1372,28 @@ fn add_variable_37(address_space: &mut AddressSpace) { let name = "ModifyMonitoredItemsCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 12838); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12816), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12816), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_38(address_space: &mut AddressSpace) { @@ -646,12 +1401,28 @@ fn add_variable_38(address_space: &mut AddressSpace) { let name = "SetMonitoringModeCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 12839); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12816), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12816), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_39(address_space: &mut AddressSpace) { @@ -659,12 +1430,28 @@ fn add_variable_39(address_space: &mut AddressSpace) { let name = "SetTriggeringCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 12840); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12816), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12816), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_40(address_space: &mut AddressSpace) { @@ -672,12 +1459,28 @@ fn add_variable_40(address_space: &mut AddressSpace) { let name = "DeleteMonitoredItemsCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 12841); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12816), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12816), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_41(address_space: &mut AddressSpace) { @@ -685,12 +1488,28 @@ fn add_variable_41(address_space: &mut AddressSpace) { let name = "CreateSubscriptionCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 12842); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12816), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12816), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_42(address_space: &mut AddressSpace) { @@ -698,12 +1517,28 @@ fn add_variable_42(address_space: &mut AddressSpace) { let name = "ModifySubscriptionCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 12843); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12816), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12816), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_43(address_space: &mut AddressSpace) { @@ -711,12 +1546,28 @@ fn add_variable_43(address_space: &mut AddressSpace) { let name = "SetPublishingModeCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 12844); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12816), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12816), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_44(address_space: &mut AddressSpace) { @@ -724,12 +1575,28 @@ fn add_variable_44(address_space: &mut AddressSpace) { let name = "PublishCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 12845); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12816), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12816), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_45(address_space: &mut AddressSpace) { @@ -737,12 +1604,28 @@ fn add_variable_45(address_space: &mut AddressSpace) { let name = "RepublishCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 12846); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12816), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12816), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_46(address_space: &mut AddressSpace) { @@ -750,12 +1633,28 @@ fn add_variable_46(address_space: &mut AddressSpace) { let name = "TransferSubscriptionsCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 12847); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12816), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12816), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_47(address_space: &mut AddressSpace) { @@ -763,12 +1662,28 @@ fn add_variable_47(address_space: &mut AddressSpace) { let name = "DeleteSubscriptionsCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 12848); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12816), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12816), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_48(address_space: &mut AddressSpace) { @@ -776,12 +1691,28 @@ fn add_variable_48(address_space: &mut AddressSpace) { let name = "AddNodesCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 12849); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12816), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12816), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_49(address_space: &mut AddressSpace) { @@ -789,12 +1720,28 @@ fn add_variable_49(address_space: &mut AddressSpace) { let name = "AddReferencesCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 12850); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12816), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12816), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_50(address_space: &mut AddressSpace) { @@ -802,12 +1749,28 @@ fn add_variable_50(address_space: &mut AddressSpace) { let name = "DeleteNodesCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 12851); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12816), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12816), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_51(address_space: &mut AddressSpace) { @@ -815,12 +1778,28 @@ fn add_variable_51(address_space: &mut AddressSpace) { let name = "DeleteReferencesCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 12852); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12816), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12816), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_52(address_space: &mut AddressSpace) { @@ -828,12 +1807,28 @@ fn add_variable_52(address_space: &mut AddressSpace) { let name = "BrowseCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 12853); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12816), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12816), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_53(address_space: &mut AddressSpace) { @@ -841,12 +1836,28 @@ fn add_variable_53(address_space: &mut AddressSpace) { let name = "BrowseNextCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 12854); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12816), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12816), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_54(address_space: &mut AddressSpace) { @@ -854,12 +1865,28 @@ fn add_variable_54(address_space: &mut AddressSpace) { let name = "TranslateBrowsePathsToNodeIdsCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 12855); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12816), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12816), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_55(address_space: &mut AddressSpace) { @@ -867,12 +1894,28 @@ fn add_variable_55(address_space: &mut AddressSpace) { let name = "QueryFirstCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 12856); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12816), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12816), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_56(address_space: &mut AddressSpace) { @@ -880,12 +1923,28 @@ fn add_variable_56(address_space: &mut AddressSpace) { let name = "QueryNextCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 12857); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12816), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12816), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_57(address_space: &mut AddressSpace) { @@ -893,12 +1952,28 @@ fn add_variable_57(address_space: &mut AddressSpace) { let name = "RegisterNodesCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 12858); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12816), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12816), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_58(address_space: &mut AddressSpace) { @@ -906,12 +1981,28 @@ fn add_variable_58(address_space: &mut AddressSpace) { let name = "UnregisterNodesCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 12859); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12816), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12816), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_59(address_space: &mut AddressSpace) { @@ -919,12 +2010,28 @@ fn add_variable_59(address_space: &mut AddressSpace) { let name = "SessionId"; let value = Variant::Empty; let node_id = NodeId::new(0, 2198); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2197), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2197), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_60(address_space: &mut AddressSpace) { @@ -932,12 +2039,28 @@ fn add_variable_60(address_space: &mut AddressSpace) { let name = "SessionName"; let value = Variant::Empty; let node_id = NodeId::new(0, 2199); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2197), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2197), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_61(address_space: &mut AddressSpace) { @@ -945,12 +2068,28 @@ fn add_variable_61(address_space: &mut AddressSpace) { let name = "ClientDescription"; let value = Variant::Empty; let node_id = NodeId::new(0, 2200); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 308), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2197), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 308), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2197), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_62(address_space: &mut AddressSpace) { @@ -958,12 +2097,28 @@ fn add_variable_62(address_space: &mut AddressSpace) { let name = "ServerUri"; let value = Variant::Empty; let node_id = NodeId::new(0, 2201); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2197), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2197), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_63(address_space: &mut AddressSpace) { @@ -971,12 +2126,28 @@ fn add_variable_63(address_space: &mut AddressSpace) { let name = "EndpointUrl"; let value = Variant::Empty; let node_id = NodeId::new(0, 2202); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2197), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2197), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_64(address_space: &mut AddressSpace) { @@ -984,12 +2155,35 @@ fn add_variable_64(address_space: &mut AddressSpace) { let name = "LocaleIds"; let value = Variant::Empty; let node_id = NodeId::new(0, 2203); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 295), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2197), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 295), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2197), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_65(address_space: &mut AddressSpace) { @@ -997,12 +2191,28 @@ fn add_variable_65(address_space: &mut AddressSpace) { let name = "ActualSessionTimeout"; let value = Variant::Empty; let node_id = NodeId::new(0, 2204); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2197), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2197), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_66(address_space: &mut AddressSpace) { @@ -1011,11 +2221,26 @@ fn add_variable_66(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 3050); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2197), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2197), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_67(address_space: &mut AddressSpace) { @@ -1023,12 +2248,28 @@ fn add_variable_67(address_space: &mut AddressSpace) { let name = "ClientConnectionTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 2205); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2197), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2197), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_68(address_space: &mut AddressSpace) { @@ -1036,12 +2277,28 @@ fn add_variable_68(address_space: &mut AddressSpace) { let name = "ClientLastContactTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 2206); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2197), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2197), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_69(address_space: &mut AddressSpace) { @@ -1050,11 +2307,26 @@ fn add_variable_69(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2207); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2197), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2197), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_70(address_space: &mut AddressSpace) { @@ -1063,11 +2335,26 @@ fn add_variable_70(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2208); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2197), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2197), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_71(address_space: &mut AddressSpace) { @@ -1076,11 +2363,26 @@ fn add_variable_71(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2209); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2197), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2197), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_72(address_space: &mut AddressSpace) { @@ -1088,12 +2390,28 @@ fn add_variable_72(address_space: &mut AddressSpace) { let name = "TotalRequestCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 8900); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2197), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2197), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_73(address_space: &mut AddressSpace) { @@ -1102,11 +2420,26 @@ fn add_variable_73(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11892); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2197), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2197), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_74(address_space: &mut AddressSpace) { @@ -1114,12 +2447,28 @@ fn add_variable_74(address_space: &mut AddressSpace) { let name = "ReadCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 2217); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2197), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2197), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_75(address_space: &mut AddressSpace) { @@ -1127,12 +2476,28 @@ fn add_variable_75(address_space: &mut AddressSpace) { let name = "HistoryReadCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 2218); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2197), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2197), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_76(address_space: &mut AddressSpace) { @@ -1140,12 +2505,28 @@ fn add_variable_76(address_space: &mut AddressSpace) { let name = "WriteCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 2219); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2197), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2197), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_77(address_space: &mut AddressSpace) { @@ -1153,12 +2534,28 @@ fn add_variable_77(address_space: &mut AddressSpace) { let name = "HistoryUpdateCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 2220); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2197), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2197), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_78(address_space: &mut AddressSpace) { @@ -1166,12 +2563,28 @@ fn add_variable_78(address_space: &mut AddressSpace) { let name = "CallCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 2221); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2197), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2197), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_79(address_space: &mut AddressSpace) { @@ -1179,12 +2592,28 @@ fn add_variable_79(address_space: &mut AddressSpace) { let name = "CreateMonitoredItemsCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 2222); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2197), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2197), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_80(address_space: &mut AddressSpace) { @@ -1192,12 +2621,28 @@ fn add_variable_80(address_space: &mut AddressSpace) { let name = "ModifyMonitoredItemsCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 2223); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2197), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2197), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_81(address_space: &mut AddressSpace) { @@ -1205,12 +2650,28 @@ fn add_variable_81(address_space: &mut AddressSpace) { let name = "SetMonitoringModeCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 2224); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2197), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2197), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_82(address_space: &mut AddressSpace) { @@ -1218,12 +2679,28 @@ fn add_variable_82(address_space: &mut AddressSpace) { let name = "SetTriggeringCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 2225); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2197), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2197), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_83(address_space: &mut AddressSpace) { @@ -1231,12 +2708,28 @@ fn add_variable_83(address_space: &mut AddressSpace) { let name = "DeleteMonitoredItemsCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 2226); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2197), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2197), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_84(address_space: &mut AddressSpace) { @@ -1244,12 +2737,28 @@ fn add_variable_84(address_space: &mut AddressSpace) { let name = "CreateSubscriptionCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 2227); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2197), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2197), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_85(address_space: &mut AddressSpace) { @@ -1257,12 +2766,28 @@ fn add_variable_85(address_space: &mut AddressSpace) { let name = "ModifySubscriptionCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 2228); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2197), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2197), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_86(address_space: &mut AddressSpace) { @@ -1270,12 +2795,28 @@ fn add_variable_86(address_space: &mut AddressSpace) { let name = "SetPublishingModeCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 2229); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2197), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2197), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_87(address_space: &mut AddressSpace) { @@ -1283,12 +2824,28 @@ fn add_variable_87(address_space: &mut AddressSpace) { let name = "PublishCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 2230); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2197), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2197), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_88(address_space: &mut AddressSpace) { @@ -1296,12 +2853,28 @@ fn add_variable_88(address_space: &mut AddressSpace) { let name = "RepublishCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 2231); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2197), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2197), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_89(address_space: &mut AddressSpace) { @@ -1309,12 +2882,28 @@ fn add_variable_89(address_space: &mut AddressSpace) { let name = "TransferSubscriptionsCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 2232); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2197), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2197), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_90(address_space: &mut AddressSpace) { @@ -1322,12 +2911,28 @@ fn add_variable_90(address_space: &mut AddressSpace) { let name = "DeleteSubscriptionsCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 2233); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2197), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2197), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_91(address_space: &mut AddressSpace) { @@ -1335,12 +2940,28 @@ fn add_variable_91(address_space: &mut AddressSpace) { let name = "AddNodesCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 2234); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2197), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2197), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_92(address_space: &mut AddressSpace) { @@ -1348,12 +2969,28 @@ fn add_variable_92(address_space: &mut AddressSpace) { let name = "AddReferencesCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 2235); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2197), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2197), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_93(address_space: &mut AddressSpace) { @@ -1361,12 +2998,28 @@ fn add_variable_93(address_space: &mut AddressSpace) { let name = "DeleteNodesCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 2236); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2197), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2197), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_94(address_space: &mut AddressSpace) { @@ -1374,12 +3027,28 @@ fn add_variable_94(address_space: &mut AddressSpace) { let name = "DeleteReferencesCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 2237); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2197), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2197), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_95(address_space: &mut AddressSpace) { @@ -1387,12 +3056,28 @@ fn add_variable_95(address_space: &mut AddressSpace) { let name = "BrowseCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 2238); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2197), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2197), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_96(address_space: &mut AddressSpace) { @@ -1400,12 +3085,28 @@ fn add_variable_96(address_space: &mut AddressSpace) { let name = "BrowseNextCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 2239); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2197), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2197), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_97(address_space: &mut AddressSpace) { @@ -1413,12 +3114,28 @@ fn add_variable_97(address_space: &mut AddressSpace) { let name = "TranslateBrowsePathsToNodeIdsCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 2240); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2197), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2197), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_98(address_space: &mut AddressSpace) { @@ -1426,12 +3143,28 @@ fn add_variable_98(address_space: &mut AddressSpace) { let name = "QueryFirstCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 2241); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2197), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2197), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_99(address_space: &mut AddressSpace) { @@ -1439,12 +3172,28 @@ fn add_variable_99(address_space: &mut AddressSpace) { let name = "QueryNextCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 2242); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2197), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2197), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_100(address_space: &mut AddressSpace) { @@ -1452,11 +3201,26 @@ fn add_variable_100(address_space: &mut AddressSpace) { let name = "RegisterNodesCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 2730); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2197), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2197), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } - diff --git a/server/src/address_space/generated/nodeset_5_9.rs b/server/src/address_space/generated/nodeset_5_9.rs index 8806e5f89..d7a11ba14 100644 --- a/server/src/address_space/generated/nodeset_5_9.rs +++ b/server/src/address_space/generated/nodeset_5_9.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.NodeSet2.Part5.xml by tools/schema/gen_address_space.js // DO NOT EDIT THIS FILE @@ -9,8 +9,11 @@ use std::{convert::TryFrom, str::FromStr}; #[allow(unused_imports)] use crate::{ - address_space::{EventNotifier, types::*}, - prelude::{DataTypeId, ExtensionObject, LocalizedText, NodeId, ReferenceTypeId, service_types::Argument, UAString, Variant, VariantTypeId} + address_space::{types::*, EventNotifier}, + prelude::{ + service_types::Argument, DataTypeId, ExtensionObject, LocalizedText, NodeId, + ReferenceTypeId, UAString, Variant, VariantTypeId, + }, }; #[allow(unused_variables)] @@ -122,12 +125,28 @@ fn add_variable_1(address_space: &mut AddressSpace) { let name = "UnregisterNodesCount"; let value = Variant::Empty; let node_id = NodeId::new(0, 2731); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2197), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 871), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2197), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_2(address_space: &mut AddressSpace) { @@ -135,21 +154,73 @@ fn add_variable_2(address_space: &mut AddressSpace) { let name = "SessionSecurityDiagnostics"; let value = Variant::Empty; let node_id = NodeId::new(0, 12860); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 868), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12861), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12862), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12863), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12864), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12865), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12866), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12867), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12868), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12869), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2244), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 83), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2243), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 868), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12861), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12862), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12863), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12864), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12865), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12866), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12867), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12868), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12869), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2244), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 83), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2243), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_3(address_space: &mut AddressSpace) { @@ -157,12 +228,28 @@ fn add_variable_3(address_space: &mut AddressSpace) { let name = "SessionId"; let value = Variant::Empty; let node_id = NodeId::new(0, 12861); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12860), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12860), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_4(address_space: &mut AddressSpace) { @@ -170,12 +257,28 @@ fn add_variable_4(address_space: &mut AddressSpace) { let name = "ClientUserIdOfSession"; let value = Variant::Empty; let node_id = NodeId::new(0, 12862); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12860), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12860), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_5(address_space: &mut AddressSpace) { @@ -183,12 +286,35 @@ fn add_variable_5(address_space: &mut AddressSpace) { let name = "ClientUserIdHistory"; let value = Variant::Empty; let node_id = NodeId::new(0, 12863); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12860), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 12), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12860), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_6(address_space: &mut AddressSpace) { @@ -196,12 +322,28 @@ fn add_variable_6(address_space: &mut AddressSpace) { let name = "AuthenticationMechanism"; let value = Variant::Empty; let node_id = NodeId::new(0, 12864); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12860), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12860), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_7(address_space: &mut AddressSpace) { @@ -209,12 +351,28 @@ fn add_variable_7(address_space: &mut AddressSpace) { let name = "Encoding"; let value = Variant::Empty; let node_id = NodeId::new(0, 12865); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12860), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12860), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_8(address_space: &mut AddressSpace) { @@ -222,12 +380,28 @@ fn add_variable_8(address_space: &mut AddressSpace) { let name = "TransportProtocol"; let value = Variant::Empty; let node_id = NodeId::new(0, 12866); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12860), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12860), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_9(address_space: &mut AddressSpace) { @@ -235,12 +409,28 @@ fn add_variable_9(address_space: &mut AddressSpace) { let name = "SecurityMode"; let value = Variant::Empty; let node_id = NodeId::new(0, 12867); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 302), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12860), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 302), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12860), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_10(address_space: &mut AddressSpace) { @@ -248,12 +438,28 @@ fn add_variable_10(address_space: &mut AddressSpace) { let name = "SecurityPolicyUri"; let value = Variant::Empty; let node_id = NodeId::new(0, 12868); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12860), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12860), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_11(address_space: &mut AddressSpace) { @@ -261,12 +467,28 @@ fn add_variable_11(address_space: &mut AddressSpace) { let name = "ClientCertificate"; let value = Variant::Empty; let node_id = NodeId::new(0, 12869); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12860), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12860), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_12(address_space: &mut AddressSpace) { @@ -274,12 +496,28 @@ fn add_variable_12(address_space: &mut AddressSpace) { let name = "SessionId"; let value = Variant::Empty; let node_id = NodeId::new(0, 2245); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2244), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2244), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_13(address_space: &mut AddressSpace) { @@ -287,12 +525,28 @@ fn add_variable_13(address_space: &mut AddressSpace) { let name = "ClientUserIdOfSession"; let value = Variant::Empty; let node_id = NodeId::new(0, 2246); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2244), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2244), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_14(address_space: &mut AddressSpace) { @@ -300,12 +554,35 @@ fn add_variable_14(address_space: &mut AddressSpace) { let name = "ClientUserIdHistory"; let value = Variant::Empty; let node_id = NodeId::new(0, 2247); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2244), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 12), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2244), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_15(address_space: &mut AddressSpace) { @@ -313,12 +590,28 @@ fn add_variable_15(address_space: &mut AddressSpace) { let name = "AuthenticationMechanism"; let value = Variant::Empty; let node_id = NodeId::new(0, 2248); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2244), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2244), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_16(address_space: &mut AddressSpace) { @@ -326,12 +619,28 @@ fn add_variable_16(address_space: &mut AddressSpace) { let name = "Encoding"; let value = Variant::Empty; let node_id = NodeId::new(0, 2249); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2244), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2244), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_17(address_space: &mut AddressSpace) { @@ -339,12 +648,28 @@ fn add_variable_17(address_space: &mut AddressSpace) { let name = "TransportProtocol"; let value = Variant::Empty; let node_id = NodeId::new(0, 2250); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2244), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2244), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_18(address_space: &mut AddressSpace) { @@ -352,12 +677,28 @@ fn add_variable_18(address_space: &mut AddressSpace) { let name = "SecurityMode"; let value = Variant::Empty; let node_id = NodeId::new(0, 2251); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 302), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2244), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 302), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2244), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_19(address_space: &mut AddressSpace) { @@ -365,12 +706,28 @@ fn add_variable_19(address_space: &mut AddressSpace) { let name = "SecurityPolicyUri"; let value = Variant::Empty; let node_id = NodeId::new(0, 2252); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2244), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2244), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_20(address_space: &mut AddressSpace) { @@ -378,12 +735,28 @@ fn add_variable_20(address_space: &mut AddressSpace) { let name = "ClientCertificate"; let value = Variant::Empty; let node_id = NodeId::new(0, 3058); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2244), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2244), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_21(address_space: &mut AddressSpace) { @@ -391,12 +764,35 @@ fn add_variable_21(address_space: &mut AddressSpace) { let name = "OptionSetValues"; let value = Variant::Empty; let node_id = NodeId::new(0, 11488); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11487), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 21), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11487), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_22(address_space: &mut AddressSpace) { @@ -404,12 +800,35 @@ fn add_variable_22(address_space: &mut AddressSpace) { let name = "BitMask"; let value = Variant::Empty; let node_id = NodeId::new(0, 11701); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11487), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 1), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11487), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_23(address_space: &mut AddressSpace) { @@ -417,12 +836,35 @@ fn add_variable_23(address_space: &mut AddressSpace) { let name = "Selections"; let value = Variant::Empty; let node_id = NodeId::new(0, 17632); - let node = Variable::new_data_value(&node_id, name, name, DataTypeId::Boolean, Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16309), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + DataTypeId::Boolean, + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16309), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_24(address_space: &mut AddressSpace) { @@ -430,12 +872,35 @@ fn add_variable_24(address_space: &mut AddressSpace) { let name = "SelectionDescriptions"; let value = Variant::Empty; let node_id = NodeId::new(0, 17633); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16309), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 21), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16309), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_25(address_space: &mut AddressSpace) { @@ -444,11 +909,26 @@ fn add_variable_25(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 16312); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16309), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16309), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_26(address_space: &mut AddressSpace) { @@ -456,12 +936,28 @@ fn add_variable_26(address_space: &mut AddressSpace) { let name = "ListId"; let value = Variant::Empty; let node_id = NodeId::new(0, 17988); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17986), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17986), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_27(address_space: &mut AddressSpace) { @@ -469,12 +965,28 @@ fn add_variable_27(address_space: &mut AddressSpace) { let name = "AgencyId"; let value = Variant::Empty; let node_id = NodeId::new(0, 17989); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17986), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17986), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_28(address_space: &mut AddressSpace) { @@ -482,12 +994,28 @@ fn add_variable_28(address_space: &mut AddressSpace) { let name = "VersionId"; let value = Variant::Empty; let node_id = NodeId::new(0, 17990); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17986), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17986), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_29(address_space: &mut AddressSpace) { @@ -495,11 +1023,30 @@ fn add_variable_29(address_space: &mut AddressSpace) { let name = "ServerArray"; let value = Variant::Empty; let node_id = NodeId::new(0, 2254); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2253), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 12), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2253), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_30(address_space: &mut AddressSpace) { @@ -507,11 +1054,30 @@ fn add_variable_30(address_space: &mut AddressSpace) { let name = "NamespaceArray"; let value = Variant::Empty; let node_id = NodeId::new(0, 2255); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2253), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 12), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2253), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_31(address_space: &mut AddressSpace) { @@ -519,17 +1085,53 @@ fn add_variable_31(address_space: &mut AddressSpace) { let name = "ServerStatus"; let value = Variant::Empty; let node_id = NodeId::new(0, 2256); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 862), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2257), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2258), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2259), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2260), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2992), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2993), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2138), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2253), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 862), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2257), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2258), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2259), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2260), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2992), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2993), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2138), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2253), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_32(address_space: &mut AddressSpace) { @@ -537,11 +1139,23 @@ fn add_variable_32(address_space: &mut AddressSpace) { let name = "StartTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 2257); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2256), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2256), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_33(address_space: &mut AddressSpace) { @@ -549,11 +1163,23 @@ fn add_variable_33(address_space: &mut AddressSpace) { let name = "CurrentTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 2258); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2256), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2256), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_34(address_space: &mut AddressSpace) { @@ -561,11 +1187,23 @@ fn add_variable_34(address_space: &mut AddressSpace) { let name = "State"; let value = Variant::Empty; let node_id = NodeId::new(0, 2259); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 852), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2256), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 852), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2256), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_35(address_space: &mut AddressSpace) { @@ -573,17 +1211,53 @@ fn add_variable_35(address_space: &mut AddressSpace) { let name = "BuildInfo"; let value = Variant::Empty; let node_id = NodeId::new(0, 2260); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 338), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2262), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2263), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2261), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2264), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2265), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2266), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3051), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2256), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 338), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2262), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2263), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2261), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2264), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2265), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2266), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3051), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2256), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_36(address_space: &mut AddressSpace) { @@ -591,11 +1265,23 @@ fn add_variable_36(address_space: &mut AddressSpace) { let name = "ProductUri"; let value = Variant::Empty; let node_id = NodeId::new(0, 2262); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2260), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2260), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_37(address_space: &mut AddressSpace) { @@ -603,11 +1289,23 @@ fn add_variable_37(address_space: &mut AddressSpace) { let name = "ManufacturerName"; let value = Variant::Empty; let node_id = NodeId::new(0, 2263); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2260), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2260), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_38(address_space: &mut AddressSpace) { @@ -615,11 +1313,23 @@ fn add_variable_38(address_space: &mut AddressSpace) { let name = "ProductName"; let value = Variant::Empty; let node_id = NodeId::new(0, 2261); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2260), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2260), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_39(address_space: &mut AddressSpace) { @@ -627,11 +1337,23 @@ fn add_variable_39(address_space: &mut AddressSpace) { let name = "SoftwareVersion"; let value = Variant::Empty; let node_id = NodeId::new(0, 2264); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2260), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2260), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_40(address_space: &mut AddressSpace) { @@ -639,11 +1361,23 @@ fn add_variable_40(address_space: &mut AddressSpace) { let name = "BuildNumber"; let value = Variant::Empty; let node_id = NodeId::new(0, 2265); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2260), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2260), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_41(address_space: &mut AddressSpace) { @@ -651,11 +1385,23 @@ fn add_variable_41(address_space: &mut AddressSpace) { let name = "BuildDate"; let value = Variant::Empty; let node_id = NodeId::new(0, 2266); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2260), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2260), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_42(address_space: &mut AddressSpace) { @@ -664,10 +1410,21 @@ fn add_variable_42(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2992); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2256), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2256), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_43(address_space: &mut AddressSpace) { @@ -675,11 +1432,23 @@ fn add_variable_43(address_space: &mut AddressSpace) { let name = "ShutdownReason"; let value = Variant::Empty; let node_id = NodeId::new(0, 2993); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2256), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2256), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_44(address_space: &mut AddressSpace) { @@ -688,10 +1457,21 @@ fn add_variable_44(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2267); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 3), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2253), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2253), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_45(address_space: &mut AddressSpace) { @@ -700,10 +1480,21 @@ fn add_variable_45(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2994); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2253), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2253), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_46(address_space: &mut AddressSpace) { @@ -711,11 +1502,23 @@ fn add_variable_46(address_space: &mut AddressSpace) { let name = "EstimatedReturnTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 12885); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 13), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2253), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 13), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2253), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_47(address_space: &mut AddressSpace) { @@ -723,11 +1526,30 @@ fn add_variable_47(address_space: &mut AddressSpace) { let name = "LocalTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 17634); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 8912), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2253), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 8912), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2253), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_48(address_space: &mut AddressSpace) { @@ -735,11 +1557,30 @@ fn add_variable_48(address_space: &mut AddressSpace) { let name = "ServerProfileArray"; let value = Variant::Empty; let node_id = NodeId::new(0, 2269); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2268), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 12), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2268), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_49(address_space: &mut AddressSpace) { @@ -747,11 +1588,30 @@ fn add_variable_49(address_space: &mut AddressSpace) { let name = "LocaleIdArray"; let value = Variant::Empty; let node_id = NodeId::new(0, 2271); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 295), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2268), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 295), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2268), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_50(address_space: &mut AddressSpace) { @@ -759,11 +1619,23 @@ fn add_variable_50(address_space: &mut AddressSpace) { let name = "MinSupportedSampleRate"; let value = Variant::Empty; let node_id = NodeId::new(0, 2272); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2268), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2268), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_51(address_space: &mut AddressSpace) { @@ -772,10 +1644,21 @@ fn add_variable_51(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2735); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2268), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2268), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_52(address_space: &mut AddressSpace) { @@ -784,10 +1667,21 @@ fn add_variable_52(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2736); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2268), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2268), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_53(address_space: &mut AddressSpace) { @@ -796,10 +1690,21 @@ fn add_variable_53(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2737); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2268), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2268), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_54(address_space: &mut AddressSpace) { @@ -807,11 +1712,30 @@ fn add_variable_54(address_space: &mut AddressSpace) { let name = "SoftwareCertificates"; let value = Variant::Empty; let node_id = NodeId::new(0, 3704); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 344), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2268), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 344), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2268), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_55(address_space: &mut AddressSpace) { @@ -820,10 +1744,21 @@ fn add_variable_55(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11702); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2268), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2268), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_56(address_space: &mut AddressSpace) { @@ -832,10 +1767,21 @@ fn add_variable_56(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11703); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2268), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2268), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_57(address_space: &mut AddressSpace) { @@ -844,10 +1790,21 @@ fn add_variable_57(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 12911); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2268), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2268), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_58(address_space: &mut AddressSpace) { @@ -856,10 +1813,21 @@ fn add_variable_58(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11705); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11704), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11704), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_59(address_space: &mut AddressSpace) { @@ -868,10 +1836,21 @@ fn add_variable_59(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 12165); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11704), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11704), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_60(address_space: &mut AddressSpace) { @@ -880,10 +1859,21 @@ fn add_variable_60(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 12166); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11704), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11704), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_61(address_space: &mut AddressSpace) { @@ -892,10 +1882,21 @@ fn add_variable_61(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11707); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11704), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11704), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_62(address_space: &mut AddressSpace) { @@ -904,10 +1905,21 @@ fn add_variable_62(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 12167); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11704), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11704), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_63(address_space: &mut AddressSpace) { @@ -916,10 +1928,21 @@ fn add_variable_63(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 12168); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11704), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11704), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_64(address_space: &mut AddressSpace) { @@ -928,10 +1951,21 @@ fn add_variable_64(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11709); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11704), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11704), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_65(address_space: &mut AddressSpace) { @@ -940,10 +1974,21 @@ fn add_variable_65(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11710); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11704), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11704), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_66(address_space: &mut AddressSpace) { @@ -952,10 +1997,21 @@ fn add_variable_66(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11711); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11704), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11704), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_67(address_space: &mut AddressSpace) { @@ -964,10 +2020,21 @@ fn add_variable_67(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11712); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11704), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11704), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_68(address_space: &mut AddressSpace) { @@ -976,10 +2043,21 @@ fn add_variable_68(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11713); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11704), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11704), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_69(address_space: &mut AddressSpace) { @@ -988,10 +2066,21 @@ fn add_variable_69(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11714); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11704), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11704), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_70(address_space: &mut AddressSpace) { @@ -999,70 +2088,131 @@ fn add_variable_70(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("RoleName"), data_type: NodeId::new(0, 12), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("NamespaceUri"), data_type: NodeId::new(0, 12), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 16302); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 16301), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16301), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_71(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("RoleNodeId"), - data_type: NodeId::new(0, 17), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("RoleNodeId"), + data_type: NodeId::new(0, 17), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 16303); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 16301), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16301), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_72(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("RoleNodeId"), - data_type: NodeId::new(0, 17), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("RoleNodeId"), + data_type: NodeId::new(0, 17), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 16305); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 16304), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16304), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_73(address_space: &mut AddressSpace) { @@ -1070,23 +2220,83 @@ fn add_variable_73(address_space: &mut AddressSpace) { let name = "ServerDiagnosticsSummary"; let value = Variant::Empty; let node_id = NodeId::new(0, 2275); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 859), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2276), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2277), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2278), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2279), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3705), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2281), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2282), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2284), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2285), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2286), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2287), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2288), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2150), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2274), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 859), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2276), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2277), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2278), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2279), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3705), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2281), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2282), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2284), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2285), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2286), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2287), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2288), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2150), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2274), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_74(address_space: &mut AddressSpace) { @@ -1095,10 +2305,21 @@ fn add_variable_74(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2276); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2275), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2275), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_75(address_space: &mut AddressSpace) { @@ -1107,10 +2328,21 @@ fn add_variable_75(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2277); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2275), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2275), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_76(address_space: &mut AddressSpace) { @@ -1119,10 +2351,21 @@ fn add_variable_76(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2278); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2275), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2275), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_77(address_space: &mut AddressSpace) { @@ -1131,10 +2374,21 @@ fn add_variable_77(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2279); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2275), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2275), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_78(address_space: &mut AddressSpace) { @@ -1143,10 +2397,21 @@ fn add_variable_78(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 3705); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2275), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2275), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_79(address_space: &mut AddressSpace) { @@ -1155,10 +2420,21 @@ fn add_variable_79(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2281); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2275), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2275), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_80(address_space: &mut AddressSpace) { @@ -1167,10 +2443,21 @@ fn add_variable_80(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2282); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2275), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2275), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_81(address_space: &mut AddressSpace) { @@ -1179,10 +2466,21 @@ fn add_variable_81(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2284); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2275), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2275), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_82(address_space: &mut AddressSpace) { @@ -1191,10 +2489,21 @@ fn add_variable_82(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2285); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2275), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2275), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_83(address_space: &mut AddressSpace) { @@ -1203,10 +2512,21 @@ fn add_variable_83(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2286); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2275), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2275), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_84(address_space: &mut AddressSpace) { @@ -1215,10 +2535,21 @@ fn add_variable_84(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2287); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2275), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2275), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_85(address_space: &mut AddressSpace) { @@ -1227,10 +2558,21 @@ fn add_variable_85(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2288); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2275), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2275), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_86(address_space: &mut AddressSpace) { @@ -1238,11 +2580,30 @@ fn add_variable_86(address_space: &mut AddressSpace) { let name = "SamplingIntervalDiagnosticsArray"; let value = Variant::Empty; let node_id = NodeId::new(0, 2289); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 856), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2164), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2274), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 856), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2164), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2274), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_87(address_space: &mut AddressSpace) { @@ -1250,11 +2611,30 @@ fn add_variable_87(address_space: &mut AddressSpace) { let name = "SubscriptionDiagnosticsArray"; let value = Variant::Empty; let node_id = NodeId::new(0, 2290); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 874), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2171), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2274), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 874), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2171), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2274), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_88(address_space: &mut AddressSpace) { @@ -1262,11 +2642,30 @@ fn add_variable_88(address_space: &mut AddressSpace) { let name = "SessionDiagnosticsArray"; let value = Variant::Empty; let node_id = NodeId::new(0, 3707); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 865), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2196), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 3706), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 865), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2196), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3706), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_89(address_space: &mut AddressSpace) { @@ -1274,11 +2673,30 @@ fn add_variable_89(address_space: &mut AddressSpace) { let name = "SessionSecurityDiagnosticsArray"; let value = Variant::Empty; let node_id = NodeId::new(0, 3708); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 868), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2243), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 3706), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 868), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2243), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3706), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_90(address_space: &mut AddressSpace) { @@ -1287,10 +2705,21 @@ fn add_variable_90(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 2294); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2274), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2274), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_91(address_space: &mut AddressSpace) { @@ -1298,32 +2727,63 @@ fn add_variable_91(address_space: &mut AddressSpace) { let name = "RedundancySupport"; let value = Variant::Empty; let node_id = NodeId::new(0, 3709); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 851), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2296), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 851), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2296), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_92(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("SubscriptionId"), - data_type: NodeId::new(0, 7), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("SubscriptionId"), + data_type: NodeId::new(0, 7), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 11493); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11492), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11492), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_93(address_space: &mut AddressSpace) { @@ -1331,49 +2791,91 @@ fn add_variable_93(address_space: &mut AddressSpace) { let name = "OutputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("ServerHandles"), data_type: NodeId::new(0, 7), value_rank: 1, array_dimensions: Some(vec![0]), description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("ClientHandles"), data_type: NodeId::new(0, 7), value_rank: 1, array_dimensions: Some(vec![0]), description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 11494); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11492), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11492), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_94(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("SubscriptionId"), - data_type: NodeId::new(0, 7), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("SubscriptionId"), + data_type: NodeId::new(0, 7), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 12874); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 12873), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12873), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_95(address_space: &mut AddressSpace) { @@ -1381,49 +2883,91 @@ fn add_variable_95(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("SubscriptionId"), data_type: NodeId::new(0, 7), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("LifetimeInHours"), data_type: NodeId::new(0, 7), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 12750); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 12749), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12749), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_96(address_space: &mut AddressSpace) { // Variable let name = "OutputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("RevisedLifetimeInHours"), - data_type: NodeId::new(0, 7), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("RevisedLifetimeInHours"), + data_type: NodeId::new(0, 7), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 12751); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 12749), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12749), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_97(address_space: &mut AddressSpace) { @@ -1431,52 +2975,81 @@ fn add_variable_97(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("State"), data_type: NodeId::new(0, 852), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("EstimatedReturnTime"), data_type: NodeId::new(0, 13), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("SecondsTillShutdown"), data_type: NodeId::new(0, 7), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("Reason"), data_type: NodeId::new(0, 21), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("Restart"), data_type: NodeId::new(0, 1), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 12887); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 12886), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12886), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_98(address_space: &mut AddressSpace) { @@ -1484,13 +3057,33 @@ fn add_variable_98(address_space: &mut AddressSpace) { let name = "CurrentState"; let value = Variant::Empty; let node_id = NodeId::new(0, 2769); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 3720), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2755), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2299), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 3720), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2755), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2299), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_99(address_space: &mut AddressSpace) { @@ -1498,12 +3091,28 @@ fn add_variable_99(address_space: &mut AddressSpace) { let name = "Id"; let value = Variant::Empty; let node_id = NodeId::new(0, 3720); - let node = Variable::new_data_value(&node_id, name, name, DataTypeId::Boolean, None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2769), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, DataTypeId::Boolean, None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2769), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_100(address_space: &mut AddressSpace) { @@ -1511,12 +3120,31 @@ fn add_variable_100(address_space: &mut AddressSpace) { let name = "LastTransition"; let value = Variant::Empty; let node_id = NodeId::new(0, 2770); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 3724), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2762), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2299), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 3724), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2762), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2299), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } - diff --git a/server/src/address_space/generated/nodeset_8.rs b/server/src/address_space/generated/nodeset_8.rs index 03bf9720a..7bc7f61b2 100644 --- a/server/src/address_space/generated/nodeset_8.rs +++ b/server/src/address_space/generated/nodeset_8.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.NodeSet2.Part8.xml by tools/schema/gen_address_space.js // DO NOT EDIT THIS FILE @@ -9,8 +9,11 @@ use std::{convert::TryFrom, str::FromStr}; #[allow(unused_imports)] use crate::{ - address_space::{EventNotifier, types::*}, - prelude::{DataTypeId, ExtensionObject, LocalizedText, NodeId, ReferenceTypeId, service_types::Argument, UAString, Variant, VariantTypeId} + address_space::{types::*, EventNotifier}, + prelude::{ + service_types::Argument, DataTypeId, ExtensionObject, LocalizedText, NodeId, + ReferenceTypeId, UAString, Variant, VariantTypeId, + }, }; #[allow(unused_variables)] @@ -89,11 +92,26 @@ fn add_object_1(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 886); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 884), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8238), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 884), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8238), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_2(address_space: &mut AddressSpace) { @@ -101,11 +119,26 @@ fn add_object_2(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 889); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 887), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8241), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 887), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8241), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_3(address_space: &mut AddressSpace) { @@ -113,11 +146,26 @@ fn add_object_3(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 12181); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12171), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 12183), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12171), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 12183), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_4(address_space: &mut AddressSpace) { @@ -125,11 +173,26 @@ fn add_object_4(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 12182); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12172), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 12186), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12172), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 12186), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_5(address_space: &mut AddressSpace) { @@ -137,11 +200,26 @@ fn add_object_5(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 12089); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12079), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 12091), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12079), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 12091), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_6(address_space: &mut AddressSpace) { @@ -149,11 +227,26 @@ fn add_object_6(address_space: &mut AddressSpace) { let name = "Default Binary"; let node_id = NodeId::new(0, 12090); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12080), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 12094), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12080), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 12094), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_7(address_space: &mut AddressSpace) { @@ -161,11 +254,26 @@ fn add_object_7(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 885); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 884), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8873), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 884), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8873), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_8(address_space: &mut AddressSpace) { @@ -173,11 +281,26 @@ fn add_object_8(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 888); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 887), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 8876), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 887), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 8876), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_9(address_space: &mut AddressSpace) { @@ -185,11 +308,26 @@ fn add_object_9(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 12173); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12171), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 12175), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12171), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 12175), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_10(address_space: &mut AddressSpace) { @@ -197,11 +335,26 @@ fn add_object_10(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 12174); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12172), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 12178), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12172), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 12178), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_11(address_space: &mut AddressSpace) { @@ -209,11 +362,26 @@ fn add_object_11(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 12081); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12079), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 12083), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12079), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 12083), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_12(address_space: &mut AddressSpace) { @@ -221,11 +389,26 @@ fn add_object_12(address_space: &mut AddressSpace) { let name = "Default XML"; let node_id = NodeId::new(0, 12082); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12080), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 12086), &ReferenceTypeId::HasDescription, ReferenceDirection::Forward), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12080), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 12086), + &ReferenceTypeId::HasDescription, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_13(address_space: &mut AddressSpace) { @@ -233,10 +416,21 @@ fn add_object_13(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15375); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 884), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 884), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_14(address_space: &mut AddressSpace) { @@ -244,10 +438,21 @@ fn add_object_14(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15376); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 887), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 887), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_15(address_space: &mut AddressSpace) { @@ -255,10 +460,21 @@ fn add_object_15(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15377); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12171), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12171), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_16(address_space: &mut AddressSpace) { @@ -266,10 +482,21 @@ fn add_object_16(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15378); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12172), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12172), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_17(address_space: &mut AddressSpace) { @@ -277,10 +504,21 @@ fn add_object_17(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15379); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12079), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12079), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_18(address_space: &mut AddressSpace) { @@ -288,10 +526,21 @@ fn add_object_18(address_space: &mut AddressSpace) { let name = "Default JSON"; let node_id = NodeId::new(0, 15380); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12080), &ReferenceTypeId::HasEncoding, ReferenceDirection::Inverse), - (&NodeId::new(0, 76), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12080), + &ReferenceTypeId::HasEncoding, + ReferenceDirection::Inverse, + ), + ( + &NodeId::new(0, 76), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_datatype_19(address_space: &mut AddressSpace) { @@ -299,9 +548,14 @@ fn add_datatype_19(address_space: &mut AddressSpace) { let name = "Range"; let node_id = NodeId::new(0, 884); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_20(address_space: &mut AddressSpace) { @@ -309,9 +563,14 @@ fn add_datatype_20(address_space: &mut AddressSpace) { let name = "EUInformation"; let node_id = NodeId::new(0, 887); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_21(address_space: &mut AddressSpace) { @@ -319,10 +578,21 @@ fn add_datatype_21(address_space: &mut AddressSpace) { let name = "AxisScaleEnumeration"; let node_id = NodeId::new(0, 12077); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12078), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 29), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12078), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 29), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_datatype_22(address_space: &mut AddressSpace) { @@ -330,9 +600,14 @@ fn add_datatype_22(address_space: &mut AddressSpace) { let name = "ComplexNumberType"; let node_id = NodeId::new(0, 12171); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_23(address_space: &mut AddressSpace) { @@ -340,9 +615,14 @@ fn add_datatype_23(address_space: &mut AddressSpace) { let name = "DoubleComplexNumberType"; let node_id = NodeId::new(0, 12172); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_24(address_space: &mut AddressSpace) { @@ -350,9 +630,14 @@ fn add_datatype_24(address_space: &mut AddressSpace) { let name = "AxisInformation"; let node_id = NodeId::new(0, 12079); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_datatype_25(address_space: &mut AddressSpace) { @@ -360,9 +645,14 @@ fn add_datatype_25(address_space: &mut AddressSpace) { let name = "XVType"; let node_id = NodeId::new(0, 12080); let node = DataType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 22), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 22), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_variable_26(address_space: &mut AddressSpace) { @@ -370,12 +660,28 @@ fn add_variable_26(address_space: &mut AddressSpace) { let name = "Definition"; let value = Variant::Empty; let node_id = NodeId::new(0, 2366); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2365), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2365), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_27(address_space: &mut AddressSpace) { @@ -383,12 +689,28 @@ fn add_variable_27(address_space: &mut AddressSpace) { let name = "ValuePrecision"; let value = Variant::Empty; let node_id = NodeId::new(0, 2367); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2365), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2365), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_28(address_space: &mut AddressSpace) { @@ -396,12 +718,28 @@ fn add_variable_28(address_space: &mut AddressSpace) { let name = "InstrumentRange"; let value = Variant::Empty; let node_id = NodeId::new(0, 17567); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 884), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15318), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 884), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15318), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_29(address_space: &mut AddressSpace) { @@ -409,12 +747,28 @@ fn add_variable_29(address_space: &mut AddressSpace) { let name = "EURange"; let value = Variant::Empty; let node_id = NodeId::new(0, 17568); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 884), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15318), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 884), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15318), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_30(address_space: &mut AddressSpace) { @@ -422,12 +776,28 @@ fn add_variable_30(address_space: &mut AddressSpace) { let name = "EngineeringUnits"; let value = Variant::Empty; let node_id = NodeId::new(0, 17569); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 887), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 15318), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 887), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15318), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_31(address_space: &mut AddressSpace) { @@ -435,12 +805,28 @@ fn add_variable_31(address_space: &mut AddressSpace) { let name = "EURange"; let value = Variant::Empty; let node_id = NodeId::new(0, 2369); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 884), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2368), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 884), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2368), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_32(address_space: &mut AddressSpace) { @@ -448,12 +834,28 @@ fn add_variable_32(address_space: &mut AddressSpace) { let name = "EngineeringUnits"; let value = Variant::Empty; let node_id = NodeId::new(0, 17502); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 887), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17497), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 887), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17497), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_33(address_space: &mut AddressSpace) { @@ -461,12 +863,28 @@ fn add_variable_33(address_space: &mut AddressSpace) { let name = "EngineeringUnits"; let value = Variant::Empty; let node_id = NodeId::new(0, 17575); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 887), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17570), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 887), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17570), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_34(address_space: &mut AddressSpace) { @@ -474,12 +892,28 @@ fn add_variable_34(address_space: &mut AddressSpace) { let name = "FalseState"; let value = Variant::Empty; let node_id = NodeId::new(0, 2374); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2373), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2373), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_35(address_space: &mut AddressSpace) { @@ -487,12 +921,28 @@ fn add_variable_35(address_space: &mut AddressSpace) { let name = "TrueState"; let value = Variant::Empty; let node_id = NodeId::new(0, 2375); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2373), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2373), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_36(address_space: &mut AddressSpace) { @@ -500,12 +950,35 @@ fn add_variable_36(address_space: &mut AddressSpace) { let name = "EnumStrings"; let value = Variant::Empty; let node_id = NodeId::new(0, 2377); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2376), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 21), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2376), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_37(address_space: &mut AddressSpace) { @@ -513,12 +986,35 @@ fn add_variable_37(address_space: &mut AddressSpace) { let name = "EnumValues"; let value = Variant::Empty; let node_id = NodeId::new(0, 11241); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7594), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11238), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 7594), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11238), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_38(address_space: &mut AddressSpace) { @@ -526,12 +1022,28 @@ fn add_variable_38(address_space: &mut AddressSpace) { let name = "ValueAsText"; let value = Variant::Empty; let node_id = NodeId::new(0, 11461); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11238), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11238), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_39(address_space: &mut AddressSpace) { @@ -539,12 +1051,28 @@ fn add_variable_39(address_space: &mut AddressSpace) { let name = "InstrumentRange"; let value = Variant::Empty; let node_id = NodeId::new(0, 12024); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 884), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12021), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 884), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12021), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_40(address_space: &mut AddressSpace) { @@ -552,12 +1080,28 @@ fn add_variable_40(address_space: &mut AddressSpace) { let name = "EURange"; let value = Variant::Empty; let node_id = NodeId::new(0, 12025); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 884), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12021), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 884), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12021), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_41(address_space: &mut AddressSpace) { @@ -565,12 +1109,28 @@ fn add_variable_41(address_space: &mut AddressSpace) { let name = "EngineeringUnits"; let value = Variant::Empty; let node_id = NodeId::new(0, 12026); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 887), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12021), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 887), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12021), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_42(address_space: &mut AddressSpace) { @@ -578,12 +1138,28 @@ fn add_variable_42(address_space: &mut AddressSpace) { let name = "Title"; let value = Variant::Empty; let node_id = NodeId::new(0, 12027); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12021), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12021), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_43(address_space: &mut AddressSpace) { @@ -591,12 +1167,35 @@ fn add_variable_43(address_space: &mut AddressSpace) { let name = "AxisScaleType"; let value = Variant::Empty; let node_id = NodeId::new(0, 12028); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12077), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12021), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 12077), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12021), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_44(address_space: &mut AddressSpace) { @@ -604,12 +1203,35 @@ fn add_variable_44(address_space: &mut AddressSpace) { let name = "XAxisDefinition"; let value = Variant::Empty; let node_id = NodeId::new(0, 12037); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12079), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12029), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 12079), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12029), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_45(address_space: &mut AddressSpace) { @@ -617,12 +1239,35 @@ fn add_variable_45(address_space: &mut AddressSpace) { let name = "XAxisDefinition"; let value = Variant::Empty; let node_id = NodeId::new(0, 12046); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12079), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12038), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 12079), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12038), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_46(address_space: &mut AddressSpace) { @@ -630,12 +1275,35 @@ fn add_variable_46(address_space: &mut AddressSpace) { let name = "XAxisDefinition"; let value = Variant::Empty; let node_id = NodeId::new(0, 12055); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12079), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12047), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 12079), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12047), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_47(address_space: &mut AddressSpace) { @@ -643,12 +1311,35 @@ fn add_variable_47(address_space: &mut AddressSpace) { let name = "YAxisDefinition"; let value = Variant::Empty; let node_id = NodeId::new(0, 12056); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12079), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12047), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 12079), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12047), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_48(address_space: &mut AddressSpace) { @@ -656,12 +1347,35 @@ fn add_variable_48(address_space: &mut AddressSpace) { let name = "XAxisDefinition"; let value = Variant::Empty; let node_id = NodeId::new(0, 12065); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12079), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12057), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 12079), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12057), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_49(address_space: &mut AddressSpace) { @@ -669,12 +1383,35 @@ fn add_variable_49(address_space: &mut AddressSpace) { let name = "YAxisDefinition"; let value = Variant::Empty; let node_id = NodeId::new(0, 12066); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12079), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12057), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 12079), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12057), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_50(address_space: &mut AddressSpace) { @@ -682,12 +1419,35 @@ fn add_variable_50(address_space: &mut AddressSpace) { let name = "ZAxisDefinition"; let value = Variant::Empty; let node_id = NodeId::new(0, 12067); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12079), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12057), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 12079), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12057), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_51(address_space: &mut AddressSpace) { @@ -695,12 +1455,35 @@ fn add_variable_51(address_space: &mut AddressSpace) { let name = "AxisDefinition"; let value = Variant::Empty; let node_id = NodeId::new(0, 12076); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12079), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12068), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 12079), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12068), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_52(address_space: &mut AddressSpace) { @@ -708,12 +1491,35 @@ fn add_variable_52(address_space: &mut AddressSpace) { let name = "EnumStrings"; let value = Variant::Empty; let node_id = NodeId::new(0, 12078); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12077), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 21), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12077), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variabletype_53(address_space: &mut AddressSpace) { @@ -721,11 +1527,26 @@ fn add_variabletype_53(address_space: &mut AddressSpace) { let name = "DataItemType"; let node_id = NodeId::new(0, 2365); let node = VariableType::new(&node_id, name, name, NodeId::null(), false, -2); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2366), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2367), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2366), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2367), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variabletype_54(address_space: &mut AddressSpace) { @@ -733,12 +1554,31 @@ fn add_variabletype_54(address_space: &mut AddressSpace) { let name = "BaseAnalogType"; let node_id = NodeId::new(0, 15318); let node = VariableType::new(&node_id, name, name, NodeId::new(0, 26), false, -2); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17567), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17568), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17569), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2365), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17567), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17568), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17569), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2365), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variabletype_55(address_space: &mut AddressSpace) { @@ -746,10 +1586,21 @@ fn add_variabletype_55(address_space: &mut AddressSpace) { let name = "AnalogItemType"; let node_id = NodeId::new(0, 2368); let node = VariableType::new(&node_id, name, name, NodeId::new(0, 26), false, -2); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2369), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15318), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2369), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15318), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variabletype_56(address_space: &mut AddressSpace) { @@ -757,10 +1608,21 @@ fn add_variabletype_56(address_space: &mut AddressSpace) { let name = "AnalogUnitType"; let node_id = NodeId::new(0, 17497); let node = VariableType::new(&node_id, name, name, NodeId::new(0, 26), false, -2); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17502), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 15318), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17502), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 15318), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variabletype_57(address_space: &mut AddressSpace) { @@ -768,10 +1630,21 @@ fn add_variabletype_57(address_space: &mut AddressSpace) { let name = "AnalogUnitRangeType"; let node_id = NodeId::new(0, 17570); let node = VariableType::new(&node_id, name, name, NodeId::new(0, 26), false, -2); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17575), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2368), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17575), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2368), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variabletype_58(address_space: &mut AddressSpace) { @@ -779,9 +1652,14 @@ fn add_variabletype_58(address_space: &mut AddressSpace) { let name = "DiscreteItemType"; let node_id = NodeId::new(0, 2372); let node = VariableType::new(&node_id, name, name, NodeId::null(), true, -2); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2365), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2365), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_variabletype_59(address_space: &mut AddressSpace) { @@ -789,11 +1667,26 @@ fn add_variabletype_59(address_space: &mut AddressSpace) { let name = "TwoStateDiscreteType"; let node_id = NodeId::new(0, 2373); let node = VariableType::new(&node_id, name, name, NodeId::new(0, 1), false, -2); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2374), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2375), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2372), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2374), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2375), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2372), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variabletype_60(address_space: &mut AddressSpace) { @@ -801,10 +1694,21 @@ fn add_variabletype_60(address_space: &mut AddressSpace) { let name = "MultiStateDiscreteType"; let node_id = NodeId::new(0, 2376); let node = VariableType::new(&node_id, name, name, NodeId::new(0, 28), false, -2); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2377), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2372), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2377), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2372), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variabletype_61(address_space: &mut AddressSpace) { @@ -812,11 +1716,26 @@ fn add_variabletype_61(address_space: &mut AddressSpace) { let name = "MultiStateValueDiscreteType"; let node_id = NodeId::new(0, 11238); let node = VariableType::new(&node_id, name, name, NodeId::new(0, 26), false, -2); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11241), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11461), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2372), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11241), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11461), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2372), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variabletype_62(address_space: &mut AddressSpace) { @@ -824,14 +1743,41 @@ fn add_variabletype_62(address_space: &mut AddressSpace) { let name = "ArrayItemType"; let node_id = NodeId::new(0, 12021); let node = VariableType::new(&node_id, name, name, NodeId::null(), true, 0); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12024), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 12025), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 12026), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 12027), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 12028), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2365), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12024), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12025), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12026), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12027), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12028), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2365), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variabletype_63(address_space: &mut AddressSpace) { @@ -839,10 +1785,21 @@ fn add_variabletype_63(address_space: &mut AddressSpace) { let name = "YArrayItemType"; let node_id = NodeId::new(0, 12029); let node = VariableType::new(&node_id, name, name, NodeId::null(), false, 1); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12037), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 12021), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12037), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12021), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variabletype_64(address_space: &mut AddressSpace) { @@ -850,10 +1807,21 @@ fn add_variabletype_64(address_space: &mut AddressSpace) { let name = "XYArrayItemType"; let node_id = NodeId::new(0, 12038); let node = VariableType::new(&node_id, name, name, NodeId::new(0, 12080), false, 1); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12046), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 12021), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12046), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12021), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variabletype_65(address_space: &mut AddressSpace) { @@ -861,11 +1829,26 @@ fn add_variabletype_65(address_space: &mut AddressSpace) { let name = "ImageItemType"; let node_id = NodeId::new(0, 12047); let node = VariableType::new(&node_id, name, name, NodeId::null(), false, 2); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12055), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 12056), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 12021), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12055), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12056), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12021), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variabletype_66(address_space: &mut AddressSpace) { @@ -873,12 +1856,31 @@ fn add_variabletype_66(address_space: &mut AddressSpace) { let name = "CubeItemType"; let node_id = NodeId::new(0, 12057); let node = VariableType::new(&node_id, name, name, NodeId::null(), false, 3); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12065), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 12066), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 12067), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 12021), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12065), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12066), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12067), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12021), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variabletype_67(address_space: &mut AddressSpace) { @@ -886,9 +1888,19 @@ fn add_variabletype_67(address_space: &mut AddressSpace) { let name = "NDimensionArrayItemType"; let node_id = NodeId::new(0, 12068); let node = VariableType::new(&node_id, name, name, NodeId::null(), false, 0); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12076), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 12021), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12076), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12021), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } - diff --git a/server/src/address_space/generated/nodeset_999.rs b/server/src/address_space/generated/nodeset_999.rs index 772b2a4fc..3ce71bc8c 100644 --- a/server/src/address_space/generated/nodeset_999.rs +++ b/server/src/address_space/generated/nodeset_999.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.NodeSet2.Part999.xml by tools/schema/gen_address_space.js // DO NOT EDIT THIS FILE @@ -9,8 +9,11 @@ use std::{convert::TryFrom, str::FromStr}; #[allow(unused_imports)] use crate::{ - address_space::{EventNotifier, types::*}, - prelude::{DataTypeId, ExtensionObject, LocalizedText, NodeId, ReferenceTypeId, service_types::Argument, UAString, Variant, VariantTypeId} + address_space::{types::*, EventNotifier}, + prelude::{ + service_types::Argument, DataTypeId, ExtensionObject, LocalizedText, NodeId, + ReferenceTypeId, UAString, Variant, VariantTypeId, + }, }; #[allow(unused_variables)] @@ -24,11 +27,24 @@ fn add_datatype_1(address_space: &mut AddressSpace) { let name = "EnumeratedTestType"; let node_id = NodeId::new(0, 398); let mut node = DataType::new(&node_id, name, name, false); - node.set_description(LocalizedText::from("A simple enumerated type used for testing.")); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11886), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 29), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + node.set_description(LocalizedText::from( + "A simple enumerated type used for testing.", + )); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11886), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 29), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_2(address_space: &mut AddressSpace) { @@ -36,11 +52,33 @@ fn add_variable_2(address_space: &mut AddressSpace) { let name = "EnumValues"; let value = Variant::Empty; let node_id = NodeId::new(0, 11886); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7594), Some(1), None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 398), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 7594), + Some(1), + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 398), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } - diff --git a/server/src/address_space/generated/nodeset_9_1.rs b/server/src/address_space/generated/nodeset_9_1.rs index 743fb15c0..1675540b1 100644 --- a/server/src/address_space/generated/nodeset_9_1.rs +++ b/server/src/address_space/generated/nodeset_9_1.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.NodeSet2.Part9.xml by tools/schema/gen_address_space.js // DO NOT EDIT THIS FILE @@ -9,8 +9,11 @@ use std::{convert::TryFrom, str::FromStr}; #[allow(unused_imports)] use crate::{ - address_space::{EventNotifier, types::*}, - prelude::{DataTypeId, ExtensionObject, LocalizedText, NodeId, ReferenceTypeId, service_types::Argument, UAString, Variant, VariantTypeId} + address_space::{types::*, EventNotifier}, + prelude::{ + service_types::Argument, DataTypeId, ExtensionObject, LocalizedText, NodeId, + ReferenceTypeId, UAString, Variant, VariantTypeId, + }, }; #[allow(unused_variables)] @@ -122,17 +125,56 @@ fn add_object_1(address_space: &mut AddressSpace) { let name = "ShelvingState"; let node_id = NodeId::new(0, 9178); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 9179), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 9184), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 9189), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 9213), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 9211), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 9212), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2929), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2915), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 9179), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9184), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9189), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9213), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9211), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9212), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2929), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2915), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_2(address_space: &mut AddressSpace) { @@ -140,11 +182,26 @@ fn add_object_2(address_space: &mut AddressSpace) { let name = "FirstInGroup"; let node_id = NodeId::new(0, 16398); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16405), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2915), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16405), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2915), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_3(address_space: &mut AddressSpace) { @@ -152,10 +209,21 @@ fn add_object_3(address_space: &mut AddressSpace) { let name = ""; let node_id = NodeId::new(0, 16399); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16405), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11508), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16405), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11508), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_4(address_space: &mut AddressSpace) { @@ -163,36 +231,151 @@ fn add_object_4(address_space: &mut AddressSpace) { let name = ""; let node_id = NodeId::new(0, 16406); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16407), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16408), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16409), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16410), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16411), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16412), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16414), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16415), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16416), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16417), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16420), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16421), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16422), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16423), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16432), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16434), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16436), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16438), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16439), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16440), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16441), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16443), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16461), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16465), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16474), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16519), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2915), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 11508), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16407), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16408), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16409), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16410), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16411), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16412), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16414), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16415), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16416), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16417), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16420), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16421), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16422), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16423), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16432), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16434), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16436), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16438), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16439), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16440), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16441), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16443), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16461), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16465), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16474), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16519), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2915), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11508), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ]), + ); } fn add_object_5(address_space: &mut AddressSpace) { @@ -200,11 +383,26 @@ fn add_object_5(address_space: &mut AddressSpace) { let name = "Unshelved"; let node_id = NodeId::new(0, 2930); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 6098), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2307), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2929), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 6098), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2307), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2929), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_6(address_space: &mut AddressSpace) { @@ -212,11 +410,26 @@ fn add_object_6(address_space: &mut AddressSpace) { let name = "TimedShelved"; let node_id = NodeId::new(0, 2932); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 6100), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2307), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2929), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 6100), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2307), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2929), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_7(address_space: &mut AddressSpace) { @@ -224,11 +437,26 @@ fn add_object_7(address_space: &mut AddressSpace) { let name = "OneShotShelved"; let node_id = NodeId::new(0, 2933); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 6101), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2307), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2929), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 6101), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2307), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2929), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_8(address_space: &mut AddressSpace) { @@ -236,11 +464,26 @@ fn add_object_8(address_space: &mut AddressSpace) { let name = "UnshelvedToTimedShelved"; let node_id = NodeId::new(0, 2935); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11322), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2310), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2929), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11322), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2310), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2929), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_9(address_space: &mut AddressSpace) { @@ -248,11 +491,26 @@ fn add_object_9(address_space: &mut AddressSpace) { let name = "UnshelvedToOneShotShelved"; let node_id = NodeId::new(0, 2936); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11323), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2310), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2929), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11323), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2310), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2929), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_10(address_space: &mut AddressSpace) { @@ -260,11 +518,26 @@ fn add_object_10(address_space: &mut AddressSpace) { let name = "TimedShelvedToUnshelved"; let node_id = NodeId::new(0, 2940); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11324), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2310), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2929), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11324), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2310), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2929), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_11(address_space: &mut AddressSpace) { @@ -272,11 +545,26 @@ fn add_object_11(address_space: &mut AddressSpace) { let name = "TimedShelvedToOneShotShelved"; let node_id = NodeId::new(0, 2942); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11325), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2310), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2929), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11325), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2310), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2929), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_12(address_space: &mut AddressSpace) { @@ -284,11 +572,26 @@ fn add_object_12(address_space: &mut AddressSpace) { let name = "OneShotShelvedToUnshelved"; let node_id = NodeId::new(0, 2943); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11326), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2310), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2929), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11326), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2310), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2929), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_13(address_space: &mut AddressSpace) { @@ -296,11 +599,26 @@ fn add_object_13(address_space: &mut AddressSpace) { let name = "OneShotShelvedToTimedShelved"; let node_id = NodeId::new(0, 2945); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11327), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2310), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 2929), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11327), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2310), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2929), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_14(address_space: &mut AddressSpace) { @@ -308,11 +626,26 @@ fn add_object_14(address_space: &mut AddressSpace) { let name = "HighHigh"; let node_id = NodeId::new(0, 9329); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 9330), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2307), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 9318), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 9330), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2307), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9318), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_15(address_space: &mut AddressSpace) { @@ -320,11 +653,26 @@ fn add_object_15(address_space: &mut AddressSpace) { let name = "High"; let node_id = NodeId::new(0, 9331); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 9332), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2307), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 9318), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 9332), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2307), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9318), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_16(address_space: &mut AddressSpace) { @@ -332,11 +680,26 @@ fn add_object_16(address_space: &mut AddressSpace) { let name = "Low"; let node_id = NodeId::new(0, 9333); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 9334), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2307), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 9318), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 9334), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2307), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9318), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_17(address_space: &mut AddressSpace) { @@ -344,11 +707,26 @@ fn add_object_17(address_space: &mut AddressSpace) { let name = "LowLow"; let node_id = NodeId::new(0, 9335); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 9336), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2307), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 9318), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 9336), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2307), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9318), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_18(address_space: &mut AddressSpace) { @@ -356,11 +734,26 @@ fn add_object_18(address_space: &mut AddressSpace) { let name = "LowLowToLow"; let node_id = NodeId::new(0, 9337); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11340), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2310), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 9318), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11340), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2310), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9318), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_19(address_space: &mut AddressSpace) { @@ -368,11 +761,26 @@ fn add_object_19(address_space: &mut AddressSpace) { let name = "LowToLowLow"; let node_id = NodeId::new(0, 9338); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11341), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2310), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 9318), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11341), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2310), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9318), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_20(address_space: &mut AddressSpace) { @@ -380,11 +788,26 @@ fn add_object_20(address_space: &mut AddressSpace) { let name = "HighHighToHigh"; let node_id = NodeId::new(0, 9339); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11342), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2310), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 9318), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11342), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2310), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9318), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_21(address_space: &mut AddressSpace) { @@ -392,11 +815,26 @@ fn add_object_21(address_space: &mut AddressSpace) { let name = "HighToHighHigh"; let node_id = NodeId::new(0, 9340); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11343), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2310), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 9318), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11343), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2310), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9318), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_object_22(address_space: &mut AddressSpace) { @@ -404,13 +842,36 @@ fn add_object_22(address_space: &mut AddressSpace) { let name = "LimitState"; let node_id = NodeId::new(0, 9455); let node = Object::new(&node_id, name, name, EventNotifier::empty()); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 9456), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 9461), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 9318), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9341), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 9456), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9461), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9318), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9341), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_23(address_space: &mut AddressSpace) { @@ -418,26 +879,101 @@ fn add_objecttype_23(address_space: &mut AddressSpace) { let name = "ConditionType"; let node_id = NodeId::new(0, 2782); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11112), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11113), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16363), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16364), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 9009), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 9010), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 3874), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 9011), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 9020), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 9022), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 9024), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 9026), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 9028), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 9027), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 9029), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 3875), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 12912), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2041), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11112), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11113), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16363), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16364), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9009), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9010), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3874), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9011), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9020), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9022), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9024), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9026), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9028), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9027), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9029), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3875), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12912), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2041), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_24(address_space: &mut AddressSpace) { @@ -445,18 +981,61 @@ fn add_objecttype_24(address_space: &mut AddressSpace) { let name = "DialogConditionType"; let node_id = NodeId::new(0, 2830); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 9035), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 9055), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2831), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 9064), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 9065), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 9066), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 9067), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 9068), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 9069), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2782), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 9035), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9055), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2831), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9064), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9065), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9066), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9067), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9068), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9069), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2782), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_25(address_space: &mut AddressSpace) { @@ -464,14 +1043,41 @@ fn add_objecttype_25(address_space: &mut AddressSpace) { let name = "AcknowledgeableConditionType"; let node_id = NodeId::new(0, 2881); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 9073), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 9093), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 9102), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 9111), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 9113), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2782), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 9073), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9093), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9102), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9111), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9113), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2782), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_26(address_space: &mut AddressSpace) { @@ -479,33 +1085,136 @@ fn add_objecttype_26(address_space: &mut AddressSpace) { let name = "AlarmConditionType"; let node_id = NodeId::new(0, 2915); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 9118), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 9160), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 11120), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 9169), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16371), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 9178), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 9215), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 9216), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16389), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16390), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16380), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16395), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16396), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16397), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16398), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 18190), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16400), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16401), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16402), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 16403), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17868), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17869), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17870), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 18199), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2881), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 9118), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9160), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11120), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9169), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16371), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9178), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9215), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9216), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16389), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16390), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16380), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16395), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16396), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16397), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16398), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18190), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16400), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16401), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16402), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16403), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17868), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17869), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17870), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18199), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2881), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_27(address_space: &mut AddressSpace) { @@ -513,9 +1222,14 @@ fn add_objecttype_27(address_space: &mut AddressSpace) { let name = "AlarmGroupType"; let node_id = NodeId::new(0, 16405); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 61), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 61), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_28(address_space: &mut AddressSpace) { @@ -523,22 +1237,81 @@ fn add_objecttype_28(address_space: &mut AddressSpace) { let name = "ShelvedStateMachineType"; let node_id = NodeId::new(0, 2929); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 9115), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2930), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2932), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2933), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2935), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2936), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2940), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2942), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2943), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2945), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2949), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2947), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2948), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2771), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 9115), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2930), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2932), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2933), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2935), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2936), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2940), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2942), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2943), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2945), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2949), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2947), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2948), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2771), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_29(address_space: &mut AddressSpace) { @@ -546,17 +1319,56 @@ fn add_objecttype_29(address_space: &mut AddressSpace) { let name = "LimitAlarmType"; let node_id = NodeId::new(0, 2955); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11124), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11125), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11126), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11127), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16572), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16573), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16574), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16575), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2915), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11124), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11125), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11126), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11127), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16572), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16573), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16574), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16575), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2915), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_30(address_space: &mut AddressSpace) { @@ -564,17 +1376,56 @@ fn add_objecttype_30(address_space: &mut AddressSpace) { let name = "ExclusiveLimitStateMachineType"; let node_id = NodeId::new(0, 9318); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 9329), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 9331), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 9333), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 9335), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 9337), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 9338), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 9339), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 9340), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2771), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 9329), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9331), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9333), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9335), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9337), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9338), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9339), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9340), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2771), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_31(address_space: &mut AddressSpace) { @@ -582,11 +1433,26 @@ fn add_objecttype_31(address_space: &mut AddressSpace) { let name = "ExclusiveLimitAlarmType"; let node_id = NodeId::new(0, 9341); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 9398), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 9455), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2955), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 9398), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9455), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2955), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_32(address_space: &mut AddressSpace) { @@ -594,14 +1460,41 @@ fn add_objecttype_32(address_space: &mut AddressSpace) { let name = "NonExclusiveLimitAlarmType"; let node_id = NodeId::new(0, 9906); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 9963), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 10020), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 10029), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 10038), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 10047), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 2955), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 9963), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 10020), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 10029), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 10038), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 10047), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2955), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_33(address_space: &mut AddressSpace) { @@ -609,9 +1502,14 @@ fn add_objecttype_33(address_space: &mut AddressSpace) { let name = "NonExclusiveLevelAlarmType"; let node_id = NodeId::new(0, 10060); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 9906), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 9906), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_34(address_space: &mut AddressSpace) { @@ -619,9 +1517,14 @@ fn add_objecttype_34(address_space: &mut AddressSpace) { let name = "ExclusiveLevelAlarmType"; let node_id = NodeId::new(0, 9482); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 9341), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 9341), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_35(address_space: &mut AddressSpace) { @@ -629,11 +1532,26 @@ fn add_objecttype_35(address_space: &mut AddressSpace) { let name = "NonExclusiveDeviationAlarmType"; let node_id = NodeId::new(0, 10368); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 10522), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16776), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 9906), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 10522), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16776), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9906), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_36(address_space: &mut AddressSpace) { @@ -641,10 +1559,21 @@ fn add_objecttype_36(address_space: &mut AddressSpace) { let name = "NonExclusiveRateOfChangeAlarmType"; let node_id = NodeId::new(0, 10214); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16858), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 9906), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16858), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9906), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_37(address_space: &mut AddressSpace) { @@ -652,11 +1581,26 @@ fn add_objecttype_37(address_space: &mut AddressSpace) { let name = "ExclusiveDeviationAlarmType"; let node_id = NodeId::new(0, 9764); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 9905), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16817), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 9341), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 9905), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16817), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9341), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_38(address_space: &mut AddressSpace) { @@ -664,10 +1608,21 @@ fn add_objecttype_38(address_space: &mut AddressSpace) { let name = "ExclusiveRateOfChangeAlarmType"; let node_id = NodeId::new(0, 9623); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16899), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 9341), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16899), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9341), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_39(address_space: &mut AddressSpace) { @@ -675,9 +1630,14 @@ fn add_objecttype_39(address_space: &mut AddressSpace) { let name = "DiscreteAlarmType"; let node_id = NodeId::new(0, 10523); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2915), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2915), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_40(address_space: &mut AddressSpace) { @@ -685,10 +1645,21 @@ fn add_objecttype_40(address_space: &mut AddressSpace) { let name = "OffNormalAlarmType"; let node_id = NodeId::new(0, 10637); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11158), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 10523), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11158), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 10523), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_41(address_space: &mut AddressSpace) { @@ -696,9 +1667,14 @@ fn add_objecttype_41(address_space: &mut AddressSpace) { let name = "SystemOffNormalAlarmType"; let node_id = NodeId::new(0, 11753); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 10637), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 10637), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_42(address_space: &mut AddressSpace) { @@ -706,9 +1682,14 @@ fn add_objecttype_42(address_space: &mut AddressSpace) { let name = "TripAlarmType"; let node_id = NodeId::new(0, 10751); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 10637), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 10637), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_43(address_space: &mut AddressSpace) { @@ -716,9 +1697,14 @@ fn add_objecttype_43(address_space: &mut AddressSpace) { let name = "InstrumentDiagnosticAlarmType"; let node_id = NodeId::new(0, 18347); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 10637), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 10637), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_44(address_space: &mut AddressSpace) { @@ -726,9 +1712,14 @@ fn add_objecttype_44(address_space: &mut AddressSpace) { let name = "SystemDiagnosticAlarmType"; let node_id = NodeId::new(0, 18496); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 10637), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 10637), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_45(address_space: &mut AddressSpace) { @@ -736,13 +1727,36 @@ fn add_objecttype_45(address_space: &mut AddressSpace) { let name = "CertificateExpirationAlarmType"; let node_id = NodeId::new(0, 13225); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 13325), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 14900), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13326), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 13327), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11753), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 13325), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 14900), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13326), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13327), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11753), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_46(address_space: &mut AddressSpace) { @@ -750,12 +1764,31 @@ fn add_objecttype_46(address_space: &mut AddressSpace) { let name = "DiscrepancyAlarmType"; let node_id = NodeId::new(0, 17080); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17215), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17216), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17217), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2915), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17215), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17216), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17217), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2915), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_47(address_space: &mut AddressSpace) { @@ -763,9 +1796,14 @@ fn add_objecttype_47(address_space: &mut AddressSpace) { let name = "BaseConditionClassType"; let node_id = NodeId::new(0, 11163); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 58), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 58), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_48(address_space: &mut AddressSpace) { @@ -773,9 +1811,14 @@ fn add_objecttype_48(address_space: &mut AddressSpace) { let name = "ProcessConditionClassType"; let node_id = NodeId::new(0, 11164); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11163), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 11163), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_49(address_space: &mut AddressSpace) { @@ -783,9 +1826,14 @@ fn add_objecttype_49(address_space: &mut AddressSpace) { let name = "MaintenanceConditionClassType"; let node_id = NodeId::new(0, 11165); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11163), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 11163), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_50(address_space: &mut AddressSpace) { @@ -793,9 +1841,14 @@ fn add_objecttype_50(address_space: &mut AddressSpace) { let name = "SystemConditionClassType"; let node_id = NodeId::new(0, 11166); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11163), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 11163), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_51(address_space: &mut AddressSpace) { @@ -803,9 +1856,14 @@ fn add_objecttype_51(address_space: &mut AddressSpace) { let name = "SafetyConditionClassType"; let node_id = NodeId::new(0, 17218); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11163), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 11163), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_52(address_space: &mut AddressSpace) { @@ -813,9 +1871,14 @@ fn add_objecttype_52(address_space: &mut AddressSpace) { let name = "HighlyManagedAlarmConditionClassType"; let node_id = NodeId::new(0, 17219); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11163), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 11163), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_53(address_space: &mut AddressSpace) { @@ -823,9 +1886,14 @@ fn add_objecttype_53(address_space: &mut AddressSpace) { let name = "TrainingConditionClassType"; let node_id = NodeId::new(0, 17220); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11163), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 11163), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_54(address_space: &mut AddressSpace) { @@ -833,9 +1901,14 @@ fn add_objecttype_54(address_space: &mut AddressSpace) { let name = "StatisticalConditionClassType"; let node_id = NodeId::new(0, 18665); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11163), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 11163), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_55(address_space: &mut AddressSpace) { @@ -843,9 +1916,14 @@ fn add_objecttype_55(address_space: &mut AddressSpace) { let name = "TestingConditionSubClassType"; let node_id = NodeId::new(0, 17221); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11163), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 11163), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_56(address_space: &mut AddressSpace) { @@ -853,9 +1931,14 @@ fn add_objecttype_56(address_space: &mut AddressSpace) { let name = "AuditConditionEventType"; let node_id = NodeId::new(0, 2790); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2127), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2127), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_57(address_space: &mut AddressSpace) { @@ -863,9 +1946,14 @@ fn add_objecttype_57(address_space: &mut AddressSpace) { let name = "AuditConditionEnableEventType"; let node_id = NodeId::new(0, 2803); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2790), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2790), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_58(address_space: &mut AddressSpace) { @@ -873,11 +1961,26 @@ fn add_objecttype_58(address_space: &mut AddressSpace) { let name = "AuditConditionCommentEventType"; let node_id = NodeId::new(0, 2829); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17222), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11851), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2790), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17222), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11851), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2790), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_59(address_space: &mut AddressSpace) { @@ -885,10 +1988,21 @@ fn add_objecttype_59(address_space: &mut AddressSpace) { let name = "AuditConditionRespondEventType"; let node_id = NodeId::new(0, 8927); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11852), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2790), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11852), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2790), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_60(address_space: &mut AddressSpace) { @@ -896,11 +2010,26 @@ fn add_objecttype_60(address_space: &mut AddressSpace) { let name = "AuditConditionAcknowledgeEventType"; let node_id = NodeId::new(0, 8944); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17223), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11853), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2790), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17223), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11853), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2790), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_61(address_space: &mut AddressSpace) { @@ -908,11 +2037,26 @@ fn add_objecttype_61(address_space: &mut AddressSpace) { let name = "AuditConditionConfirmEventType"; let node_id = NodeId::new(0, 8961); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17224), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11854), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2790), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17224), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11854), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2790), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_62(address_space: &mut AddressSpace) { @@ -920,10 +2064,21 @@ fn add_objecttype_62(address_space: &mut AddressSpace) { let name = "AuditConditionShelvingEventType"; let node_id = NodeId::new(0, 11093); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 11855), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2790), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 11855), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2790), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_objecttype_63(address_space: &mut AddressSpace) { @@ -931,9 +2086,14 @@ fn add_objecttype_63(address_space: &mut AddressSpace) { let name = "AuditConditionSuppressionEventType"; let node_id = NodeId::new(0, 17225); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2790), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2790), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_64(address_space: &mut AddressSpace) { @@ -941,9 +2101,14 @@ fn add_objecttype_64(address_space: &mut AddressSpace) { let name = "AuditConditionSilenceEventType"; let node_id = NodeId::new(0, 17242); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2790), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2790), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_65(address_space: &mut AddressSpace) { @@ -951,9 +2116,14 @@ fn add_objecttype_65(address_space: &mut AddressSpace) { let name = "AuditConditionResetEventType"; let node_id = NodeId::new(0, 15013); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2790), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2790), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_66(address_space: &mut AddressSpace) { @@ -961,9 +2131,14 @@ fn add_objecttype_66(address_space: &mut AddressSpace) { let name = "AuditConditionOutOfServiceEventType"; let node_id = NodeId::new(0, 17259); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2790), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2790), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_67(address_space: &mut AddressSpace) { @@ -971,9 +2146,14 @@ fn add_objecttype_67(address_space: &mut AddressSpace) { let name = "RefreshStartEventType"; let node_id = NodeId::new(0, 2787); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2130), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2130), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_68(address_space: &mut AddressSpace) { @@ -981,9 +2161,14 @@ fn add_objecttype_68(address_space: &mut AddressSpace) { let name = "RefreshEndEventType"; let node_id = NodeId::new(0, 2788); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2130), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2130), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_69(address_space: &mut AddressSpace) { @@ -991,9 +2176,14 @@ fn add_objecttype_69(address_space: &mut AddressSpace) { let name = "RefreshRequiredEventType"; let node_id = NodeId::new(0, 2789); let node = ObjectType::new(&node_id, name, name, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2130), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 2130), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_objecttype_70(address_space: &mut AddressSpace) { @@ -1001,108 +2191,259 @@ fn add_objecttype_70(address_space: &mut AddressSpace) { let name = "AlarmMetricsType"; let node_id = NodeId::new(0, 17279); let node = ObjectType::new(&node_id, name, name, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17280), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17991), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17281), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17282), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17284), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17286), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17283), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 17288), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 18666), &ReferenceTypeId::HasComponent, ReferenceDirection::Forward), - (&NodeId::new(0, 58), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17280), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17991), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17281), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17282), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17284), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17286), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17283), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17288), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18666), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 58), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_referencetype_71(address_space: &mut AddressSpace) { // ReferenceType let name = "HasTrueSubState"; let node_id = NodeId::new(0, 9004); - let node = ReferenceType::new(&node_id, name, name, Some(LocalizedText::new("", "IsTrueSubStateOf")), false, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 32), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let node = ReferenceType::new( + &node_id, + name, + name, + Some(LocalizedText::new("", "IsTrueSubStateOf")), + false, + false, + ); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 32), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_referencetype_72(address_space: &mut AddressSpace) { // ReferenceType let name = "HasFalseSubState"; let node_id = NodeId::new(0, 9005); - let node = ReferenceType::new(&node_id, name, name, Some(LocalizedText::new("", "IsFalseSubStateOf")), false, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 32), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let node = ReferenceType::new( + &node_id, + name, + name, + Some(LocalizedText::new("", "IsFalseSubStateOf")), + false, + false, + ); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 32), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_referencetype_73(address_space: &mut AddressSpace) { // ReferenceType let name = "HasAlarmSuppressionGroup"; let node_id = NodeId::new(0, 16361); - let node = ReferenceType::new(&node_id, name, name, Some(LocalizedText::new("", "IsAlarmSuppressionGroupOf")), false, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 47), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let node = ReferenceType::new( + &node_id, + name, + name, + Some(LocalizedText::new("", "IsAlarmSuppressionGroupOf")), + false, + false, + ); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 47), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_referencetype_74(address_space: &mut AddressSpace) { // ReferenceType let name = "AlarmGroupMember"; let node_id = NodeId::new(0, 16362); - let node = ReferenceType::new(&node_id, name, name, Some(LocalizedText::new("", "MemberOfAlarmGroup")), false, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 35), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let node = ReferenceType::new( + &node_id, + name, + name, + Some(LocalizedText::new("", "MemberOfAlarmGroup")), + false, + false, + ); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 35), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_referencetype_75(address_space: &mut AddressSpace) { // ReferenceType let name = "HasCondition"; let node_id = NodeId::new(0, 9006); - let node = ReferenceType::new(&node_id, name, name, Some(LocalizedText::new("", "IsConditionOf")), false, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 32), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let node = ReferenceType::new( + &node_id, + name, + name, + Some(LocalizedText::new("", "IsConditionOf")), + false, + false, + ); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 32), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_referencetype_76(address_space: &mut AddressSpace) { // ReferenceType let name = "HasEffectDisable"; let node_id = NodeId::new(0, 17276); - let node = ReferenceType::new(&node_id, name, name, Some(LocalizedText::new("", "MayBeDisabledBy")), false, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 54), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let node = ReferenceType::new( + &node_id, + name, + name, + Some(LocalizedText::new("", "MayBeDisabledBy")), + false, + false, + ); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 54), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_referencetype_77(address_space: &mut AddressSpace) { // ReferenceType let name = "HasEffectEnable"; let node_id = NodeId::new(0, 17983); - let node = ReferenceType::new(&node_id, name, name, Some(LocalizedText::new("", "MayBeEnabledBy")), false, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 54), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let node = ReferenceType::new( + &node_id, + name, + name, + Some(LocalizedText::new("", "MayBeEnabledBy")), + false, + false, + ); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 54), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_referencetype_78(address_space: &mut AddressSpace) { // ReferenceType let name = "HasEffectSuppressed"; let node_id = NodeId::new(0, 17984); - let node = ReferenceType::new(&node_id, name, name, Some(LocalizedText::new("", "MayBeSuppressedBy")), false, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 54), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let node = ReferenceType::new( + &node_id, + name, + name, + Some(LocalizedText::new("", "MayBeSuppressedBy")), + false, + false, + ); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 54), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_referencetype_79(address_space: &mut AddressSpace) { // ReferenceType let name = "HasEffectUnsuppressed"; let node_id = NodeId::new(0, 17985); - let node = ReferenceType::new(&node_id, name, name, Some(LocalizedText::new("", "MayBeUnsuppressedBy")), false, false); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 54), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let node = ReferenceType::new( + &node_id, + name, + name, + Some(LocalizedText::new("", "MayBeUnsuppressedBy")), + false, + false, + ); + let _ = address_space.insert( + node, + Some(&[( + &NodeId::new(0, 54), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + )]), + ); } fn add_variable_80(address_space: &mut AddressSpace) { @@ -1111,11 +2452,26 @@ fn add_variable_80(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 8996); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 8995), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8995), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_81(address_space: &mut AddressSpace) { @@ -1123,12 +2479,28 @@ fn add_variable_81(address_space: &mut AddressSpace) { let name = "TransitionTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 9000); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 8995), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8995), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_82(address_space: &mut AddressSpace) { @@ -1136,12 +2508,28 @@ fn add_variable_82(address_space: &mut AddressSpace) { let name = "EffectiveTransitionTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 9001); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 8995), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8995), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_83(address_space: &mut AddressSpace) { @@ -1149,12 +2537,28 @@ fn add_variable_83(address_space: &mut AddressSpace) { let name = "TrueState"; let value = Variant::Empty; let node_id = NodeId::new(0, 11110); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 8995), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8995), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_84(address_space: &mut AddressSpace) { @@ -1162,12 +2566,28 @@ fn add_variable_84(address_space: &mut AddressSpace) { let name = "FalseState"; let value = Variant::Empty; let node_id = NodeId::new(0, 11111); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 8995), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8995), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_85(address_space: &mut AddressSpace) { @@ -1175,12 +2595,28 @@ fn add_variable_85(address_space: &mut AddressSpace) { let name = "SourceTimestamp"; let value = Variant::Empty; let node_id = NodeId::new(0, 9003); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9002), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9002), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_86(address_space: &mut AddressSpace) { @@ -1188,12 +2624,28 @@ fn add_variable_86(address_space: &mut AddressSpace) { let name = "ConditionClassId"; let value = Variant::Empty; let node_id = NodeId::new(0, 11112); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2782), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2782), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_87(address_space: &mut AddressSpace) { @@ -1201,12 +2653,28 @@ fn add_variable_87(address_space: &mut AddressSpace) { let name = "ConditionClassName"; let value = Variant::Empty; let node_id = NodeId::new(0, 11113); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2782), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2782), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_88(address_space: &mut AddressSpace) { @@ -1214,12 +2682,35 @@ fn add_variable_88(address_space: &mut AddressSpace) { let name = "ConditionSubClassId"; let value = Variant::Empty; let node_id = NodeId::new(0, 16363); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2782), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 17), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2782), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_89(address_space: &mut AddressSpace) { @@ -1227,12 +2718,35 @@ fn add_variable_89(address_space: &mut AddressSpace) { let name = "ConditionSubClassName"; let value = Variant::Empty; let node_id = NodeId::new(0, 16364); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2782), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 21), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2782), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_90(address_space: &mut AddressSpace) { @@ -1240,12 +2754,28 @@ fn add_variable_90(address_space: &mut AddressSpace) { let name = "ConditionName"; let value = Variant::Empty; let node_id = NodeId::new(0, 9009); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2782), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2782), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_91(address_space: &mut AddressSpace) { @@ -1253,12 +2783,28 @@ fn add_variable_91(address_space: &mut AddressSpace) { let name = "BranchId"; let value = Variant::Empty; let node_id = NodeId::new(0, 9010); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2782), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2782), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_92(address_space: &mut AddressSpace) { @@ -1267,11 +2813,26 @@ fn add_variable_92(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 3874); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2782), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2782), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_93(address_space: &mut AddressSpace) { @@ -1279,18 +2840,58 @@ fn add_variable_93(address_space: &mut AddressSpace) { let name = "EnabledState"; let value = Variant::Empty; let node_id = NodeId::new(0, 9011); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 9012), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 9015), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 9016), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 9017), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 9018), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 9019), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 8995), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2782), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 9012), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9015), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9016), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9017), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9018), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9019), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8995), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2782), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_94(address_space: &mut AddressSpace) { @@ -1299,11 +2900,26 @@ fn add_variable_94(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 9012); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9011), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9011), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_95(address_space: &mut AddressSpace) { @@ -1311,12 +2927,28 @@ fn add_variable_95(address_space: &mut AddressSpace) { let name = "EffectiveDisplayName"; let value = Variant::Empty; let node_id = NodeId::new(0, 9015); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9011), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9011), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_96(address_space: &mut AddressSpace) { @@ -1324,12 +2956,28 @@ fn add_variable_96(address_space: &mut AddressSpace) { let name = "TransitionTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 9016); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9011), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9011), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_97(address_space: &mut AddressSpace) { @@ -1337,12 +2985,28 @@ fn add_variable_97(address_space: &mut AddressSpace) { let name = "EffectiveTransitionTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 9017); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9011), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9011), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_98(address_space: &mut AddressSpace) { @@ -1350,12 +3014,28 @@ fn add_variable_98(address_space: &mut AddressSpace) { let name = "TrueState"; let value = Variant::Empty; let node_id = NodeId::new(0, 9018); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9011), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9011), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_99(address_space: &mut AddressSpace) { @@ -1363,12 +3043,28 @@ fn add_variable_99(address_space: &mut AddressSpace) { let name = "FalseState"; let value = Variant::Empty; let node_id = NodeId::new(0, 9019); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9011), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9011), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_100(address_space: &mut AddressSpace) { @@ -1376,12 +3072,31 @@ fn add_variable_100(address_space: &mut AddressSpace) { let name = "Quality"; let value = Variant::Empty; let node_id = NodeId::new(0, 9020); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 9021), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 9002), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2782), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 9021), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9002), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2782), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } - diff --git a/server/src/address_space/generated/nodeset_9_2.rs b/server/src/address_space/generated/nodeset_9_2.rs index 3ddf4b2f6..63509de16 100644 --- a/server/src/address_space/generated/nodeset_9_2.rs +++ b/server/src/address_space/generated/nodeset_9_2.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.NodeSet2.Part9.xml by tools/schema/gen_address_space.js // DO NOT EDIT THIS FILE @@ -9,8 +9,11 @@ use std::{convert::TryFrom, str::FromStr}; #[allow(unused_imports)] use crate::{ - address_space::{EventNotifier, types::*}, - prelude::{DataTypeId, ExtensionObject, LocalizedText, NodeId, ReferenceTypeId, service_types::Argument, UAString, Variant, VariantTypeId} + address_space::{types::*, EventNotifier}, + prelude::{ + service_types::Argument, DataTypeId, ExtensionObject, LocalizedText, NodeId, + ReferenceTypeId, UAString, Variant, VariantTypeId, + }, }; #[allow(unused_variables)] @@ -122,12 +125,28 @@ fn add_variable_1(address_space: &mut AddressSpace) { let name = "SourceTimestamp"; let value = Variant::Empty; let node_id = NodeId::new(0, 9021); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9020), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9020), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_2(address_space: &mut AddressSpace) { @@ -136,12 +155,31 @@ fn add_variable_2(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 9022); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 9023), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 9002), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2782), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 9023), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9002), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2782), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_3(address_space: &mut AddressSpace) { @@ -149,12 +187,28 @@ fn add_variable_3(address_space: &mut AddressSpace) { let name = "SourceTimestamp"; let value = Variant::Empty; let node_id = NodeId::new(0, 9023); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9022), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9022), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_4(address_space: &mut AddressSpace) { @@ -162,13 +216,33 @@ fn add_variable_4(address_space: &mut AddressSpace) { let name = "Comment"; let value = Variant::Empty; let node_id = NodeId::new(0, 9024); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 9025), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 9002), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2782), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 9025), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9002), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2782), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_5(address_space: &mut AddressSpace) { @@ -176,12 +250,28 @@ fn add_variable_5(address_space: &mut AddressSpace) { let name = "SourceTimestamp"; let value = Variant::Empty; let node_id = NodeId::new(0, 9025); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9024), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9024), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_6(address_space: &mut AddressSpace) { @@ -189,12 +279,28 @@ fn add_variable_6(address_space: &mut AddressSpace) { let name = "ClientUserId"; let value = Variant::Empty; let node_id = NodeId::new(0, 9026); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2782), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2782), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_7(address_space: &mut AddressSpace) { @@ -202,51 +308,101 @@ fn add_variable_7(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("EventId"), data_type: NodeId::new(0, 15), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("Comment"), data_type: NodeId::new(0, 21), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 9030); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9029), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9029), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_8(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("SubscriptionId"), - data_type: NodeId::new(0, 288), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("SubscriptionId"), + data_type: NodeId::new(0, 288), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 3876); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 3875), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 3875), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_9(address_space: &mut AddressSpace) { @@ -254,29 +410,56 @@ fn add_variable_9(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("SubscriptionId"), data_type: NodeId::new(0, 288), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("MonitoredItemId"), data_type: NodeId::new(0, 288), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 12913); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 12912), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 12912), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_10(address_space: &mut AddressSpace) { @@ -284,13 +467,33 @@ fn add_variable_10(address_space: &mut AddressSpace) { let name = "EnabledState"; let value = Variant::Empty; let node_id = NodeId::new(0, 9035); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 9036), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 8995), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2830), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 9036), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8995), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2830), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_11(address_space: &mut AddressSpace) { @@ -299,11 +502,26 @@ fn add_variable_11(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 9036); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9035), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9035), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_12(address_space: &mut AddressSpace) { @@ -311,16 +529,48 @@ fn add_variable_12(address_space: &mut AddressSpace) { let name = "DialogState"; let value = Variant::Empty; let node_id = NodeId::new(0, 9055); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 9056), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 9060), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 9062), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 9063), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 8995), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2830), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 9056), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9060), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9062), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9063), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8995), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2830), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_13(address_space: &mut AddressSpace) { @@ -329,11 +579,26 @@ fn add_variable_13(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 9056); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9055), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9055), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_14(address_space: &mut AddressSpace) { @@ -341,12 +606,28 @@ fn add_variable_14(address_space: &mut AddressSpace) { let name = "TransitionTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 9060); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9055), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9055), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_15(address_space: &mut AddressSpace) { @@ -354,12 +635,28 @@ fn add_variable_15(address_space: &mut AddressSpace) { let name = "TrueState"; let value = Variant::Empty; let node_id = NodeId::new(0, 9062); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9055), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9055), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_16(address_space: &mut AddressSpace) { @@ -367,12 +664,28 @@ fn add_variable_16(address_space: &mut AddressSpace) { let name = "FalseState"; let value = Variant::Empty; let node_id = NodeId::new(0, 9063); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9055), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9055), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_17(address_space: &mut AddressSpace) { @@ -380,12 +693,28 @@ fn add_variable_17(address_space: &mut AddressSpace) { let name = "Prompt"; let value = Variant::Empty; let node_id = NodeId::new(0, 2831); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2830), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2830), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_18(address_space: &mut AddressSpace) { @@ -393,12 +722,35 @@ fn add_variable_18(address_space: &mut AddressSpace) { let name = "ResponseOptionSet"; let value = Variant::Empty; let node_id = NodeId::new(0, 9064); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), Some(1), Some(0), value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2830), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 21), + Some(1), + Some(0), + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2830), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_19(address_space: &mut AddressSpace) { @@ -407,11 +759,26 @@ fn add_variable_19(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 9065); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 6), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2830), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2830), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_20(address_space: &mut AddressSpace) { @@ -420,11 +787,26 @@ fn add_variable_20(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 9066); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 6), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2830), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2830), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_21(address_space: &mut AddressSpace) { @@ -433,11 +815,26 @@ fn add_variable_21(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 9067); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 6), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2830), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2830), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_22(address_space: &mut AddressSpace) { @@ -446,33 +843,71 @@ fn add_variable_22(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 9068); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 6), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2830), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2830), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_23(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("SelectedResponse"), - data_type: NodeId::new(0, 6), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("SelectedResponse"), + data_type: NodeId::new(0, 6), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 9070); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9069), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9069), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_24(address_space: &mut AddressSpace) { @@ -480,13 +915,33 @@ fn add_variable_24(address_space: &mut AddressSpace) { let name = "EnabledState"; let value = Variant::Empty; let node_id = NodeId::new(0, 9073); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 9074), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 8995), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2881), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 9074), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8995), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2881), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_25(address_space: &mut AddressSpace) { @@ -495,11 +950,26 @@ fn add_variable_25(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 9074); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9073), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9073), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_26(address_space: &mut AddressSpace) { @@ -507,16 +977,48 @@ fn add_variable_26(address_space: &mut AddressSpace) { let name = "AckedState"; let value = Variant::Empty; let node_id = NodeId::new(0, 9093); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 9094), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 9098), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 9100), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 9101), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 8995), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2881), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 9094), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9098), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9100), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9101), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8995), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2881), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_27(address_space: &mut AddressSpace) { @@ -525,11 +1027,26 @@ fn add_variable_27(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 9094); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9093), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9093), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_28(address_space: &mut AddressSpace) { @@ -537,12 +1054,28 @@ fn add_variable_28(address_space: &mut AddressSpace) { let name = "TransitionTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 9098); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9093), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9093), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_29(address_space: &mut AddressSpace) { @@ -550,12 +1083,28 @@ fn add_variable_29(address_space: &mut AddressSpace) { let name = "TrueState"; let value = Variant::Empty; let node_id = NodeId::new(0, 9100); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9093), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9093), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_30(address_space: &mut AddressSpace) { @@ -563,12 +1112,28 @@ fn add_variable_30(address_space: &mut AddressSpace) { let name = "FalseState"; let value = Variant::Empty; let node_id = NodeId::new(0, 9101); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9093), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9093), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_31(address_space: &mut AddressSpace) { @@ -576,16 +1141,48 @@ fn add_variable_31(address_space: &mut AddressSpace) { let name = "ConfirmedState"; let value = Variant::Empty; let node_id = NodeId::new(0, 9102); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 9103), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 9107), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 9109), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 9110), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 8995), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2881), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 9103), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9107), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9109), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9110), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8995), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2881), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_32(address_space: &mut AddressSpace) { @@ -594,11 +1191,26 @@ fn add_variable_32(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 9103); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9102), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9102), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_33(address_space: &mut AddressSpace) { @@ -606,12 +1218,28 @@ fn add_variable_33(address_space: &mut AddressSpace) { let name = "TransitionTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 9107); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9102), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9102), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_34(address_space: &mut AddressSpace) { @@ -619,12 +1247,28 @@ fn add_variable_34(address_space: &mut AddressSpace) { let name = "TrueState"; let value = Variant::Empty; let node_id = NodeId::new(0, 9109); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9102), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9102), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_35(address_space: &mut AddressSpace) { @@ -632,12 +1276,28 @@ fn add_variable_35(address_space: &mut AddressSpace) { let name = "FalseState"; let value = Variant::Empty; let node_id = NodeId::new(0, 9110); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9102), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9102), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_36(address_space: &mut AddressSpace) { @@ -645,29 +1305,56 @@ fn add_variable_36(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("EventId"), data_type: NodeId::new(0, 15), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("Comment"), data_type: NodeId::new(0, 21), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 9112); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9111), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9111), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_37(address_space: &mut AddressSpace) { @@ -675,29 +1362,56 @@ fn add_variable_37(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("EventId"), data_type: NodeId::new(0, 15), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("Comment"), data_type: NodeId::new(0, 21), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 9114); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9113), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9113), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_38(address_space: &mut AddressSpace) { @@ -705,13 +1419,33 @@ fn add_variable_38(address_space: &mut AddressSpace) { let name = "EnabledState"; let value = Variant::Empty; let node_id = NodeId::new(0, 9118); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 9119), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 8995), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2915), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 9119), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8995), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2915), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_39(address_space: &mut AddressSpace) { @@ -720,11 +1454,26 @@ fn add_variable_39(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 9119); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9118), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9118), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_40(address_space: &mut AddressSpace) { @@ -732,18 +1481,58 @@ fn add_variable_40(address_space: &mut AddressSpace) { let name = "ActiveState"; let value = Variant::Empty; let node_id = NodeId::new(0, 9160); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 9161), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 9164), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 9165), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 9166), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 9167), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 9168), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 8995), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2915), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 9161), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9164), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9165), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9166), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9167), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9168), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8995), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2915), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_41(address_space: &mut AddressSpace) { @@ -752,11 +1541,26 @@ fn add_variable_41(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 9161); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9160), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9160), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_42(address_space: &mut AddressSpace) { @@ -764,12 +1568,28 @@ fn add_variable_42(address_space: &mut AddressSpace) { let name = "EffectiveDisplayName"; let value = Variant::Empty; let node_id = NodeId::new(0, 9164); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9160), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9160), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_43(address_space: &mut AddressSpace) { @@ -777,12 +1597,28 @@ fn add_variable_43(address_space: &mut AddressSpace) { let name = "TransitionTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 9165); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9160), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9160), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_44(address_space: &mut AddressSpace) { @@ -790,12 +1626,28 @@ fn add_variable_44(address_space: &mut AddressSpace) { let name = "EffectiveTransitionTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 9166); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9160), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9160), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_45(address_space: &mut AddressSpace) { @@ -803,12 +1655,28 @@ fn add_variable_45(address_space: &mut AddressSpace) { let name = "TrueState"; let value = Variant::Empty; let node_id = NodeId::new(0, 9167); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9160), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9160), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_46(address_space: &mut AddressSpace) { @@ -816,12 +1684,28 @@ fn add_variable_46(address_space: &mut AddressSpace) { let name = "FalseState"; let value = Variant::Empty; let node_id = NodeId::new(0, 9168); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9160), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9160), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_47(address_space: &mut AddressSpace) { @@ -829,12 +1713,28 @@ fn add_variable_47(address_space: &mut AddressSpace) { let name = "InputNode"; let value = Variant::Empty; let node_id = NodeId::new(0, 11120); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2915), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2915), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_48(address_space: &mut AddressSpace) { @@ -842,16 +1742,48 @@ fn add_variable_48(address_space: &mut AddressSpace) { let name = "SuppressedState"; let value = Variant::Empty; let node_id = NodeId::new(0, 9169); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 9170), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 9174), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 9176), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 9177), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 8995), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2915), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 9170), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9174), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9176), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9177), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8995), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2915), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_49(address_space: &mut AddressSpace) { @@ -860,11 +1792,26 @@ fn add_variable_49(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 9170); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9169), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9169), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_50(address_space: &mut AddressSpace) { @@ -872,12 +1819,28 @@ fn add_variable_50(address_space: &mut AddressSpace) { let name = "TransitionTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 9174); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9169), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9169), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_51(address_space: &mut AddressSpace) { @@ -885,12 +1848,28 @@ fn add_variable_51(address_space: &mut AddressSpace) { let name = "TrueState"; let value = Variant::Empty; let node_id = NodeId::new(0, 9176); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9169), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9169), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_52(address_space: &mut AddressSpace) { @@ -898,12 +1877,28 @@ fn add_variable_52(address_space: &mut AddressSpace) { let name = "FalseState"; let value = Variant::Empty; let node_id = NodeId::new(0, 9177); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9169), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9169), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_53(address_space: &mut AddressSpace) { @@ -911,16 +1906,48 @@ fn add_variable_53(address_space: &mut AddressSpace) { let name = "OutOfServiceState"; let value = Variant::Empty; let node_id = NodeId::new(0, 16371); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16372), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16376), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16378), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16379), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 8995), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2915), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16372), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16376), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16378), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16379), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8995), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2915), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_54(address_space: &mut AddressSpace) { @@ -929,11 +1956,26 @@ fn add_variable_54(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 16372); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16371), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16371), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_55(address_space: &mut AddressSpace) { @@ -941,12 +1983,28 @@ fn add_variable_55(address_space: &mut AddressSpace) { let name = "TransitionTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 16376); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16371), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16371), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_56(address_space: &mut AddressSpace) { @@ -954,12 +2012,28 @@ fn add_variable_56(address_space: &mut AddressSpace) { let name = "TrueState"; let value = Variant::Empty; let node_id = NodeId::new(0, 16378); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16371), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16371), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_57(address_space: &mut AddressSpace) { @@ -967,12 +2041,28 @@ fn add_variable_57(address_space: &mut AddressSpace) { let name = "FalseState"; let value = Variant::Empty; let node_id = NodeId::new(0, 16379); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16371), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16371), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_58(address_space: &mut AddressSpace) { @@ -980,13 +2070,33 @@ fn add_variable_58(address_space: &mut AddressSpace) { let name = "CurrentState"; let value = Variant::Empty; let node_id = NodeId::new(0, 9179); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 9180), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2760), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9178), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 9180), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2760), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9178), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_59(address_space: &mut AddressSpace) { @@ -994,12 +2104,28 @@ fn add_variable_59(address_space: &mut AddressSpace) { let name = "Id"; let value = Variant::Empty; let node_id = NodeId::new(0, 9180); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9179), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9179), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_60(address_space: &mut AddressSpace) { @@ -1007,14 +2133,38 @@ fn add_variable_60(address_space: &mut AddressSpace) { let name = "LastTransition"; let value = Variant::Empty; let node_id = NodeId::new(0, 9184); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 9185), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 9188), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2767), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9178), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 9185), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9188), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2767), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9178), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_61(address_space: &mut AddressSpace) { @@ -1022,12 +2172,28 @@ fn add_variable_61(address_space: &mut AddressSpace) { let name = "Id"; let value = Variant::Empty; let node_id = NodeId::new(0, 9185); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9184), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9184), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_62(address_space: &mut AddressSpace) { @@ -1035,12 +2201,28 @@ fn add_variable_62(address_space: &mut AddressSpace) { let name = "TransitionTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 9188); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9184), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9184), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_63(address_space: &mut AddressSpace) { @@ -1048,34 +2230,73 @@ fn add_variable_63(address_space: &mut AddressSpace) { let name = "UnshelveTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 9189); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9178), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9178), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_64(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("ShelvingTime"), - data_type: NodeId::new(0, 290), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("ShelvingTime"), + data_type: NodeId::new(0, 290), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 9214); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9213), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9213), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_65(address_space: &mut AddressSpace) { @@ -1084,11 +2305,26 @@ fn add_variable_65(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 9215); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2915), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2915), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_66(address_space: &mut AddressSpace) { @@ -1096,12 +2332,28 @@ fn add_variable_66(address_space: &mut AddressSpace) { let name = "MaxTimeShelved"; let value = Variant::Empty; let node_id = NodeId::new(0, 9216); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2915), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2915), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_67(address_space: &mut AddressSpace) { @@ -1110,11 +2362,26 @@ fn add_variable_67(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 16389); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2915), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2915), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_68(address_space: &mut AddressSpace) { @@ -1122,12 +2389,35 @@ fn add_variable_68(address_space: &mut AddressSpace) { let name = "AudibleSound"; let value = Variant::Empty; let node_id = NodeId::new(0, 16390); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 16307), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17986), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2915), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 16307), + None, + None, + value, + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17986), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2915), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_69(address_space: &mut AddressSpace) { @@ -1135,16 +2425,48 @@ fn add_variable_69(address_space: &mut AddressSpace) { let name = "SilenceState"; let value = Variant::Empty; let node_id = NodeId::new(0, 16380); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16381), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16385), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16387), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 16388), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 8995), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2915), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16381), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16385), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16387), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16388), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8995), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2915), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_70(address_space: &mut AddressSpace) { @@ -1153,11 +2475,26 @@ fn add_variable_70(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 16381); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16380), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16380), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_71(address_space: &mut AddressSpace) { @@ -1165,12 +2502,28 @@ fn add_variable_71(address_space: &mut AddressSpace) { let name = "TransitionTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 16385); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16380), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16380), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_72(address_space: &mut AddressSpace) { @@ -1178,12 +2531,28 @@ fn add_variable_72(address_space: &mut AddressSpace) { let name = "TrueState"; let value = Variant::Empty; let node_id = NodeId::new(0, 16387); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16380), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16380), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_73(address_space: &mut AddressSpace) { @@ -1191,12 +2560,28 @@ fn add_variable_73(address_space: &mut AddressSpace) { let name = "FalseState"; let value = Variant::Empty; let node_id = NodeId::new(0, 16388); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16380), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16380), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_74(address_space: &mut AddressSpace) { @@ -1204,12 +2589,28 @@ fn add_variable_74(address_space: &mut AddressSpace) { let name = "OnDelay"; let value = Variant::Empty; let node_id = NodeId::new(0, 16395); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2915), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2915), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_75(address_space: &mut AddressSpace) { @@ -1217,12 +2618,28 @@ fn add_variable_75(address_space: &mut AddressSpace) { let name = "OffDelay"; let value = Variant::Empty; let node_id = NodeId::new(0, 16396); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2915), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2915), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_76(address_space: &mut AddressSpace) { @@ -1231,11 +2648,26 @@ fn add_variable_76(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 16397); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2915), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2915), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_77(address_space: &mut AddressSpace) { @@ -1243,16 +2675,48 @@ fn add_variable_77(address_space: &mut AddressSpace) { let name = "LatchedState"; let value = Variant::Empty; let node_id = NodeId::new(0, 18190); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 18191), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 18195), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 18197), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 18198), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 8995), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2915), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 18191), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18195), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18197), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18198), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8995), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2915), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_78(address_space: &mut AddressSpace) { @@ -1261,11 +2725,26 @@ fn add_variable_78(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 18191); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18190), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18190), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_79(address_space: &mut AddressSpace) { @@ -1273,12 +2752,28 @@ fn add_variable_79(address_space: &mut AddressSpace) { let name = "TransitionTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 18195); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18190), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18190), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_80(address_space: &mut AddressSpace) { @@ -1286,12 +2781,28 @@ fn add_variable_80(address_space: &mut AddressSpace) { let name = "TrueState"; let value = Variant::Empty; let node_id = NodeId::new(0, 18197); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18190), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18190), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_81(address_space: &mut AddressSpace) { @@ -1299,12 +2810,28 @@ fn add_variable_81(address_space: &mut AddressSpace) { let name = "FalseState"; let value = Variant::Empty; let node_id = NodeId::new(0, 18198); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 18190), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 18190), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_82(address_space: &mut AddressSpace) { @@ -1312,12 +2839,28 @@ fn add_variable_82(address_space: &mut AddressSpace) { let name = "ReAlarmTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 16400); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2915), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2915), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_83(address_space: &mut AddressSpace) { @@ -1326,11 +2869,26 @@ fn add_variable_83(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 16401); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 4), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2915), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2915), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_84(address_space: &mut AddressSpace) { @@ -1338,12 +2896,28 @@ fn add_variable_84(address_space: &mut AddressSpace) { let name = "EventId"; let value = Variant::Empty; let node_id = NodeId::new(0, 16407); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16406), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16406), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_85(address_space: &mut AddressSpace) { @@ -1351,12 +2925,28 @@ fn add_variable_85(address_space: &mut AddressSpace) { let name = "EventType"; let value = Variant::Empty; let node_id = NodeId::new(0, 16408); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16406), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16406), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_86(address_space: &mut AddressSpace) { @@ -1364,12 +2954,28 @@ fn add_variable_86(address_space: &mut AddressSpace) { let name = "SourceNode"; let value = Variant::Empty; let node_id = NodeId::new(0, 16409); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16406), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16406), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_87(address_space: &mut AddressSpace) { @@ -1377,12 +2983,28 @@ fn add_variable_87(address_space: &mut AddressSpace) { let name = "SourceName"; let value = Variant::Empty; let node_id = NodeId::new(0, 16410); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16406), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16406), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_88(address_space: &mut AddressSpace) { @@ -1390,12 +3012,28 @@ fn add_variable_88(address_space: &mut AddressSpace) { let name = "Time"; let value = Variant::Empty; let node_id = NodeId::new(0, 16411); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16406), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16406), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_89(address_space: &mut AddressSpace) { @@ -1403,12 +3041,28 @@ fn add_variable_89(address_space: &mut AddressSpace) { let name = "ReceiveTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 16412); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16406), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16406), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_90(address_space: &mut AddressSpace) { @@ -1416,12 +3070,28 @@ fn add_variable_90(address_space: &mut AddressSpace) { let name = "Message"; let value = Variant::Empty; let node_id = NodeId::new(0, 16414); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16406), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16406), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_91(address_space: &mut AddressSpace) { @@ -1430,11 +3100,26 @@ fn add_variable_91(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 16415); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16406), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16406), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_92(address_space: &mut AddressSpace) { @@ -1442,12 +3127,28 @@ fn add_variable_92(address_space: &mut AddressSpace) { let name = "ConditionClassId"; let value = Variant::Empty; let node_id = NodeId::new(0, 16416); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16406), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16406), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_93(address_space: &mut AddressSpace) { @@ -1455,12 +3156,28 @@ fn add_variable_93(address_space: &mut AddressSpace) { let name = "ConditionClassName"; let value = Variant::Empty; let node_id = NodeId::new(0, 16417); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16406), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16406), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_94(address_space: &mut AddressSpace) { @@ -1468,12 +3185,28 @@ fn add_variable_94(address_space: &mut AddressSpace) { let name = "ConditionName"; let value = Variant::Empty; let node_id = NodeId::new(0, 16420); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16406), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16406), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_95(address_space: &mut AddressSpace) { @@ -1481,12 +3214,28 @@ fn add_variable_95(address_space: &mut AddressSpace) { let name = "BranchId"; let value = Variant::Empty; let node_id = NodeId::new(0, 16421); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16406), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16406), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_96(address_space: &mut AddressSpace) { @@ -1495,11 +3244,26 @@ fn add_variable_96(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 16422); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16406), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16406), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_97(address_space: &mut AddressSpace) { @@ -1507,13 +3271,33 @@ fn add_variable_97(address_space: &mut AddressSpace) { let name = "EnabledState"; let value = Variant::Empty; let node_id = NodeId::new(0, 16423); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16424), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 8995), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16406), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16424), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8995), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16406), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_98(address_space: &mut AddressSpace) { @@ -1522,11 +3306,26 @@ fn add_variable_98(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 16424); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16423), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16423), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_99(address_space: &mut AddressSpace) { @@ -1534,13 +3333,33 @@ fn add_variable_99(address_space: &mut AddressSpace) { let name = "Quality"; let value = Variant::Empty; let node_id = NodeId::new(0, 16432); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16433), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 9002), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16406), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 19), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16433), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9002), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16406), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_100(address_space: &mut AddressSpace) { @@ -1548,11 +3367,26 @@ fn add_variable_100(address_space: &mut AddressSpace) { let name = "SourceTimestamp"; let value = Variant::Empty; let node_id = NodeId::new(0, 16433); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16432), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16432), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } - diff --git a/server/src/address_space/generated/nodeset_9_3.rs b/server/src/address_space/generated/nodeset_9_3.rs index fc294114f..524e17d22 100644 --- a/server/src/address_space/generated/nodeset_9_3.rs +++ b/server/src/address_space/generated/nodeset_9_3.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.NodeSet2.Part9.xml by tools/schema/gen_address_space.js // DO NOT EDIT THIS FILE @@ -9,8 +9,11 @@ use std::{convert::TryFrom, str::FromStr}; #[allow(unused_imports)] use crate::{ - address_space::{EventNotifier, types::*}, - prelude::{DataTypeId, ExtensionObject, LocalizedText, NodeId, ReferenceTypeId, service_types::Argument, UAString, Variant, VariantTypeId} + address_space::{types::*, EventNotifier}, + prelude::{ + service_types::Argument, DataTypeId, ExtensionObject, LocalizedText, NodeId, + ReferenceTypeId, UAString, Variant, VariantTypeId, + }, }; #[allow(unused_variables)] @@ -123,12 +126,31 @@ fn add_variable_1(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 16434); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16435), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 9002), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16406), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16435), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9002), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16406), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_2(address_space: &mut AddressSpace) { @@ -136,12 +158,28 @@ fn add_variable_2(address_space: &mut AddressSpace) { let name = "SourceTimestamp"; let value = Variant::Empty; let node_id = NodeId::new(0, 16435); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16434), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16434), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_3(address_space: &mut AddressSpace) { @@ -149,13 +187,33 @@ fn add_variable_3(address_space: &mut AddressSpace) { let name = "Comment"; let value = Variant::Empty; let node_id = NodeId::new(0, 16436); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16437), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 9002), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16406), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16437), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9002), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16406), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_4(address_space: &mut AddressSpace) { @@ -163,12 +221,28 @@ fn add_variable_4(address_space: &mut AddressSpace) { let name = "SourceTimestamp"; let value = Variant::Empty; let node_id = NodeId::new(0, 16437); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16436), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16436), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_5(address_space: &mut AddressSpace) { @@ -176,12 +250,28 @@ fn add_variable_5(address_space: &mut AddressSpace) { let name = "ClientUserId"; let value = Variant::Empty; let node_id = NodeId::new(0, 16438); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16406), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 12), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16406), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_6(address_space: &mut AddressSpace) { @@ -189,29 +279,56 @@ fn add_variable_6(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("EventId"), data_type: NodeId::new(0, 15), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("Comment"), data_type: NodeId::new(0, 21), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 16442); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16441), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16441), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_7(address_space: &mut AddressSpace) { @@ -219,13 +336,33 @@ fn add_variable_7(address_space: &mut AddressSpace) { let name = "AckedState"; let value = Variant::Empty; let node_id = NodeId::new(0, 16443); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16444), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 8995), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16406), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16444), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8995), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16406), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_8(address_space: &mut AddressSpace) { @@ -234,11 +371,26 @@ fn add_variable_8(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 16444); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16443), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16443), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_9(address_space: &mut AddressSpace) { @@ -246,29 +398,56 @@ fn add_variable_9(address_space: &mut AddressSpace) { let name = "InputArguments"; let value = vec![ Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("EventId"), data_type: NodeId::new(0, 15), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { + NodeId::new(0, 298), + &Argument { name: UAString::from("Comment"), data_type: NodeId::new(0, 21), value_rank: -1, array_dimensions: None, description: LocalizedText::new("", ""), - })), + }, + )), ]; let node_id = NodeId::new(0, 16462); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16461), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16461), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_10(address_space: &mut AddressSpace) { @@ -276,13 +455,33 @@ fn add_variable_10(address_space: &mut AddressSpace) { let name = "ActiveState"; let value = Variant::Empty; let node_id = NodeId::new(0, 16465); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16466), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 8995), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16406), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16466), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8995), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16406), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_11(address_space: &mut AddressSpace) { @@ -291,11 +490,26 @@ fn add_variable_11(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 16466); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16465), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16465), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_12(address_space: &mut AddressSpace) { @@ -303,12 +517,28 @@ fn add_variable_12(address_space: &mut AddressSpace) { let name = "InputNode"; let value = Variant::Empty; let node_id = NodeId::new(0, 16474); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16406), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16406), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_13(address_space: &mut AddressSpace) { @@ -317,11 +547,26 @@ fn add_variable_13(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 16519); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16406), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16406), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_14(address_space: &mut AddressSpace) { @@ -329,12 +574,28 @@ fn add_variable_14(address_space: &mut AddressSpace) { let name = "UnshelveTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 9115); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2929), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2929), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_15(address_space: &mut AddressSpace) { @@ -343,11 +604,26 @@ fn add_variable_15(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 6098); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2930), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2930), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_16(address_space: &mut AddressSpace) { @@ -356,11 +632,26 @@ fn add_variable_16(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 6100); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2932), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2932), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_17(address_space: &mut AddressSpace) { @@ -369,11 +660,26 @@ fn add_variable_17(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 6101); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2933), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2933), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_18(address_space: &mut AddressSpace) { @@ -382,11 +688,26 @@ fn add_variable_18(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11322); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2935), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2935), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_19(address_space: &mut AddressSpace) { @@ -395,11 +716,26 @@ fn add_variable_19(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11323); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2936), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2936), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_20(address_space: &mut AddressSpace) { @@ -408,11 +744,26 @@ fn add_variable_20(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11324); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2940), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2940), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_21(address_space: &mut AddressSpace) { @@ -421,11 +772,26 @@ fn add_variable_21(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11325); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2942), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2942), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_22(address_space: &mut AddressSpace) { @@ -434,11 +800,26 @@ fn add_variable_22(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11326); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2943), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2943), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_23(address_space: &mut AddressSpace) { @@ -447,33 +828,71 @@ fn add_variable_23(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11327); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2945), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2945), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_24(address_space: &mut AddressSpace) { // Variable let name = "InputArguments"; - let value = vec![ - Variant::from(ExtensionObject::from_encodable( - NodeId::new(0, 298), &Argument { - name: UAString::from("ShelvingTime"), - data_type: NodeId::new(0, 290), - value_rank: -1, - array_dimensions: None, - description: LocalizedText::new("", ""), - })), - ]; + let value = vec![Variant::from(ExtensionObject::from_encodable( + NodeId::new(0, 298), + &Argument { + name: UAString::from("ShelvingTime"), + data_type: NodeId::new(0, 290), + value_rank: -1, + array_dimensions: None, + description: LocalizedText::new("", ""), + }, + ))]; let node_id = NodeId::new(0, 2991); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 296), Some(1), Some(0), (VariantTypeId::ExtensionObject, value)); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2949), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = Variable::new_data_value( + &node_id, + name, + name, + NodeId::new(0, 296), + Some(1), + Some(0), + (VariantTypeId::ExtensionObject, value), + ); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2949), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_25(address_space: &mut AddressSpace) { @@ -481,12 +900,28 @@ fn add_variable_25(address_space: &mut AddressSpace) { let name = "HighHighLimit"; let value = Variant::Empty; let node_id = NodeId::new(0, 11124); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2955), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2955), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_26(address_space: &mut AddressSpace) { @@ -494,12 +929,28 @@ fn add_variable_26(address_space: &mut AddressSpace) { let name = "HighLimit"; let value = Variant::Empty; let node_id = NodeId::new(0, 11125); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2955), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2955), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_27(address_space: &mut AddressSpace) { @@ -507,12 +958,28 @@ fn add_variable_27(address_space: &mut AddressSpace) { let name = "LowLimit"; let value = Variant::Empty; let node_id = NodeId::new(0, 11126); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2955), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2955), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_28(address_space: &mut AddressSpace) { @@ -520,12 +987,28 @@ fn add_variable_28(address_space: &mut AddressSpace) { let name = "LowLowLimit"; let value = Variant::Empty; let node_id = NodeId::new(0, 11127); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2955), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2955), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_29(address_space: &mut AddressSpace) { @@ -533,12 +1016,28 @@ fn add_variable_29(address_space: &mut AddressSpace) { let name = "BaseHighHighLimit"; let value = Variant::Empty; let node_id = NodeId::new(0, 16572); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2955), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2955), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_30(address_space: &mut AddressSpace) { @@ -546,12 +1045,28 @@ fn add_variable_30(address_space: &mut AddressSpace) { let name = "BaseHighLimit"; let value = Variant::Empty; let node_id = NodeId::new(0, 16573); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2955), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2955), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_31(address_space: &mut AddressSpace) { @@ -559,12 +1074,28 @@ fn add_variable_31(address_space: &mut AddressSpace) { let name = "BaseLowLimit"; let value = Variant::Empty; let node_id = NodeId::new(0, 16574); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2955), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2955), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_32(address_space: &mut AddressSpace) { @@ -572,12 +1103,28 @@ fn add_variable_32(address_space: &mut AddressSpace) { let name = "BaseLowLowLimit"; let value = Variant::Empty; let node_id = NodeId::new(0, 16575); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2955), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2955), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_33(address_space: &mut AddressSpace) { @@ -586,11 +1133,26 @@ fn add_variable_33(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 9330); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9329), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9329), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_34(address_space: &mut AddressSpace) { @@ -599,11 +1161,26 @@ fn add_variable_34(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 9332); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9331), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9331), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_35(address_space: &mut AddressSpace) { @@ -612,11 +1189,26 @@ fn add_variable_35(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 9334); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9333), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9333), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_36(address_space: &mut AddressSpace) { @@ -625,11 +1217,26 @@ fn add_variable_36(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 9336); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9335), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9335), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_37(address_space: &mut AddressSpace) { @@ -638,11 +1245,26 @@ fn add_variable_37(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11340); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9337), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9337), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_38(address_space: &mut AddressSpace) { @@ -651,11 +1273,26 @@ fn add_variable_38(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11341); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9338), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9338), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_39(address_space: &mut AddressSpace) { @@ -664,11 +1301,26 @@ fn add_variable_39(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11342); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9339), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9339), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_40(address_space: &mut AddressSpace) { @@ -677,11 +1329,26 @@ fn add_variable_40(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11343); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9340), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9340), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_41(address_space: &mut AddressSpace) { @@ -689,13 +1356,33 @@ fn add_variable_41(address_space: &mut AddressSpace) { let name = "ActiveState"; let value = Variant::Empty; let node_id = NodeId::new(0, 9398); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 9399), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 8995), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9341), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 9399), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8995), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9341), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_42(address_space: &mut AddressSpace) { @@ -704,11 +1391,26 @@ fn add_variable_42(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 9399); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9398), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9398), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_43(address_space: &mut AddressSpace) { @@ -716,13 +1418,33 @@ fn add_variable_43(address_space: &mut AddressSpace) { let name = "CurrentState"; let value = Variant::Empty; let node_id = NodeId::new(0, 9456); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 9457), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2760), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9455), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 9457), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2760), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9455), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_44(address_space: &mut AddressSpace) { @@ -730,12 +1452,28 @@ fn add_variable_44(address_space: &mut AddressSpace) { let name = "Id"; let value = Variant::Empty; let node_id = NodeId::new(0, 9457); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9456), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9456), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_45(address_space: &mut AddressSpace) { @@ -743,14 +1481,38 @@ fn add_variable_45(address_space: &mut AddressSpace) { let name = "LastTransition"; let value = Variant::Empty; let node_id = NodeId::new(0, 9461); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 9462), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 9465), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2767), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9455), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 9462), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9465), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2767), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9455), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_46(address_space: &mut AddressSpace) { @@ -758,12 +1520,28 @@ fn add_variable_46(address_space: &mut AddressSpace) { let name = "Id"; let value = Variant::Empty; let node_id = NodeId::new(0, 9462); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9461), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9461), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_47(address_space: &mut AddressSpace) { @@ -771,12 +1549,28 @@ fn add_variable_47(address_space: &mut AddressSpace) { let name = "TransitionTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 9465); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9461), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9461), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_48(address_space: &mut AddressSpace) { @@ -784,13 +1578,33 @@ fn add_variable_48(address_space: &mut AddressSpace) { let name = "ActiveState"; let value = Variant::Empty; let node_id = NodeId::new(0, 9963); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 9964), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 8995), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9906), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 9964), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8995), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9906), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_49(address_space: &mut AddressSpace) { @@ -799,11 +1613,26 @@ fn add_variable_49(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 9964); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9963), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9963), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_50(address_space: &mut AddressSpace) { @@ -811,16 +1640,48 @@ fn add_variable_50(address_space: &mut AddressSpace) { let name = "HighHighState"; let value = Variant::Empty; let node_id = NodeId::new(0, 10020); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 10021), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 10025), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 10027), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 10028), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 8995), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9906), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 10021), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 10025), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 10027), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 10028), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8995), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9906), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_51(address_space: &mut AddressSpace) { @@ -829,11 +1690,26 @@ fn add_variable_51(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 10021); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 10020), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 10020), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_52(address_space: &mut AddressSpace) { @@ -841,12 +1717,28 @@ fn add_variable_52(address_space: &mut AddressSpace) { let name = "TransitionTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 10025); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 10020), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 10020), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_53(address_space: &mut AddressSpace) { @@ -854,12 +1746,28 @@ fn add_variable_53(address_space: &mut AddressSpace) { let name = "TrueState"; let value = Variant::Empty; let node_id = NodeId::new(0, 10027); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 10020), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 10020), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_54(address_space: &mut AddressSpace) { @@ -867,12 +1775,28 @@ fn add_variable_54(address_space: &mut AddressSpace) { let name = "FalseState"; let value = Variant::Empty; let node_id = NodeId::new(0, 10028); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 10020), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 10020), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_55(address_space: &mut AddressSpace) { @@ -880,16 +1804,48 @@ fn add_variable_55(address_space: &mut AddressSpace) { let name = "HighState"; let value = Variant::Empty; let node_id = NodeId::new(0, 10029); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 10030), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 10034), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 10036), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 10037), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 8995), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9906), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 10030), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 10034), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 10036), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 10037), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8995), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9906), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_56(address_space: &mut AddressSpace) { @@ -898,11 +1854,26 @@ fn add_variable_56(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 10030); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 10029), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 10029), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_57(address_space: &mut AddressSpace) { @@ -910,12 +1881,28 @@ fn add_variable_57(address_space: &mut AddressSpace) { let name = "TransitionTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 10034); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 10029), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 10029), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_58(address_space: &mut AddressSpace) { @@ -923,12 +1910,28 @@ fn add_variable_58(address_space: &mut AddressSpace) { let name = "TrueState"; let value = Variant::Empty; let node_id = NodeId::new(0, 10036); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 10029), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 10029), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_59(address_space: &mut AddressSpace) { @@ -936,12 +1939,28 @@ fn add_variable_59(address_space: &mut AddressSpace) { let name = "FalseState"; let value = Variant::Empty; let node_id = NodeId::new(0, 10037); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 10029), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 10029), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_60(address_space: &mut AddressSpace) { @@ -949,16 +1968,48 @@ fn add_variable_60(address_space: &mut AddressSpace) { let name = "LowState"; let value = Variant::Empty; let node_id = NodeId::new(0, 10038); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 10039), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 10043), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 10045), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 10046), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 8995), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9906), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 10039), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 10043), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 10045), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 10046), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8995), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9906), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_61(address_space: &mut AddressSpace) { @@ -967,11 +2018,26 @@ fn add_variable_61(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 10039); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 10038), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 10038), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_62(address_space: &mut AddressSpace) { @@ -979,12 +2045,28 @@ fn add_variable_62(address_space: &mut AddressSpace) { let name = "TransitionTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 10043); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 10038), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 10038), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_63(address_space: &mut AddressSpace) { @@ -992,12 +2074,28 @@ fn add_variable_63(address_space: &mut AddressSpace) { let name = "TrueState"; let value = Variant::Empty; let node_id = NodeId::new(0, 10045); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 10038), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 10038), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_64(address_space: &mut AddressSpace) { @@ -1005,12 +2103,28 @@ fn add_variable_64(address_space: &mut AddressSpace) { let name = "FalseState"; let value = Variant::Empty; let node_id = NodeId::new(0, 10046); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 10038), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 10038), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_65(address_space: &mut AddressSpace) { @@ -1018,16 +2132,48 @@ fn add_variable_65(address_space: &mut AddressSpace) { let name = "LowLowState"; let value = Variant::Empty; let node_id = NodeId::new(0, 10047); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 10048), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 10052), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 10054), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 10055), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 8995), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9906), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 10048), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 10052), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 10054), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 10055), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8995), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9906), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_66(address_space: &mut AddressSpace) { @@ -1036,11 +2182,26 @@ fn add_variable_66(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 10048); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 1), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 10047), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 10047), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_67(address_space: &mut AddressSpace) { @@ -1048,12 +2209,28 @@ fn add_variable_67(address_space: &mut AddressSpace) { let name = "TransitionTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 10052); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 10047), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 10047), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_68(address_space: &mut AddressSpace) { @@ -1061,12 +2238,28 @@ fn add_variable_68(address_space: &mut AddressSpace) { let name = "TrueState"; let value = Variant::Empty; let node_id = NodeId::new(0, 10054); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 10047), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 10047), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_69(address_space: &mut AddressSpace) { @@ -1074,12 +2267,28 @@ fn add_variable_69(address_space: &mut AddressSpace) { let name = "FalseState"; let value = Variant::Empty; let node_id = NodeId::new(0, 10055); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 10047), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 10047), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_70(address_space: &mut AddressSpace) { @@ -1087,12 +2296,28 @@ fn add_variable_70(address_space: &mut AddressSpace) { let name = "SetpointNode"; let value = Variant::Empty; let node_id = NodeId::new(0, 10522); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 10368), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 10368), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_71(address_space: &mut AddressSpace) { @@ -1100,12 +2325,28 @@ fn add_variable_71(address_space: &mut AddressSpace) { let name = "BaseSetpointNode"; let value = Variant::Empty; let node_id = NodeId::new(0, 16776); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 10368), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 10368), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_72(address_space: &mut AddressSpace) { @@ -1113,12 +2354,28 @@ fn add_variable_72(address_space: &mut AddressSpace) { let name = "EngineeringUnits"; let value = Variant::Empty; let node_id = NodeId::new(0, 16858); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 887), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 10214), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 887), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 10214), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_73(address_space: &mut AddressSpace) { @@ -1126,12 +2383,28 @@ fn add_variable_73(address_space: &mut AddressSpace) { let name = "SetpointNode"; let value = Variant::Empty; let node_id = NodeId::new(0, 9905); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9764), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9764), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_74(address_space: &mut AddressSpace) { @@ -1139,12 +2412,28 @@ fn add_variable_74(address_space: &mut AddressSpace) { let name = "BaseSetpointNode"; let value = Variant::Empty; let node_id = NodeId::new(0, 16817); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9764), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9764), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_75(address_space: &mut AddressSpace) { @@ -1152,12 +2441,28 @@ fn add_variable_75(address_space: &mut AddressSpace) { let name = "EngineeringUnits"; let value = Variant::Empty; let node_id = NodeId::new(0, 16899); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 887), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9623), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 887), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9623), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_76(address_space: &mut AddressSpace) { @@ -1165,12 +2470,28 @@ fn add_variable_76(address_space: &mut AddressSpace) { let name = "NormalState"; let value = Variant::Empty; let node_id = NodeId::new(0, 11158); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 10637), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 10637), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_77(address_space: &mut AddressSpace) { @@ -1178,12 +2499,28 @@ fn add_variable_77(address_space: &mut AddressSpace) { let name = "ExpirationDate"; let value = Variant::Empty; let node_id = NodeId::new(0, 13325); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 13), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13225), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 13), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13225), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_78(address_space: &mut AddressSpace) { @@ -1191,12 +2528,28 @@ fn add_variable_78(address_space: &mut AddressSpace) { let name = "ExpirationLimit"; let value = Variant::Empty; let node_id = NodeId::new(0, 14900); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13225), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13225), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_79(address_space: &mut AddressSpace) { @@ -1204,12 +2557,28 @@ fn add_variable_79(address_space: &mut AddressSpace) { let name = "CertificateType"; let value = Variant::Empty; let node_id = NodeId::new(0, 13326); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13225), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13225), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_80(address_space: &mut AddressSpace) { @@ -1217,12 +2586,28 @@ fn add_variable_80(address_space: &mut AddressSpace) { let name = "Certificate"; let value = Variant::Empty; let node_id = NodeId::new(0, 13327); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 13225), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 13225), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_81(address_space: &mut AddressSpace) { @@ -1230,12 +2615,28 @@ fn add_variable_81(address_space: &mut AddressSpace) { let name = "TargetValueNode"; let value = Variant::Empty; let node_id = NodeId::new(0, 17215); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17080), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 17), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17080), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_82(address_space: &mut AddressSpace) { @@ -1243,12 +2644,28 @@ fn add_variable_82(address_space: &mut AddressSpace) { let name = "ExpectedTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 17216); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17080), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17080), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_83(address_space: &mut AddressSpace) { @@ -1256,12 +2673,28 @@ fn add_variable_83(address_space: &mut AddressSpace) { let name = "Tolerance"; let value = Variant::Empty; let node_id = NodeId::new(0, 17217); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17080), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17080), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_84(address_space: &mut AddressSpace) { @@ -1269,12 +2702,28 @@ fn add_variable_84(address_space: &mut AddressSpace) { let name = "ConditionEventId"; let value = Variant::Empty; let node_id = NodeId::new(0, 17222); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2829), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2829), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_85(address_space: &mut AddressSpace) { @@ -1282,12 +2731,28 @@ fn add_variable_85(address_space: &mut AddressSpace) { let name = "Comment"; let value = Variant::Empty; let node_id = NodeId::new(0, 11851); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2829), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2829), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_86(address_space: &mut AddressSpace) { @@ -1296,11 +2761,26 @@ fn add_variable_86(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 11852); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 8927), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8927), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_87(address_space: &mut AddressSpace) { @@ -1308,12 +2788,28 @@ fn add_variable_87(address_space: &mut AddressSpace) { let name = "ConditionEventId"; let value = Variant::Empty; let node_id = NodeId::new(0, 17223); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 8944), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8944), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_88(address_space: &mut AddressSpace) { @@ -1321,12 +2817,28 @@ fn add_variable_88(address_space: &mut AddressSpace) { let name = "Comment"; let value = Variant::Empty; let node_id = NodeId::new(0, 11853); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 8944), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8944), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_89(address_space: &mut AddressSpace) { @@ -1334,12 +2846,28 @@ fn add_variable_89(address_space: &mut AddressSpace) { let name = "ConditionEventId"; let value = Variant::Empty; let node_id = NodeId::new(0, 17224); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 8961), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 15), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8961), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_90(address_space: &mut AddressSpace) { @@ -1347,12 +2875,28 @@ fn add_variable_90(address_space: &mut AddressSpace) { let name = "Comment"; let value = Variant::Empty; let node_id = NodeId::new(0, 11854); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 8961), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 21), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 8961), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_91(address_space: &mut AddressSpace) { @@ -1360,12 +2904,28 @@ fn add_variable_91(address_space: &mut AddressSpace) { let name = "ShelvingTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 11855); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 11093), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11093), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_92(address_space: &mut AddressSpace) { @@ -1374,11 +2934,26 @@ fn add_variable_92(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17280); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17279), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17279), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_93(address_space: &mut AddressSpace) { @@ -1386,12 +2961,28 @@ fn add_variable_93(address_space: &mut AddressSpace) { let name = "StartTime"; let value = Variant::Empty; let node_id = NodeId::new(0, 17991); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17279), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 294), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17279), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_94(address_space: &mut AddressSpace) { @@ -1399,12 +2990,28 @@ fn add_variable_94(address_space: &mut AddressSpace) { let name = "MaximumActiveState"; let value = Variant::Empty; let node_id = NodeId::new(0, 17281); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17279), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17279), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_95(address_space: &mut AddressSpace) { @@ -1412,12 +3019,28 @@ fn add_variable_95(address_space: &mut AddressSpace) { let name = "MaximumUnAck"; let value = Variant::Empty; let node_id = NodeId::new(0, 17282); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17279), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 290), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17279), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_96(address_space: &mut AddressSpace) { @@ -1425,13 +3048,33 @@ fn add_variable_96(address_space: &mut AddressSpace) { let name = "CurrentAlarmRate"; let value = Variant::Empty; let node_id = NodeId::new(0, 17284); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17285), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17277), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17279), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17285), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17277), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17279), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_97(address_space: &mut AddressSpace) { @@ -1440,11 +3083,26 @@ fn add_variable_97(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17285); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17284), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17284), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_98(address_space: &mut AddressSpace) { @@ -1452,13 +3110,33 @@ fn add_variable_98(address_space: &mut AddressSpace) { let name = "MaximumAlarmRate"; let value = Variant::Empty; let node_id = NodeId::new(0, 17286); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17287), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17277), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17279), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17287), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17277), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17279), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_99(address_space: &mut AddressSpace) { @@ -1467,11 +3145,26 @@ fn add_variable_99(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17287); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17286), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17286), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_100(address_space: &mut AddressSpace) { @@ -1480,10 +3173,24 @@ fn add_variable_100(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17283); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 7), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 63), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17279), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17279), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } - diff --git a/server/src/address_space/generated/nodeset_9_4.rs b/server/src/address_space/generated/nodeset_9_4.rs index ac81f4f79..105f094dd 100644 --- a/server/src/address_space/generated/nodeset_9_4.rs +++ b/server/src/address_space/generated/nodeset_9_4.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.NodeSet2.Part9.xml by tools/schema/gen_address_space.js // DO NOT EDIT THIS FILE @@ -9,8 +9,11 @@ use std::{convert::TryFrom, str::FromStr}; #[allow(unused_imports)] use crate::{ - address_space::{EventNotifier, types::*}, - prelude::{DataTypeId, ExtensionObject, LocalizedText, NodeId, ReferenceTypeId, service_types::Argument, UAString, Variant, VariantTypeId} + address_space::{types::*, EventNotifier}, + prelude::{ + service_types::Argument, DataTypeId, ExtensionObject, LocalizedText, NodeId, + ReferenceTypeId, UAString, Variant, VariantTypeId, + }, }; #[allow(unused_variables)] @@ -53,13 +56,33 @@ fn add_variable_1(address_space: &mut AddressSpace) { let name = "AverageAlarmRate"; let value = Variant::Empty; let node_id = NodeId::new(0, 17288); - let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17289), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 17277), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17279), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let node = + Variable::new_data_value(&node_id, name, name, NodeId::new(0, 11), None, None, value); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17289), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17277), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17279), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_2(address_space: &mut AddressSpace) { @@ -68,11 +91,26 @@ fn add_variable_2(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17289); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17288), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17288), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variable_3(address_space: &mut AddressSpace) { @@ -81,11 +119,26 @@ fn add_variable_3(address_space: &mut AddressSpace) { let value = Variant::Empty; let node_id = NodeId::new(0, 17278); let node = Variable::new_data_value(&node_id, name, name, NodeId::new(0, 5), None, None, value); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 68), &ReferenceTypeId::HasTypeDefinition, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17277), &ReferenceTypeId::HasProperty, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 68), + &ReferenceTypeId::HasTypeDefinition, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17277), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variabletype_4(address_space: &mut AddressSpace) { @@ -93,14 +146,41 @@ fn add_variabletype_4(address_space: &mut AddressSpace) { let name = "TwoStateVariableType"; let node_id = NodeId::new(0, 8995); let node = VariableType::new(&node_id, name, name, NodeId::new(0, 21), false, -1); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 8996), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 9000), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 9001), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11110), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 11111), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2755), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 8996), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9000), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9001), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11110), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 11111), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2755), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variabletype_5(address_space: &mut AddressSpace) { @@ -108,10 +188,21 @@ fn add_variabletype_5(address_space: &mut AddressSpace) { let name = "ConditionVariableType"; let node_id = NodeId::new(0, 9002); let node = VariableType::new(&node_id, name, name, NodeId::null(), false, -2); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 9003), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 9003), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_variabletype_6(address_space: &mut AddressSpace) { @@ -119,10 +210,21 @@ fn add_variabletype_6(address_space: &mut AddressSpace) { let name = "AlarmRateVariableType"; let node_id = NodeId::new(0, 17277); let node = VariableType::new(&node_id, name, name, NodeId::new(0, 11), false, -1); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 17278), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 63), &ReferenceTypeId::HasSubtype, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 17278), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 63), + &ReferenceTypeId::HasSubtype, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_7(address_space: &mut AddressSpace) { @@ -130,10 +232,21 @@ fn add_method_7(address_space: &mut AddressSpace) { let name = "Disable"; let node_id = NodeId::new(0, 9028); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2782), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2782), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_8(address_space: &mut AddressSpace) { @@ -141,10 +254,21 @@ fn add_method_8(address_space: &mut AddressSpace) { let name = "Enable"; let node_id = NodeId::new(0, 9027); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2782), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2782), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_9(address_space: &mut AddressSpace) { @@ -152,11 +276,26 @@ fn add_method_9(address_space: &mut AddressSpace) { let name = "AddComment"; let node_id = NodeId::new(0, 9029); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 9030), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2782), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 9030), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2782), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_10(address_space: &mut AddressSpace) { @@ -164,10 +303,21 @@ fn add_method_10(address_space: &mut AddressSpace) { let name = "ConditionRefresh"; let node_id = NodeId::new(0, 3875); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 3876), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2782), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 3876), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2782), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_11(address_space: &mut AddressSpace) { @@ -175,10 +325,21 @@ fn add_method_11(address_space: &mut AddressSpace) { let name = "ConditionRefresh2"; let node_id = NodeId::new(0, 12912); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 12913), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 2782), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 12913), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2782), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_12(address_space: &mut AddressSpace) { @@ -186,11 +347,26 @@ fn add_method_12(address_space: &mut AddressSpace) { let name = "Respond"; let node_id = NodeId::new(0, 9069); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 9070), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2830), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 9070), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2830), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_13(address_space: &mut AddressSpace) { @@ -198,11 +374,26 @@ fn add_method_13(address_space: &mut AddressSpace) { let name = "Acknowledge"; let node_id = NodeId::new(0, 9111); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 9112), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2881), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 9112), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2881), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_14(address_space: &mut AddressSpace) { @@ -210,11 +401,26 @@ fn add_method_14(address_space: &mut AddressSpace) { let name = "Confirm"; let node_id = NodeId::new(0, 9113); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 9114), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2881), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 9114), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2881), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_15(address_space: &mut AddressSpace) { @@ -222,11 +428,26 @@ fn add_method_15(address_space: &mut AddressSpace) { let name = "TimedShelve"; let node_id = NodeId::new(0, 9213); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 9214), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9178), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 9214), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9178), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_16(address_space: &mut AddressSpace) { @@ -234,10 +455,21 @@ fn add_method_16(address_space: &mut AddressSpace) { let name = "Unshelve"; let node_id = NodeId::new(0, 9211); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9178), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9178), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_17(address_space: &mut AddressSpace) { @@ -245,10 +477,21 @@ fn add_method_17(address_space: &mut AddressSpace) { let name = "OneShotShelve"; let node_id = NodeId::new(0, 9212); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 9178), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 9178), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_18(address_space: &mut AddressSpace) { @@ -256,10 +499,21 @@ fn add_method_18(address_space: &mut AddressSpace) { let name = "Silence"; let node_id = NodeId::new(0, 16402); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2915), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2915), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_19(address_space: &mut AddressSpace) { @@ -267,10 +521,21 @@ fn add_method_19(address_space: &mut AddressSpace) { let name = "Suppress"; let node_id = NodeId::new(0, 16403); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2915), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2915), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_20(address_space: &mut AddressSpace) { @@ -278,10 +543,21 @@ fn add_method_20(address_space: &mut AddressSpace) { let name = "Unsuppress"; let node_id = NodeId::new(0, 17868); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2915), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2915), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_21(address_space: &mut AddressSpace) { @@ -289,10 +565,21 @@ fn add_method_21(address_space: &mut AddressSpace) { let name = "RemoveFromService"; let node_id = NodeId::new(0, 17869); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2915), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2915), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_22(address_space: &mut AddressSpace) { @@ -300,10 +587,21 @@ fn add_method_22(address_space: &mut AddressSpace) { let name = "PlaceInService"; let node_id = NodeId::new(0, 17870); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2915), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2915), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_23(address_space: &mut AddressSpace) { @@ -311,10 +609,21 @@ fn add_method_23(address_space: &mut AddressSpace) { let name = "Reset"; let node_id = NodeId::new(0, 18199); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 80), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2915), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 80), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2915), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_24(address_space: &mut AddressSpace) { @@ -322,10 +631,21 @@ fn add_method_24(address_space: &mut AddressSpace) { let name = "Disable"; let node_id = NodeId::new(0, 16439); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16406), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16406), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_25(address_space: &mut AddressSpace) { @@ -333,10 +653,21 @@ fn add_method_25(address_space: &mut AddressSpace) { let name = "Enable"; let node_id = NodeId::new(0, 16440); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16406), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16406), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_26(address_space: &mut AddressSpace) { @@ -344,11 +675,26 @@ fn add_method_26(address_space: &mut AddressSpace) { let name = "AddComment"; let node_id = NodeId::new(0, 16441); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16442), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16406), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16442), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16406), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_27(address_space: &mut AddressSpace) { @@ -356,11 +702,26 @@ fn add_method_27(address_space: &mut AddressSpace) { let name = "Acknowledge"; let node_id = NodeId::new(0, 16461); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 16462), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 16406), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 16462), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 16406), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_28(address_space: &mut AddressSpace) { @@ -368,11 +729,26 @@ fn add_method_28(address_space: &mut AddressSpace) { let name = "TimedShelve"; let node_id = NodeId::new(0, 2949); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 2991), &ReferenceTypeId::HasProperty, ReferenceDirection::Forward), - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2929), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 2991), + &ReferenceTypeId::HasProperty, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2929), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_29(address_space: &mut AddressSpace) { @@ -380,10 +756,21 @@ fn add_method_29(address_space: &mut AddressSpace) { let name = "Unshelve"; let node_id = NodeId::new(0, 2947); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2929), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2929), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_30(address_space: &mut AddressSpace) { @@ -391,10 +778,21 @@ fn add_method_30(address_space: &mut AddressSpace) { let name = "OneShotShelve"; let node_id = NodeId::new(0, 2948); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 2929), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 2929), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } fn add_method_31(address_space: &mut AddressSpace) { @@ -402,9 +800,19 @@ fn add_method_31(address_space: &mut AddressSpace) { let name = "Reset"; let node_id = NodeId::new(0, 18666); let node = Method::new(&node_id, name, name, true, true); - let _ = address_space.insert(node, Some(&[ - (&NodeId::new(0, 78), &ReferenceTypeId::HasModellingRule, ReferenceDirection::Forward), - (&NodeId::new(0, 17279), &ReferenceTypeId::HasComponent, ReferenceDirection::Inverse), - ])); + let _ = address_space.insert( + node, + Some(&[ + ( + &NodeId::new(0, 78), + &ReferenceTypeId::HasModellingRule, + ReferenceDirection::Forward, + ), + ( + &NodeId::new(0, 17279), + &ReferenceTypeId::HasComponent, + ReferenceDirection::Inverse, + ), + ]), + ); } - diff --git a/server/src/address_space/method.rs b/server/src/address_space/method.rs index 99b3c1682..72362d6ce 100644 --- a/server/src/address_space/method.rs +++ b/server/src/address_space/method.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! Contains the implementation of `Method` and `MethodBuilder`. diff --git a/server/src/address_space/method_impls.rs b/server/src/address_space/method_impls.rs index 9423d3689..9739ee657 100644 --- a/server/src/address_space/method_impls.rs +++ b/server/src/address_space/method_impls.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use std::sync::{Arc, RwLock}; diff --git a/server/src/address_space/mod.rs b/server/src/address_space/mod.rs index 577f5bd51..4e87ca653 100644 --- a/server/src/address_space/mod.rs +++ b/server/src/address_space/mod.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! Provides functionality to create an address space, find nodes, add nodes, change attributes //! and values on nodes. diff --git a/server/src/address_space/node.rs b/server/src/address_space/node.rs index aff638c37..a8b47f1db 100644 --- a/server/src/address_space/node.rs +++ b/server/src/address_space/node.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use opcua_types::{ service_types::NodeClass, status_code::StatusCode, AttributeId, DataValue, LocalizedText, diff --git a/server/src/address_space/object.rs b/server/src/address_space/object.rs index d8cc9cb01..8bd4be1c8 100644 --- a/server/src/address_space/object.rs +++ b/server/src/address_space/object.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! Contains the implementation of `Object` and `ObjectBuilder`. diff --git a/server/src/address_space/object_type.rs b/server/src/address_space/object_type.rs index 3ca45ba61..57d6ded5f 100644 --- a/server/src/address_space/object_type.rs +++ b/server/src/address_space/object_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! Contains the implementation of `ObjectType` and `ObjectTypeBuilder`. diff --git a/server/src/address_space/reference_type.rs b/server/src/address_space/reference_type.rs index 1fb27e8ce..bea3aa5bd 100644 --- a/server/src/address_space/reference_type.rs +++ b/server/src/address_space/reference_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! Contains the implementation of `ReferenceType` and `ReferenceTypeBuilder`. diff --git a/server/src/address_space/references.rs b/server/src/address_space/references.rs index abb03e0ba..4ece22378 100644 --- a/server/src/address_space/references.rs +++ b/server/src/address_space/references.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use std::collections::{HashMap, HashSet}; diff --git a/server/src/address_space/relative_path.rs b/server/src/address_space/relative_path.rs index 1b858fe9d..8784df62a 100644 --- a/server/src/address_space/relative_path.rs +++ b/server/src/address_space/relative_path.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use std::collections::HashSet; diff --git a/server/src/address_space/variable.rs b/server/src/address_space/variable.rs index b2268fbf0..eb436210a 100644 --- a/server/src/address_space/variable.rs +++ b/server/src/address_space/variable.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! Contains the implementation of `Variable` and `VariableBuilder`. diff --git a/server/src/address_space/variable_type.rs b/server/src/address_space/variable_type.rs index 2b21caef9..52a611686 100644 --- a/server/src/address_space/variable_type.rs +++ b/server/src/address_space/variable_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! Contains the implementation of `VariableType` and `VariableTypeBuilder`. diff --git a/server/src/address_space/view.rs b/server/src/address_space/view.rs index 93773996c..9e67f563f 100644 --- a/server/src/address_space/view.rs +++ b/server/src/address_space/view.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! Contains the implementation of `View` and `ViewBuilder`. diff --git a/server/src/builder.rs b/server/src/builder.rs index 9e1895524..97801d892 100644 --- a/server/src/builder.rs +++ b/server/src/builder.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use std::path::PathBuf; diff --git a/server/src/callbacks.rs b/server/src/callbacks.rs index 27e14d138..9cc15751a 100644 --- a/server/src/callbacks.rs +++ b/server/src/callbacks.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! Callbacks that a server implementation may register with the library diff --git a/server/src/comms/mod.rs b/server/src/comms/mod.rs index 602236990..9e5a08af7 100644 --- a/server/src/comms/mod.rs +++ b/server/src/comms/mod.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! Provides communication services for the server such as the transport layer and secure //! channel implementation diff --git a/server/src/comms/secure_channel_service.rs b/server/src/comms/secure_channel_service.rs index 7905373d6..666af9af8 100644 --- a/server/src/comms/secure_channel_service.rs +++ b/server/src/comms/secure_channel_service.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use std::result::Result; diff --git a/server/src/comms/tcp_transport.rs b/server/src/comms/tcp_transport.rs index 3a3397ca5..040e994e7 100644 --- a/server/src/comms/tcp_transport.rs +++ b/server/src/comms/tcp_transport.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! The TCP transport module handles receiving and sending of binary data in chunks, handshake, //! session creation and dispatching of messages via message handler. diff --git a/server/src/comms/transport.rs b/server/src/comms/transport.rs index 9a66319f0..1d6a71612 100644 --- a/server/src/comms/transport.rs +++ b/server/src/comms/transport.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! Defines the traits and other agnostic properties that all OPC UA transports will share. //! Provides a level of abstraction for the server to call through when it doesn't require specific diff --git a/server/src/config.rs b/server/src/config.rs index 833a52c15..87ccd25ed 100644 --- a/server/src/config.rs +++ b/server/src/config.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! Provides configuration settings for the server including serialization and deserialization from file. use std::collections::{BTreeMap, BTreeSet}; diff --git a/server/src/continuation_point.rs b/server/src/continuation_point.rs index 6732b453c..4f3e3dbff 100644 --- a/server/src/continuation_point.rs +++ b/server/src/continuation_point.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! Provides a browse continuation point type for tracking a browse operation initiated by a client. diff --git a/server/src/diagnostics.rs b/server/src/diagnostics.rs index 269a3be64..3df307b41 100644 --- a/server/src/diagnostics.rs +++ b/server/src/diagnostics.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! Provides diagnostics structures and functions for gathering information about the running //! state of a server. diff --git a/server/src/discovery/mod.rs b/server/src/discovery/mod.rs index 1ebba5de0..54938fc3a 100644 --- a/server/src/discovery/mod.rs +++ b/server/src/discovery/mod.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use opcua_client::prelude::ClientBuilder; diff --git a/server/src/events/audit/cancel_event.rs b/server/src/events/audit/cancel_event.rs index 57dad3113..a29987414 100644 --- a/server/src/events/audit/cancel_event.rs +++ b/server/src/events/audit/cancel_event.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use opcua_types::*; diff --git a/server/src/events/audit/certificate_events.rs b/server/src/events/audit/certificate_events.rs index 2f91ef4c1..766e67fa3 100644 --- a/server/src/events/audit/certificate_events.rs +++ b/server/src/events/audit/certificate_events.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use opcua_types::*; diff --git a/server/src/events/audit/event.rs b/server/src/events/audit/event.rs index 019efecaa..f8f04a48f 100644 --- a/server/src/events/audit/event.rs +++ b/server/src/events/audit/event.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use opcua_types::*; diff --git a/server/src/events/audit/mod.rs b/server/src/events/audit/mod.rs index 05a376f7d..754a405cf 100644 --- a/server/src/events/audit/mod.rs +++ b/server/src/events/audit/mod.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! This module implements the audit event types. //! diff --git a/server/src/events/audit/node_management_event.rs b/server/src/events/audit/node_management_event.rs index 23c46cd7d..b8e927a38 100644 --- a/server/src/events/audit/node_management_event.rs +++ b/server/src/events/audit/node_management_event.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use opcua_types::*; diff --git a/server/src/events/audit/security_event.rs b/server/src/events/audit/security_event.rs index 4e6e20c06..0efea498c 100644 --- a/server/src/events/audit/security_event.rs +++ b/server/src/events/audit/security_event.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use opcua_types::*; diff --git a/server/src/events/audit/session_events.rs b/server/src/events/audit/session_events.rs index 97165d7fa..f0efa454a 100644 --- a/server/src/events/audit/session_events.rs +++ b/server/src/events/audit/session_events.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use opcua_crypto::X509; use opcua_types::*; diff --git a/server/src/events/event.rs b/server/src/events/event.rs index 3c6070f27..fee84ab2f 100644 --- a/server/src/events/event.rs +++ b/server/src/events/event.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! Contains functions for generating events and adding them to the address space of the server. use opcua_types::{ diff --git a/server/src/events/event_filter.rs b/server/src/events/event_filter.rs index ad0aca4e2..7f5a972db 100644 --- a/server/src/events/event_filter.rs +++ b/server/src/events/event_filter.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use std::convert::TryFrom; diff --git a/server/src/events/mod.rs b/server/src/events/mod.rs index beec43b48..2d204ce9b 100644 --- a/server/src/events/mod.rs +++ b/server/src/events/mod.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock pub mod event_filter; pub(crate) mod operator; diff --git a/server/src/events/operator.rs b/server/src/events/operator.rs index 72fec48fd..5807441b7 100644 --- a/server/src/events/operator.rs +++ b/server/src/events/operator.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! Operator implementations for event filters use std::collections::HashSet; diff --git a/server/src/historical/mod.rs b/server/src/historical/mod.rs index c6b233fee..b497a04a3 100644 --- a/server/src/historical/mod.rs +++ b/server/src/historical/mod.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use std::{ result::Result, diff --git a/server/src/http/mod.rs b/server/src/http/mod.rs index 17252293b..f0ee928e8 100644 --- a/server/src/http/mod.rs +++ b/server/src/http/mod.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use std::{ path::PathBuf, diff --git a/server/src/identity_token.rs b/server/src/identity_token.rs index 421a13290..ebfe5abca 100644 --- a/server/src/identity_token.rs +++ b/server/src/identity_token.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use opcua_types::*; diff --git a/server/src/lib.rs b/server/src/lib.rs index 52d987ef7..c66a64d57 100644 --- a/server/src/lib.rs +++ b/server/src/lib.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! The OPC UA Server module contains the server side functionality - address space, services, //! server security, session management, local discovery server registration and subscriptions. diff --git a/server/src/metrics.rs b/server/src/metrics.rs index af3b42bbd..c98e94375 100644 --- a/server/src/metrics.rs +++ b/server/src/metrics.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! Provides debug metric of server state that can be used by anything that wants //! to see what is happening in the server. State is updated by the server as sessions are added, removed, diff --git a/server/src/server.rs b/server/src/server.rs index 1c108366a..c7caddeff 100644 --- a/server/src/server.rs +++ b/server/src/server.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! Provides the [`Server`] type and functionality related to it. diff --git a/server/src/services/attribute.rs b/server/src/services/attribute.rs index 90fde3b40..4b2c681f8 100644 --- a/server/src/services/attribute.rs +++ b/server/src/services/attribute.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use std::{ result::Result, diff --git a/server/src/services/audit.rs b/server/src/services/audit.rs index 9ec6230e3..06bd55b0c 100644 --- a/server/src/services/audit.rs +++ b/server/src/services/audit.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use std::sync::{Arc, RwLock}; diff --git a/server/src/services/discovery.rs b/server/src/services/discovery.rs index f60f887e1..f02e7df04 100644 --- a/server/src/services/discovery.rs +++ b/server/src/services/discovery.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use std::sync::{Arc, RwLock}; diff --git a/server/src/services/message_handler.rs b/server/src/services/message_handler.rs index e62b60c39..844ea2487 100644 --- a/server/src/services/message_handler.rs +++ b/server/src/services/message_handler.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use std::sync::{Arc, RwLock}; diff --git a/server/src/services/method.rs b/server/src/services/method.rs index 10b53ec24..8070b18d6 100644 --- a/server/src/services/method.rs +++ b/server/src/services/method.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use std::sync::{Arc, RwLock}; diff --git a/server/src/services/mod.rs b/server/src/services/mod.rs index 080b5bdfc..4c1f48607 100644 --- a/server/src/services/mod.rs +++ b/server/src/services/mod.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use opcua_core::supported_message::SupportedMessage; use opcua_types::{status_code::StatusCode, RequestHeader, ServiceFault}; diff --git a/server/src/services/monitored_item.rs b/server/src/services/monitored_item.rs index 5546355fa..cbf597f5c 100644 --- a/server/src/services/monitored_item.rs +++ b/server/src/services/monitored_item.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use std::sync::{Arc, RwLock}; diff --git a/server/src/services/node_management.rs b/server/src/services/node_management.rs index a2186c594..5423efe94 100644 --- a/server/src/services/node_management.rs +++ b/server/src/services/node_management.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use std::{ result::Result, diff --git a/server/src/services/query.rs b/server/src/services/query.rs index 41dd95b99..cc56da598 100644 --- a/server/src/services/query.rs +++ b/server/src/services/query.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use std::sync::{Arc, RwLock}; diff --git a/server/src/services/session.rs b/server/src/services/session.rs index b11391c71..6fc02afb4 100644 --- a/server/src/services/session.rs +++ b/server/src/services/session.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use std::sync::{Arc, RwLock}; diff --git a/server/src/services/subscription.rs b/server/src/services/subscription.rs index 44e828e75..62165aff1 100644 --- a/server/src/services/subscription.rs +++ b/server/src/services/subscription.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use std::sync::{Arc, RwLock}; diff --git a/server/src/services/view.rs b/server/src/services/view.rs index 52d761507..4f6b6439e 100644 --- a/server/src/services/view.rs +++ b/server/src/services/view.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use std::result::Result; use std::sync::{Arc, Mutex, RwLock}; diff --git a/server/src/session.rs b/server/src/session.rs index 8f06dc33f..bec0aa020 100644 --- a/server/src/session.rs +++ b/server/src/session.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use std::{ collections::{HashMap, HashSet, VecDeque}, sync::{ diff --git a/server/src/state.rs b/server/src/state.rs index 242cf5646..2b3457b85 100644 --- a/server/src/state.rs +++ b/server/src/state.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! Provides server state information, such as status, configuration, running servers and so on. diff --git a/server/src/subscriptions/mod.rs b/server/src/subscriptions/mod.rs index e76ecfa7e..c0f42647a 100644 --- a/server/src/subscriptions/mod.rs +++ b/server/src/subscriptions/mod.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use opcua_core::supported_message::SupportedMessage; use opcua_types::{service_types::PublishRequest, status_code::StatusCode}; diff --git a/server/src/subscriptions/monitored_item.rs b/server/src/subscriptions/monitored_item.rs index a496ea61c..bbf6d4a5c 100644 --- a/server/src/subscriptions/monitored_item.rs +++ b/server/src/subscriptions/monitored_item.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use std::collections::{BTreeSet, VecDeque}; use std::result::Result; diff --git a/server/src/subscriptions/subscription.rs b/server/src/subscriptions/subscription.rs index 29c8b69de..9446c6ad4 100644 --- a/server/src/subscriptions/subscription.rs +++ b/server/src/subscriptions/subscription.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use std::collections::{BTreeSet, HashMap, VecDeque}; use std::sync::{Arc, RwLock}; diff --git a/server/src/subscriptions/subscriptions.rs b/server/src/subscriptions/subscriptions.rs index 875193097..1a02fea11 100644 --- a/server/src/subscriptions/subscriptions.rs +++ b/server/src/subscriptions/subscriptions.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use std::collections::{BTreeMap, VecDeque}; diff --git a/server/src/util/mod.rs b/server/src/util/mod.rs index b1677b83e..c6a0602fa 100644 --- a/server/src/util/mod.rs +++ b/server/src/util/mod.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! Provides utility routines for things that might be used in a number of places elsewhere. diff --git a/tools/schema/gen_address_space.js b/tools/schema/gen_address_space.js index 1a0cc37ea..f0c7b9945 100644 --- a/tools/schema/gen_address_space.js +++ b/tools/schema/gen_address_space.js @@ -80,7 +80,7 @@ console.log(`modules = ${modules}`); let mod_contents = `// OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated by ${config.autogenerated_by} // DO NOT EDIT THIS FILE diff --git a/tools/schema/gen_node_ids.js b/tools/schema/gen_node_ids.js index 07919fe52..00f379bcd 100644 --- a/tools/schema/gen_node_ids.js +++ b/tools/schema/gen_node_ids.js @@ -10,7 +10,7 @@ let rs_out = fs.createWriteStream(`${settings.rs_node_ids_dir}/node_ids.rs`); rs_out.write(`// OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from NodeIds.csv by tools/schema/gen_node_ids.js // DO NOT EDIT THIS FILE diff --git a/tools/schema/gen_status_codes.js b/tools/schema/gen_status_codes.js index 722ac78fa..926d43fee 100644 --- a/tools/schema/gen_status_codes.js +++ b/tools/schema/gen_status_codes.js @@ -31,7 +31,7 @@ fs.createReadStream(status_code_csv) rs_out.write( `// OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.StatusCodes.csv by tools/schema/gen_status_codes.js // DO NOT EDIT THIS FILE diff --git a/tools/schema/gen_supported_message.js b/tools/schema/gen_supported_message.js index 776838798..4ecf8d10c 100644 --- a/tools/schema/gen_supported_message.js +++ b/tools/schema/gen_supported_message.js @@ -11,7 +11,7 @@ function generate_supported_message(message_types) { var contents = `// OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated by tools/schema/gen_supported_message.js // DO NOT EDIT THIS FILE diff --git a/tools/schema/gen_types.js b/tools/schema/gen_types.js index 085022ba7..6353bf255 100644 --- a/tools/schema/gen_types.js +++ b/tools/schema/gen_types.js @@ -234,7 +234,7 @@ function generate_types_mod(structured_types) { let contents = `// OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -301,7 +301,7 @@ impl BinaryEncoder<${enum_type.name}> for ${enum_type.name} { function generate_enum_types(enums) { let contents = `// OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -447,7 +447,7 @@ function generate_structured_type_file(structured_types, structured_type) { let contents = `// OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE diff --git a/tools/schema/nodeset.js b/tools/schema/nodeset.js index 4a5a8eb6a..b303e4486 100644 --- a/tools/schema/nodeset.js +++ b/tools/schema/nodeset.js @@ -101,7 +101,7 @@ function generate_node_set_files(xml_name, rs_name, part_nr, nodes, alias_map, c if (config.copyright) { contents = `// OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock `; } diff --git a/types/src/argument.rs b/types/src/argument.rs index f2b219238..f61100049 100644 --- a/types/src/argument.rs +++ b/types/src/argument.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use std::io::{Read, Write}; diff --git a/types/src/attribute.rs b/types/src/attribute.rs index b8e4051f4..ceec81c54 100644 --- a/types/src/attribute.rs +++ b/types/src/attribute.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // Attributes as defined in Part 4, Figure B.7 diff --git a/types/src/basic_types.rs b/types/src/basic_types.rs index 362895ba4..90e0c23c0 100644 --- a/types/src/basic_types.rs +++ b/types/src/basic_types.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! Contains definitions of the simple OPC UA scalar types. use std::io::{Read, Write}; diff --git a/types/src/byte_string.rs b/types/src/byte_string.rs index 7cb93e499..136d02134 100644 --- a/types/src/byte_string.rs +++ b/types/src/byte_string.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! Contains the implementation of `ByteString`. diff --git a/types/src/data_types.rs b/types/src/data_types.rs index ea35f2cec..707875b5b 100644 --- a/types/src/data_types.rs +++ b/types/src/data_types.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use crate::date_time::DateTime; diff --git a/types/src/data_value.rs b/types/src/data_value.rs index 039e67b5b..45f7e2c65 100644 --- a/types/src/data_value.rs +++ b/types/src/data_value.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! Contains the implementation of `DataValue`. diff --git a/types/src/date_time.rs b/types/src/date_time.rs index e000ba321..dcbdca867 100644 --- a/types/src/date_time.rs +++ b/types/src/date_time.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! Contains the implementation of `DataTime`. diff --git a/types/src/diagnostic_info.rs b/types/src/diagnostic_info.rs index 077bca368..05b1f7a3d 100644 --- a/types/src/diagnostic_info.rs +++ b/types/src/diagnostic_info.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! Contains the implementation of `DiagnosticInfo`. diff --git a/types/src/encoding.rs b/types/src/encoding.rs index 5f13ccdd2..21d8f39e9 100644 --- a/types/src/encoding.rs +++ b/types/src/encoding.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! Contains the `BinaryEncoder` trait and helpers for reading and writing of scalar values and //! other primitives. diff --git a/types/src/extension_object.rs b/types/src/extension_object.rs index 052057453..8c174c69c 100644 --- a/types/src/extension_object.rs +++ b/types/src/extension_object.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! Contains the implementation of `ExtensionObject`. diff --git a/types/src/guid.rs b/types/src/guid.rs index d09097623..d1f1460fc 100644 --- a/types/src/guid.rs +++ b/types/src/guid.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! Contains the implementation of `Guid`. diff --git a/types/src/lib.rs b/types/src/lib.rs index 3c93dd043..847dc4be8 100644 --- a/types/src/lib.rs +++ b/types/src/lib.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! The OPC UA Types module contains data types and enumerations for OPC UA. //! diff --git a/types/src/localized_text.rs b/types/src/localized_text.rs index e0aa78008..63934373e 100644 --- a/types/src/localized_text.rs +++ b/types/src/localized_text.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! Contains the definition of `LocalizedText`. use std::{ diff --git a/types/src/node_id.rs b/types/src/node_id.rs index 7ed14181c..b19f93004 100644 --- a/types/src/node_id.rs +++ b/types/src/node_id.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! Contains the implementation of `NodeId` and `ExpandedNodeId`. diff --git a/types/src/node_ids.rs b/types/src/node_ids.rs index 5992f8ca3..94374b788 100644 --- a/types/src/node_ids.rs +++ b/types/src/node_ids.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from NodeIds.csv by tools/schema/gen_node_ids.js // DO NOT EDIT THIS FILE @@ -9,7 +9,7 @@ use std::convert::TryFrom; use crate::{ - node_id::{NodeId, ExpandedNodeId}, + node_id::{ExpandedNodeId, NodeId}, string::UAString, }; @@ -837,7 +837,7 @@ impl TryFrom for DataTypeId { 23468 => Ok(DataTypeId::AliasNameDataType), 23497 => Ok(DataTypeId::ReadAnnotationDataDetails), 23498 => Ok(DataTypeId::CurrencyUnitType), - _ => Err(()) + _ => Err(()), } } } @@ -966,7 +966,7 @@ impl TryFrom for ReferenceTypeId { 18804 => Ok(ReferenceTypeId::HasWriterGroup), 18805 => Ok(ReferenceTypeId::HasReaderGroup), 23469 => Ok(ReferenceTypeId::AliasFor), - _ => Err(()) + _ => Err(()), } } } @@ -1441,7 +1441,7 @@ impl TryFrom for ObjectTypeId { 23542 => Ok(ObjectTypeId::EccCurve25519ApplicationCertificateType), 23543 => Ok(ObjectTypeId::EccCurve448ApplicationCertificateType), 23556 => Ok(ObjectTypeId::AuthorizationServicesConfigurationFolderType), - _ => Err(()) + _ => Err(()), } } } @@ -1596,7 +1596,7 @@ impl TryFrom for VariableTypeId { 19077 => Ok(VariableTypeId::MultiStateDictionaryEntryDiscreteBaseType), 19084 => Ok(VariableTypeId::MultiStateDictionaryEntryDiscreteType), 19725 => Ok(VariableTypeId::PubSubDiagnosticsCounterType), - _ => Err(()) + _ => Err(()), } } } @@ -2612,41 +2612,63 @@ pub enum ObjectId { CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ShelvingState = 21619, CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_FirstInGroup = 21657, ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired = 21680, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState = 21767, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_FirstInGroup = 21805, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState = + 21767, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_FirstInGroup = + 21805, ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate = 21828, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState = 21915, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_FirstInGroup = 21953, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState = + 21915, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_FirstInGroup = + 21953, ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired = 21976, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState = 22063, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_FirstInGroup = 22101, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState = + 22063, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_FirstInGroup = + 22101, ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate = 22124, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState = 22211, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_FirstInGroup = 22249, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState = + 22211, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_FirstInGroup = + 22249, ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired = 22272, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState = 22359, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_FirstInGroup = 22397, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState = + 22359, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_FirstInGroup = + 22397, ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate = 22420, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState = 22507, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_FirstInGroup = 22545, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState = + 22507, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_FirstInGroup = + 22545, ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired = 22568, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState = 22655, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_FirstInGroup = 22693, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState = + 22655, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_FirstInGroup = + 22693, ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate = 22716, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState = 22803, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_FirstInGroup = 22841, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState = + 22803, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_FirstInGroup = + 22841, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired = 22864, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState = 22951, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState = + 22951, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_FirstInGroup = 22989, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate = 23012, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState = 23099, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState = + 23099, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_FirstInGroup = 23137, ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired = 23160, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState = 23247, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_FirstInGroup = 23285, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState = + 23247, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_FirstInGroup = + 23285, ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate = 23308, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState = 23395, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_FirstInGroup = 23433, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState = + 23395, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_FirstInGroup = + 23433, AliasNameCategoryType_Alias_Placeholder = 23457, AliasNameCategoryType_SubAliasNameCategories_Placeholder = 23458, Aliases = 23470, @@ -6849,7 +6871,8 @@ pub enum VariableId { NamespacesType_NamespaceIdentifier_Placeholder_NamespaceFile_Read_OutputArguments = 11666, NamespacesType_NamespaceIdentifier_Placeholder_NamespaceFile_Write_InputArguments = 11668, NamespacesType_NamespaceIdentifier_Placeholder_NamespaceFile_GetPosition_InputArguments = 11670, - NamespacesType_NamespaceIdentifier_Placeholder_NamespaceFile_GetPosition_OutputArguments = 11671, + NamespacesType_NamespaceIdentifier_Placeholder_NamespaceFile_GetPosition_OutputArguments = + 11671, NamespacesType_NamespaceIdentifier_Placeholder_NamespaceFile_SetPosition_InputArguments = 11673, SystemStatusChangeEventType_SystemState = 11696, SamplingIntervalDiagnosticsType_SampledMonitoredItemsCount = 11697, @@ -7064,57 +7087,96 @@ pub enum VariableId { SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics = 12098, SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_SessionId = 12099, SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_SessionName = 12100, - SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_ClientDescription = 12101, + SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_ClientDescription = + 12101, SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_ServerUri = 12102, SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_EndpointUrl = 12103, SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_LocaleIds = 12104, - SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_ActualSessionTimeout = 12105, - SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_MaxResponseMessageSize = 12106, - SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_ClientConnectionTime = 12107, - SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_ClientLastContactTime = 12108, - SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_CurrentSubscriptionsCount = 12109, - SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_CurrentMonitoredItemsCount = 12110, - SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_CurrentPublishRequestsInQueue = 12111, - SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_TotalRequestCount = 12112, - SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_UnauthorizedRequestCount = 12113, + SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_ActualSessionTimeout = + 12105, + SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_MaxResponseMessageSize = + 12106, + SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_ClientConnectionTime = + 12107, + SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_ClientLastContactTime = + 12108, + SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_CurrentSubscriptionsCount = + 12109, + SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_CurrentMonitoredItemsCount = + 12110, + SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_CurrentPublishRequestsInQueue = + 12111, + SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_TotalRequestCount = + 12112, + SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_UnauthorizedRequestCount = + 12113, SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_ReadCount = 12114, - SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_HistoryReadCount = 12115, + SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_HistoryReadCount = + 12115, SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_WriteCount = 12116, - SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_HistoryUpdateCount = 12117, + SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_HistoryUpdateCount = + 12117, SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_CallCount = 12118, - SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_CreateMonitoredItemsCount = 12119, - SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_ModifyMonitoredItemsCount = 12120, - SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_SetMonitoringModeCount = 12121, - SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_SetTriggeringCount = 12122, - SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_DeleteMonitoredItemsCount = 12123, - SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_CreateSubscriptionCount = 12124, - SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_ModifySubscriptionCount = 12125, - SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_SetPublishingModeCount = 12126, + SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_CreateMonitoredItemsCount = + 12119, + SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_ModifyMonitoredItemsCount = + 12120, + SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_SetMonitoringModeCount = + 12121, + SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_SetTriggeringCount = + 12122, + SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_DeleteMonitoredItemsCount = + 12123, + SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_CreateSubscriptionCount = + 12124, + SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_ModifySubscriptionCount = + 12125, + SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_SetPublishingModeCount = + 12126, SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_PublishCount = 12127, SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_RepublishCount = 12128, - SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_TransferSubscriptionsCount = 12129, - SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_DeleteSubscriptionsCount = 12130, + SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_TransferSubscriptionsCount = + 12129, + SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_DeleteSubscriptionsCount = + 12130, SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_AddNodesCount = 12131, - SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_AddReferencesCount = 12132, - SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_DeleteNodesCount = 12133, - SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_DeleteReferencesCount = 12134, + SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_AddReferencesCount = + 12132, + SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_DeleteNodesCount = + 12133, + SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_DeleteReferencesCount = + 12134, SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_BrowseCount = 12135, - SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_BrowseNextCount = 12136, - SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_TranslateBrowsePathsToNodeIdsCount = 12137, - SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_QueryFirstCount = 12138, + SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_BrowseNextCount = + 12136, + SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_TranslateBrowsePathsToNodeIdsCount = + 12137, + SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_QueryFirstCount = + 12138, SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_QueryNextCount = 12139, - SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_RegisterNodesCount = 12140, - SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_UnregisterNodesCount = 12141, + SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_RegisterNodesCount = + 12140, + SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionDiagnostics_UnregisterNodesCount = + 12141, SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionSecurityDiagnostics = 12142, - SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionSecurityDiagnostics_SessionId = 12143, - SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionSecurityDiagnostics_ClientUserIdOfSession = 12144, - SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionSecurityDiagnostics_ClientUserIdHistory = 12145, - SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionSecurityDiagnostics_AuthenticationMechanism = 12146, - SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionSecurityDiagnostics_Encoding = 12147, - SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionSecurityDiagnostics_TransportProtocol = 12148, - SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionSecurityDiagnostics_SecurityMode = 12149, - SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionSecurityDiagnostics_SecurityPolicyUri = 12150, - SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionSecurityDiagnostics_ClientCertificate = 12151, + SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionSecurityDiagnostics_SessionId = + 12143, + SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionSecurityDiagnostics_ClientUserIdOfSession = + 12144, + SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionSecurityDiagnostics_ClientUserIdHistory = + 12145, + SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionSecurityDiagnostics_AuthenticationMechanism = + 12146, + SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionSecurityDiagnostics_Encoding = + 12147, + SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionSecurityDiagnostics_TransportProtocol = + 12148, + SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionSecurityDiagnostics_SecurityMode = + 12149, + SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionSecurityDiagnostics_SecurityPolicyUri = + 12150, + SessionsDiagnosticsSummaryType_ClientName_Placeholder_SessionSecurityDiagnostics_ClientCertificate = + 12151, SessionsDiagnosticsSummaryType_ClientName_Placeholder_SubscriptionDiagnosticsArray = 12152, ServerType_ServerCapabilities_OperationLimits_MaxNodesPerHistoryReadData = 12153, ServerType_ServerCapabilities_OperationLimits_MaxNodesPerHistoryReadEvents = 12154, @@ -7212,21 +7274,35 @@ pub enum VariableId { ServerConfiguration_MulticastDnsEnabled = 12641, ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_Size = 12643, ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_OpenCount = 12646, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_Open_InputArguments = 12648, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_Open_OutputArguments = 12649, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_Close_InputArguments = 12651, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_Read_InputArguments = 12653, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_Read_OutputArguments = 12654, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_Write_InputArguments = 12656, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_GetPosition_InputArguments = 12658, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_GetPosition_OutputArguments = 12659, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_SetPosition_InputArguments = 12661, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_Open_InputArguments = + 12648, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_Open_OutputArguments = + 12649, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_Close_InputArguments = + 12651, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_Read_InputArguments = + 12653, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_Read_OutputArguments = + 12654, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_Write_InputArguments = + 12656, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_GetPosition_InputArguments = + 12658, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_GetPosition_OutputArguments = + 12659, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_SetPosition_InputArguments = + 12661, ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_LastUpdateTime = 12662, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_OpenWithMasks_InputArguments = 12664, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_OpenWithMasks_OutputArguments = 12665, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_CloseAndUpdate_OutputArguments = 12667, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_AddCertificate_InputArguments = 12669, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_RemoveCertificate_InputArguments = 12671, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_OpenWithMasks_InputArguments = + 12664, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_OpenWithMasks_OutputArguments = + 12665, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_CloseAndUpdate_OutputArguments = + 12667, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_AddCertificate_InputArguments = + 12669, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_RemoveCertificate_InputArguments = + 12671, OpcUa_BinarySchema_TrustListDataType = 12681, OpcUa_BinarySchema_TrustListDataType_DataTypeVersion = 12682, OpcUa_BinarySchema_TrustListDataType_DictionaryFragment = 12683, @@ -7274,9 +7350,12 @@ pub enum VariableId { ServerConfiguration_GetRejectedList_OutputArguments = 12778, SamplingIntervalDiagnosticsArrayType_SamplingIntervalDiagnostics = 12779, SamplingIntervalDiagnosticsArrayType_SamplingIntervalDiagnostics_SamplingInterval = 12780, - SamplingIntervalDiagnosticsArrayType_SamplingIntervalDiagnostics_SampledMonitoredItemsCount = 12781, - SamplingIntervalDiagnosticsArrayType_SamplingIntervalDiagnostics_MaxSampledMonitoredItemsCount = 12782, - SamplingIntervalDiagnosticsArrayType_SamplingIntervalDiagnostics_DisabledMonitoredItemsSamplingCount = 12783, + SamplingIntervalDiagnosticsArrayType_SamplingIntervalDiagnostics_SampledMonitoredItemsCount = + 12781, + SamplingIntervalDiagnosticsArrayType_SamplingIntervalDiagnostics_MaxSampledMonitoredItemsCount = + 12782, + SamplingIntervalDiagnosticsArrayType_SamplingIntervalDiagnostics_DisabledMonitoredItemsSamplingCount = + 12783, SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics = 12784, SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_SessionId = 12785, SubscriptionDiagnosticsArrayType_SubscriptionDiagnostics_SubscriptionId = 12786, @@ -7567,15 +7646,22 @@ pub enum VariableId { CertificateGroupFolderType_DefaultApplicationGroup_TrustList_Read_OutputArguments = 13828, CertificateGroupFolderType_DefaultApplicationGroup_TrustList_Write_InputArguments = 13830, CertificateGroupFolderType_DefaultApplicationGroup_TrustList_GetPosition_InputArguments = 13832, - CertificateGroupFolderType_DefaultApplicationGroup_TrustList_GetPosition_OutputArguments = 13833, + CertificateGroupFolderType_DefaultApplicationGroup_TrustList_GetPosition_OutputArguments = + 13833, CertificateGroupFolderType_DefaultApplicationGroup_TrustList_SetPosition_InputArguments = 13835, CertificateGroupFolderType_DefaultApplicationGroup_TrustList_LastUpdateTime = 13836, - CertificateGroupFolderType_DefaultApplicationGroup_TrustList_OpenWithMasks_InputArguments = 13838, - CertificateGroupFolderType_DefaultApplicationGroup_TrustList_OpenWithMasks_OutputArguments = 13839, - CertificateGroupFolderType_DefaultApplicationGroup_TrustList_CloseAndUpdate_InputArguments = 13841, - CertificateGroupFolderType_DefaultApplicationGroup_TrustList_CloseAndUpdate_OutputArguments = 13842, - CertificateGroupFolderType_DefaultApplicationGroup_TrustList_AddCertificate_InputArguments = 13844, - CertificateGroupFolderType_DefaultApplicationGroup_TrustList_RemoveCertificate_InputArguments = 13846, + CertificateGroupFolderType_DefaultApplicationGroup_TrustList_OpenWithMasks_InputArguments = + 13838, + CertificateGroupFolderType_DefaultApplicationGroup_TrustList_OpenWithMasks_OutputArguments = + 13839, + CertificateGroupFolderType_DefaultApplicationGroup_TrustList_CloseAndUpdate_InputArguments = + 13841, + CertificateGroupFolderType_DefaultApplicationGroup_TrustList_CloseAndUpdate_OutputArguments = + 13842, + CertificateGroupFolderType_DefaultApplicationGroup_TrustList_AddCertificate_InputArguments = + 13844, + CertificateGroupFolderType_DefaultApplicationGroup_TrustList_RemoveCertificate_InputArguments = + 13846, CertificateGroupFolderType_DefaultApplicationGroup_CertificateTypes = 13847, CertificateGroupFolderType_DefaultHttpsGroup_TrustList_Size = 13850, CertificateGroupFolderType_DefaultHttpsGroup_TrustList_Writable = 13851, @@ -7615,11 +7701,16 @@ pub enum VariableId { CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_SetPosition_InputArguments = 13903, CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_LastUpdateTime = 13904, CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_OpenWithMasks_InputArguments = 13906, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_OpenWithMasks_OutputArguments = 13907, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_CloseAndUpdate_InputArguments = 13909, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_CloseAndUpdate_OutputArguments = 13910, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_AddCertificate_InputArguments = 13912, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_RemoveCertificate_InputArguments = 13914, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_OpenWithMasks_OutputArguments = + 13907, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_CloseAndUpdate_InputArguments = + 13909, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_CloseAndUpdate_OutputArguments = + 13910, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_AddCertificate_InputArguments = + 13912, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustList_RemoveCertificate_InputArguments = + 13914, CertificateGroupFolderType_DefaultUserTokenGroup_CertificateTypes = 13915, CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_Size = 13918, CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_Writable = 13919, @@ -7632,82 +7723,139 @@ pub enum VariableId { CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_Read_InputArguments = 13929, CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_Read_OutputArguments = 13930, CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_Write_InputArguments = 13932, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_GetPosition_InputArguments = 13934, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_GetPosition_OutputArguments = 13935, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_SetPosition_InputArguments = 13937, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_GetPosition_InputArguments = + 13934, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_GetPosition_OutputArguments = + 13935, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_SetPosition_InputArguments = + 13937, CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_LastUpdateTime = 13938, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_OpenWithMasks_InputArguments = 13940, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_OpenWithMasks_OutputArguments = 13941, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_CloseAndUpdate_InputArguments = 13943, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_CloseAndUpdate_OutputArguments = 13944, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_AddCertificate_InputArguments = 13946, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_RemoveCertificate_InputArguments = 13948, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_OpenWithMasks_InputArguments = + 13940, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_OpenWithMasks_OutputArguments = + 13941, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_CloseAndUpdate_InputArguments = + 13943, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_CloseAndUpdate_OutputArguments = + 13944, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_AddCertificate_InputArguments = + 13946, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustList_RemoveCertificate_InputArguments = + 13948, CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateTypes = 13949, ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_Size = 13953, ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_Writable = 13954, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_UserWritable = 13955, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_UserWritable = + 13955, ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_OpenCount = 13956, ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_MimeType = 13957, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_Open_InputArguments = 13959, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_Open_OutputArguments = 13960, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_Close_InputArguments = 13962, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_Read_InputArguments = 13964, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_Read_OutputArguments = 13965, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_Write_InputArguments = 13967, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_GetPosition_InputArguments = 13969, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_GetPosition_OutputArguments = 13970, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_SetPosition_InputArguments = 13972, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_LastUpdateTime = 13973, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_OpenWithMasks_InputArguments = 13975, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_OpenWithMasks_OutputArguments = 13976, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_CloseAndUpdate_InputArguments = 13978, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_CloseAndUpdate_OutputArguments = 13979, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_AddCertificate_InputArguments = 13981, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_RemoveCertificate_InputArguments = 13983, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_Open_InputArguments = + 13959, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_Open_OutputArguments = + 13960, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_Close_InputArguments = + 13962, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_Read_InputArguments = + 13964, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_Read_OutputArguments = + 13965, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_Write_InputArguments = + 13967, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_GetPosition_InputArguments = + 13969, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_GetPosition_OutputArguments = + 13970, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_SetPosition_InputArguments = + 13972, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_LastUpdateTime = + 13973, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_OpenWithMasks_InputArguments = + 13975, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_OpenWithMasks_OutputArguments = + 13976, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_CloseAndUpdate_InputArguments = + 13978, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_CloseAndUpdate_OutputArguments = + 13979, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_AddCertificate_InputArguments = + 13981, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_RemoveCertificate_InputArguments = + 13983, ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateTypes = 13984, ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_Size = 13987, ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_Writable = 13988, ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_UserWritable = 13989, ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_OpenCount = 13990, ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_MimeType = 13991, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_Open_InputArguments = 13993, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_Open_OutputArguments = 13994, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_Close_InputArguments = 13996, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_Read_InputArguments = 13998, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_Read_OutputArguments = 13999, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_Write_InputArguments = 14001, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_GetPosition_InputArguments = 14003, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_GetPosition_OutputArguments = 14004, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_SetPosition_InputArguments = 14006, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_Open_InputArguments = + 13993, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_Open_OutputArguments = + 13994, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_Close_InputArguments = + 13996, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_Read_InputArguments = + 13998, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_Read_OutputArguments = + 13999, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_Write_InputArguments = + 14001, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_GetPosition_InputArguments = + 14003, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_GetPosition_OutputArguments = + 14004, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_SetPosition_InputArguments = + 14006, ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_LastUpdateTime = 14007, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_OpenWithMasks_InputArguments = 14009, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_OpenWithMasks_OutputArguments = 14010, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_CloseAndUpdate_InputArguments = 14012, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_CloseAndUpdate_OutputArguments = 14013, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_AddCertificate_InputArguments = 14015, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_RemoveCertificate_InputArguments = 14017, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_OpenWithMasks_InputArguments = + 14009, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_OpenWithMasks_OutputArguments = + 14010, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_CloseAndUpdate_InputArguments = + 14012, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_CloseAndUpdate_OutputArguments = + 14013, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_AddCertificate_InputArguments = + 14015, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_RemoveCertificate_InputArguments = + 14017, ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateTypes = 14018, ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_Size = 14021, ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_Writable = 14022, ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_UserWritable = 14023, ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_OpenCount = 14024, ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_MimeType = 14025, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_Open_InputArguments = 14027, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_Open_OutputArguments = 14028, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_Close_InputArguments = 14030, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_Read_InputArguments = 14032, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_Read_OutputArguments = 14033, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_Write_InputArguments = 14035, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_GetPosition_InputArguments = 14037, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_GetPosition_OutputArguments = 14038, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_SetPosition_InputArguments = 14040, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_LastUpdateTime = 14041, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_OpenWithMasks_InputArguments = 14043, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_OpenWithMasks_OutputArguments = 14044, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_CloseAndUpdate_InputArguments = 14046, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_CloseAndUpdate_OutputArguments = 14047, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_AddCertificate_InputArguments = 14049, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_RemoveCertificate_InputArguments = 14051, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_Open_InputArguments = + 14027, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_Open_OutputArguments = + 14028, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_Close_InputArguments = + 14030, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_Read_InputArguments = + 14032, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_Read_OutputArguments = + 14033, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_Write_InputArguments = + 14035, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_GetPosition_InputArguments = + 14037, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_GetPosition_OutputArguments = + 14038, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_SetPosition_InputArguments = + 14040, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_LastUpdateTime = + 14041, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_OpenWithMasks_InputArguments = + 14043, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_OpenWithMasks_OutputArguments = + 14044, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_CloseAndUpdate_InputArguments = + 14046, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_CloseAndUpdate_OutputArguments = + 14047, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_AddCertificate_InputArguments = + 14049, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_RemoveCertificate_InputArguments = + 14051, ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateTypes = 14052, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_Size = 14090, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_Writable = 14091, @@ -7720,43 +7868,68 @@ pub enum VariableId { ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_Read_InputArguments = 14101, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_Read_OutputArguments = 14102, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_Write_InputArguments = 14104, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_GetPosition_InputArguments = 14106, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_GetPosition_OutputArguments = 14107, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_SetPosition_InputArguments = 14109, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_GetPosition_InputArguments = + 14106, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_GetPosition_OutputArguments = + 14107, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_SetPosition_InputArguments = + 14109, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_LastUpdateTime = 14110, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_OpenWithMasks_InputArguments = 14112, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_OpenWithMasks_OutputArguments = 14113, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_CloseAndUpdate_InputArguments = 14115, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_CloseAndUpdate_OutputArguments = 14116, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_AddCertificate_InputArguments = 14118, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_RemoveCertificate_InputArguments = 14120, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_OpenWithMasks_InputArguments = + 14112, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_OpenWithMasks_OutputArguments = + 14113, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_CloseAndUpdate_InputArguments = + 14115, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_CloseAndUpdate_OutputArguments = + 14116, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_AddCertificate_InputArguments = + 14118, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_RemoveCertificate_InputArguments = + 14120, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateTypes = 14121, ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_Size = 14124, ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_Writable = 14125, ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_UserWritable = 14126, ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_OpenCount = 14127, ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_MimeType = 14128, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_Open_InputArguments = 14130, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_Open_OutputArguments = 14131, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_Close_InputArguments = 14133, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_Read_InputArguments = 14135, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_Read_OutputArguments = 14136, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_Write_InputArguments = 14138, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_GetPosition_InputArguments = 14140, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_GetPosition_OutputArguments = 14141, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_SetPosition_InputArguments = 14143, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_Open_InputArguments = + 14130, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_Open_OutputArguments = + 14131, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_Close_InputArguments = + 14133, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_Read_InputArguments = + 14135, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_Read_OutputArguments = + 14136, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_Write_InputArguments = + 14138, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_GetPosition_InputArguments = + 14140, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_GetPosition_OutputArguments = + 14141, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_SetPosition_InputArguments = + 14143, ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_LastUpdateTime = 14144, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_OpenWithMasks_InputArguments = 14146, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_OpenWithMasks_OutputArguments = 14147, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_CloseAndUpdate_InputArguments = 14149, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_CloseAndUpdate_OutputArguments = 14150, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_AddCertificate_InputArguments = 14152, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_RemoveCertificate_InputArguments = 14154, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_OpenWithMasks_InputArguments = + 14146, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_OpenWithMasks_OutputArguments = + 14147, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_CloseAndUpdate_InputArguments = + 14149, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_CloseAndUpdate_OutputArguments = + 14150, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_AddCertificate_InputArguments = + 14152, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_RemoveCertificate_InputArguments = + 14154, ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateTypes = 14155, ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_Writable = 14157, ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_UserWritable = 14158, ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_MimeType = 14159, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_CloseAndUpdate_InputArguments = 14160, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_CloseAndUpdate_InputArguments = + 14160, ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateTypes = 14161, RemoveConnectionMethodType_InputArguments = 14184, PubSubConnectionType_RemoveGroup_InputArguments = 14226, @@ -7961,9 +8134,12 @@ pub enum VariableId { PublishSubscribe_SecurityGroups_RemoveSecurityGroup_InputArguments = 15448, GetSecurityGroupMethodType_InputArguments = 15450, GetSecurityGroupMethodType_OutputArguments = 15451, - SecurityGroupFolderType_SecurityGroupFolderName_Placeholder_AddSecurityGroup_InputArguments = 15455, - SecurityGroupFolderType_SecurityGroupFolderName_Placeholder_AddSecurityGroup_OutputArguments = 15456, - SecurityGroupFolderType_SecurityGroupFolderName_Placeholder_RemoveSecurityGroup_InputArguments = 15458, + SecurityGroupFolderType_SecurityGroupFolderName_Placeholder_AddSecurityGroup_InputArguments = + 15455, + SecurityGroupFolderType_SecurityGroupFolderName_Placeholder_AddSecurityGroup_OutputArguments = + 15456, + SecurityGroupFolderType_SecurityGroupFolderName_Placeholder_RemoveSecurityGroup_InputArguments = + 15458, SecurityGroupFolderType_SecurityGroupName_Placeholder_SecurityGroupId = 15460, SecurityGroupFolderType_AddSecurityGroup_InputArguments = 15462, SecurityGroupFolderType_AddSecurityGroup_OutputArguments = 15463, @@ -7972,9 +8148,12 @@ pub enum VariableId { AddSecurityGroupMethodType_OutputArguments = 15468, RemoveSecurityGroupMethodType_InputArguments = 15470, SecurityGroupType_SecurityGroupId = 15472, - DataSetFolderType_PublishedDataSetName_Placeholder_ExtensionFields_AddExtensionField_InputArguments = 15475, - DataSetFolderType_PublishedDataSetName_Placeholder_ExtensionFields_AddExtensionField_OutputArguments = 15476, - DataSetFolderType_PublishedDataSetName_Placeholder_ExtensionFields_RemoveExtensionField_InputArguments = 15478, + DataSetFolderType_PublishedDataSetName_Placeholder_ExtensionFields_AddExtensionField_InputArguments = + 15475, + DataSetFolderType_PublishedDataSetName_Placeholder_ExtensionFields_AddExtensionField_OutputArguments = + 15476, + DataSetFolderType_PublishedDataSetName_Placeholder_ExtensionFields_RemoveExtensionField_InputArguments = + 15478, PublishedDataSetType_ExtensionFields_AddExtensionField_InputArguments = 15483, PublishedDataSetType_ExtensionFields_AddExtensionField_OutputArguments = 15484, PublishedDataSetType_ExtensionFields_RemoveExtensionField_InputArguments = 15486, @@ -8102,7 +8281,8 @@ pub enum VariableId { TemporaryFileTransferType_TransferState_Placeholder_LastTransition_Name = 15762, TemporaryFileTransferType_TransferState_Placeholder_LastTransition_Number = 15763, TemporaryFileTransferType_TransferState_Placeholder_LastTransition_TransitionTime = 15764, - TemporaryFileTransferType_TransferState_Placeholder_LastTransition_EffectiveTransitionTime = 15765, + TemporaryFileTransferType_TransferState_Placeholder_LastTransition_EffectiveTransitionTime = + 15765, OpcUa_BinarySchema_PublishedDataSetDataType = 15766, OpcUa_BinarySchema_PublishedDataSetDataType_DataTypeVersion = 15767, OpcUa_BinarySchema_PublishedDataSetDataType_DictionaryFragment = 15768, @@ -8273,8 +8453,10 @@ pub enum VariableId { AddRoleMethodType_InputArguments = 16003, AddRoleMethodType_OutputArguments = 16004, RemoveRoleMethodType_InputArguments = 16006, - PublishSubscribe_ConnectionName_Placeholder_Diagnostics_TotalInformation_DiagnosticsLevel = 16013, - PublishSubscribe_ConnectionName_Placeholder_Diagnostics_TotalInformation_TimeFirstChange = 16020, + PublishSubscribe_ConnectionName_Placeholder_Diagnostics_TotalInformation_DiagnosticsLevel = + 16013, + PublishSubscribe_ConnectionName_Placeholder_Diagnostics_TotalInformation_TimeFirstChange = + 16020, WellKnownRole_Engineer_AddIdentity_InputArguments = 16042, WellKnownRole_Engineer_RemoveIdentity_InputArguments = 16044, PublishSubscribe_ConnectionName_Placeholder_Diagnostics_TotalError = 16059, @@ -8285,8 +8467,10 @@ pub enum VariableId { PublishSubscribe_ConnectionName_Placeholder_Diagnostics_SubError = 16101, PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateError = 16103, PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateError_Active = 16122, - PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateError_Classification = 16123, - PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateError_DiagnosticsLevel = 16124, + PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateError_Classification = + 16123, + PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateError_DiagnosticsLevel = + 16124, OpcUa_BinarySchema_RolePermissionType = 16131, OpcUa_BinarySchema_RolePermissionType_DataTypeVersion = 16132, OpcUa_BinarySchema_RolePermissionType_DictionaryFragment = 16133, @@ -8299,7 +8483,8 @@ pub enum VariableId { NamespacesType_NamespaceIdentifier_Placeholder_DefaultRolePermissions = 16140, NamespacesType_NamespaceIdentifier_Placeholder_DefaultUserRolePermissions = 16141, NamespacesType_NamespaceIdentifier_Placeholder_DefaultAccessRestrictions = 16142, - PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateError_TimeFirstChange = 16160, + PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateError_TimeFirstChange = + 16160, RoleSetType_RoleName_Placeholder_Identities = 16162, RoleSetType_RoleName_Placeholder_Applications = 16163, RoleSetType_RoleName_Placeholder_Endpoints = 16164, @@ -8374,7 +8559,8 @@ pub enum VariableId { WellKnownRole_ConfigureAdmin_RemoveApplication_InputArguments = 16275, WellKnownRole_ConfigureAdmin_AddEndpoint_InputArguments = 16277, WellKnownRole_ConfigureAdmin_RemoveEndpoint_InputArguments = 16279, - PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByMethod = 16283, + PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByMethod = + 16283, ServerType_ServerCapabilities_RoleSet_AddRole_InputArguments = 16291, ServerType_ServerCapabilities_RoleSet_AddRole_OutputArguments = 16292, ServerType_ServerCapabilities_RoleSet_RemoveRole_InputArguments = 16294, @@ -8389,7 +8575,8 @@ pub enum VariableId { FileSystem_FileDirectoryName_Placeholder_CreateDirectory_OutputArguments = 16318, FileSystem_FileDirectoryName_Placeholder_CreateFile_InputArguments = 16320, FileSystem_FileDirectoryName_Placeholder_CreateFile_OutputArguments = 16321, - PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Active = 16322, + PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Active = + 16322, FileSystem_FileDirectoryName_Placeholder_MoveOrCopy_InputArguments = 16325, FileSystem_FileDirectoryName_Placeholder_MoveOrCopy_OutputArguments = 16326, FileSystem_FileName_Placeholder_Size = 16328, @@ -8496,7 +8683,8 @@ pub enum VariableId { AlarmGroupType_AlarmConditionInstance_Placeholder_ConfirmedState_Number = 16455, AlarmGroupType_AlarmConditionInstance_Placeholder_ConfirmedState_EffectiveDisplayName = 16456, AlarmGroupType_AlarmConditionInstance_Placeholder_ConfirmedState_TransitionTime = 16457, - AlarmGroupType_AlarmConditionInstance_Placeholder_ConfirmedState_EffectiveTransitionTime = 16458, + AlarmGroupType_AlarmConditionInstance_Placeholder_ConfirmedState_EffectiveTransitionTime = + 16458, AlarmGroupType_AlarmConditionInstance_Placeholder_ConfirmedState_TrueState = 16459, AlarmGroupType_AlarmConditionInstance_Placeholder_ConfirmedState_FalseState = 16460, AlarmGroupType_AlarmConditionInstance_Placeholder_Acknowledge_InputArguments = 16462, @@ -8517,16 +8705,19 @@ pub enum VariableId { AlarmGroupType_AlarmConditionInstance_Placeholder_SuppressedState_Number = 16478, AlarmGroupType_AlarmConditionInstance_Placeholder_SuppressedState_EffectiveDisplayName = 16479, AlarmGroupType_AlarmConditionInstance_Placeholder_SuppressedState_TransitionTime = 16480, - AlarmGroupType_AlarmConditionInstance_Placeholder_SuppressedState_EffectiveTransitionTime = 16481, + AlarmGroupType_AlarmConditionInstance_Placeholder_SuppressedState_EffectiveTransitionTime = + 16481, AlarmGroupType_AlarmConditionInstance_Placeholder_SuppressedState_TrueState = 16482, AlarmGroupType_AlarmConditionInstance_Placeholder_SuppressedState_FalseState = 16483, AlarmGroupType_AlarmConditionInstance_Placeholder_OutOfServiceState = 16484, AlarmGroupType_AlarmConditionInstance_Placeholder_OutOfServiceState_Id = 16485, AlarmGroupType_AlarmConditionInstance_Placeholder_OutOfServiceState_Name = 16486, AlarmGroupType_AlarmConditionInstance_Placeholder_OutOfServiceState_Number = 16487, - AlarmGroupType_AlarmConditionInstance_Placeholder_OutOfServiceState_EffectiveDisplayName = 16488, + AlarmGroupType_AlarmConditionInstance_Placeholder_OutOfServiceState_EffectiveDisplayName = + 16488, AlarmGroupType_AlarmConditionInstance_Placeholder_OutOfServiceState_TransitionTime = 16489, - AlarmGroupType_AlarmConditionInstance_Placeholder_OutOfServiceState_EffectiveTransitionTime = 16490, + AlarmGroupType_AlarmConditionInstance_Placeholder_OutOfServiceState_EffectiveTransitionTime = + 16490, AlarmGroupType_AlarmConditionInstance_Placeholder_OutOfServiceState_TrueState = 16491, AlarmGroupType_AlarmConditionInstance_Placeholder_OutOfServiceState_FalseState = 16492, AlarmGroupType_AlarmConditionInstance_Placeholder_SilenceState = 16493, @@ -8542,20 +8733,25 @@ pub enum VariableId { AlarmGroupType_AlarmConditionInstance_Placeholder_ShelvingState_CurrentState_Id = 16504, AlarmGroupType_AlarmConditionInstance_Placeholder_ShelvingState_CurrentState_Name = 16505, AlarmGroupType_AlarmConditionInstance_Placeholder_ShelvingState_CurrentState_Number = 16506, - AlarmGroupType_AlarmConditionInstance_Placeholder_ShelvingState_CurrentState_EffectiveDisplayName = 16507, + AlarmGroupType_AlarmConditionInstance_Placeholder_ShelvingState_CurrentState_EffectiveDisplayName = + 16507, AlarmGroupType_AlarmConditionInstance_Placeholder_ShelvingState_LastTransition = 16508, AlarmGroupType_AlarmConditionInstance_Placeholder_ShelvingState_LastTransition_Id = 16509, AlarmGroupType_AlarmConditionInstance_Placeholder_ShelvingState_LastTransition_Name = 16510, AlarmGroupType_AlarmConditionInstance_Placeholder_ShelvingState_LastTransition_Number = 16511, - AlarmGroupType_AlarmConditionInstance_Placeholder_ShelvingState_LastTransition_TransitionTime = 16512, - AlarmGroupType_AlarmConditionInstance_Placeholder_ShelvingState_LastTransition_EffectiveTransitionTime = 16513, + AlarmGroupType_AlarmConditionInstance_Placeholder_ShelvingState_LastTransition_TransitionTime = + 16512, + AlarmGroupType_AlarmConditionInstance_Placeholder_ShelvingState_LastTransition_EffectiveTransitionTime = + 16513, AlarmGroupType_AlarmConditionInstance_Placeholder_ShelvingState_UnshelveTime = 16514, - AlarmGroupType_AlarmConditionInstance_Placeholder_ShelvingState_TimedShelve_InputArguments = 16518, + AlarmGroupType_AlarmConditionInstance_Placeholder_ShelvingState_TimedShelve_InputArguments = + 16518, AlarmGroupType_AlarmConditionInstance_Placeholder_SuppressedOrShelved = 16519, AlarmGroupType_AlarmConditionInstance_Placeholder_MaxTimeShelved = 16520, AlarmGroupType_AlarmConditionInstance_Placeholder_AudibleEnabled = 16521, AlarmGroupType_AlarmConditionInstance_Placeholder_AudibleSound = 16522, - PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Classification = 16523, + PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Classification = + 16523, AlarmGroupType_AlarmConditionInstance_Placeholder_OnDelay = 16527, AlarmGroupType_AlarmConditionInstance_Placeholder_OffDelay = 16528, AlarmGroupType_AlarmConditionInstance_Placeholder_FirstInGroupFlag = 16529, @@ -8829,13 +9025,15 @@ pub enum VariableId { NonExclusiveRateOfChangeAlarmType_AudibleEnabled = 16838, NonExclusiveRateOfChangeAlarmType_AudibleSound = 16839, PublishedEventsType_DataSetClassId = 16841, - DataSetFolderType_DataSetFolderName_Placeholder_AddPublishedDataItemsTemplate_InputArguments = 16843, + DataSetFolderType_DataSetFolderName_Placeholder_AddPublishedDataItemsTemplate_InputArguments = + 16843, NonExclusiveRateOfChangeAlarmType_OnDelay = 16844, NonExclusiveRateOfChangeAlarmType_OffDelay = 16845, NonExclusiveRateOfChangeAlarmType_FirstInGroupFlag = 16846, NonExclusiveRateOfChangeAlarmType_ReAlarmTime = 16849, NonExclusiveRateOfChangeAlarmType_ReAlarmRepeatCount = 16850, - DataSetFolderType_DataSetFolderName_Placeholder_AddPublishedDataItemsTemplate_OutputArguments = 16853, + DataSetFolderType_DataSetFolderName_Placeholder_AddPublishedDataItemsTemplate_OutputArguments = + 16853, NonExclusiveRateOfChangeAlarmType_BaseHighHighLimit = 16854, NonExclusiveRateOfChangeAlarmType_BaseHighLimit = 16855, NonExclusiveRateOfChangeAlarmType_BaseLowLimit = 16856, @@ -8863,8 +9061,10 @@ pub enum VariableId { ExclusiveRateOfChangeAlarmType_SilenceState_FalseState = 16878, ExclusiveRateOfChangeAlarmType_AudibleEnabled = 16879, ExclusiveRateOfChangeAlarmType_AudibleSound = 16880, - DataSetFolderType_DataSetFolderName_Placeholder_AddPublishedEventsTemplate_InputArguments = 16882, - DataSetFolderType_DataSetFolderName_Placeholder_AddPublishedEventsTemplate_OutputArguments = 16883, + DataSetFolderType_DataSetFolderName_Placeholder_AddPublishedEventsTemplate_InputArguments = + 16882, + DataSetFolderType_DataSetFolderName_Placeholder_AddPublishedEventsTemplate_OutputArguments = + 16883, ExclusiveRateOfChangeAlarmType_OnDelay = 16885, ExclusiveRateOfChangeAlarmType_OffDelay = 16886, ExclusiveRateOfChangeAlarmType_FirstInGroupFlag = 16887, @@ -9215,12 +9415,16 @@ pub enum VariableId { PublishSubscribeType_ConnectionName_Placeholder_TransportProfileUri_RestrictToList = 17295, PublishSubscribeType_SetSecurityKeys_InputArguments = 17297, SetSecurityKeysMethodType_InputArguments = 17299, - PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_DiagnosticsLevel = 17300, + PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_DiagnosticsLevel = + 17300, PubSubConnectionType_WriterGroupName_Placeholder_AddDataSetWriter_OutputArguments = 17301, PubSubConnectionType_ReaderGroupName_Placeholder_MaxNetworkMessageSize = 17302, - PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_TimeFirstChange = 17303, - PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByParent = 17304, - PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Active = 17305, + PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_TimeFirstChange = + 17303, + PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByParent = + 17304, + PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Active = + 17305, PubSubConnectionType_TransportProfileUri = 17306, PubSubConnectionType_TransportProfileUri_RestrictToList = 17309, PubSubConnectionType_WriterGroupName_Placeholder_SecurityMode = 17311, @@ -9229,7 +9433,8 @@ pub enum VariableId { PubSubConnectionType_WriterGroupName_Placeholder_Status_State = 17315, PubSubConnectionType_WriterGroupName_Placeholder_PublishingInterval = 17318, PubSubConnectionType_WriterGroupName_Placeholder_KeepAliveTime = 17319, - PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Classification = 17320, + PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Classification = + 17320, PubSubConnectionType_WriterGroupName_Placeholder_Priority = 17321, PubSubConnectionType_WriterGroupName_Placeholder_LocaleIds = 17322, PubSubConnectionType_WriterGroupName_Placeholder_RemoveDataSetWriter_InputArguments = 17324, @@ -9238,25 +9443,41 @@ pub enum VariableId { PubSubConnectionType_ReaderGroupName_Placeholder_SecurityKeyServices = 17328, PubSubConnectionType_ReaderGroupName_Placeholder_Status_State = 17330, PubSubConnectionType_ReaderGroupName_Placeholder_RemoveDataSetReader_InputArguments = 17334, - PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByParent_DiagnosticsLevel = 17335, - PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByParent_TimeFirstChange = 17336, - PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalFromError = 17337, - PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Active = 17338, - PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Classification = 17339, - PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalFromError_DiagnosticsLevel = 17340, - PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalFromError_TimeFirstChange = 17341, + PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByParent_DiagnosticsLevel = + 17335, + PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByParent_TimeFirstChange = + 17336, + PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalFromError = + 17337, + PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Active = + 17338, + PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Classification = + 17339, + PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalFromError_DiagnosticsLevel = + 17340, + PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalFromError_TimeFirstChange = + 17341, PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StatePausedByParent = 17342, - PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StatePausedByParent_Active = 17343, - PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StatePausedByParent_Classification = 17344, - PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StatePausedByParent_DiagnosticsLevel = 17345, - PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StatePausedByParent_TimeFirstChange = 17346, + PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StatePausedByParent_Active = + 17343, + PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StatePausedByParent_Classification = + 17344, + PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StatePausedByParent_DiagnosticsLevel = + 17345, + PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StatePausedByParent_TimeFirstChange = + 17346, PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateDisabledByMethod = 17347, - PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Active = 17348, - PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Classification = 17349, - PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_DiagnosticsLevel = 17350, - PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_TimeFirstChange = 17351, + PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Active = + 17348, + PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Classification = + 17349, + PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_DiagnosticsLevel = + 17350, + PublishSubscribe_ConnectionName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_TimeFirstChange = + 17351, PublishSubscribe_ConnectionName_Placeholder_Diagnostics_LiveValues_ResolvedAddress = 17353, - PublishSubscribe_ConnectionName_Placeholder_Diagnostics_LiveValues_ResolvedAddress_DiagnosticsLevel = 17354, + PublishSubscribe_ConnectionName_Placeholder_Diagnostics_LiveValues_ResolvedAddress_DiagnosticsLevel = + 17354, PublishSubscribe_ConnectionName_Placeholder_AddWriterGroup_InputArguments = 17357, PublishSubscribe_ConnectionName_Placeholder_AddWriterGroup_OutputArguments = 17358, PublishSubscribe_ConnectionName_Placeholder_AddReaderGroup_InputArguments = 17360, @@ -9369,20 +9590,25 @@ pub enum VariableId { AnalogUnitType_EURange = 17501, AnalogUnitType_EngineeringUnits = 17502, PublishSubscribeType_ConnectionName_Placeholder_Address_NetworkInterface_Selections = 17503, - PublishSubscribeType_ConnectionName_Placeholder_Address_NetworkInterface_SelectionDescriptions = 17504, + PublishSubscribeType_ConnectionName_Placeholder_Address_NetworkInterface_SelectionDescriptions = + 17504, PublishSubscribeType_ConnectionName_Placeholder_Address_NetworkInterface_RestrictToList = 17505, PublishSubscribe_ConnectionName_Placeholder_Address_NetworkInterface_Selections = 17506, PubSubConnectionType_AddReaderGroup_InputArguments = 17507, PubSubConnectionType_AddReaderGroup_OutputArguments = 17508, - PublishSubscribe_ConnectionName_Placeholder_Address_NetworkInterface_SelectionDescriptions = 17509, + PublishSubscribe_ConnectionName_Placeholder_Address_NetworkInterface_SelectionDescriptions = + 17509, PublishSubscribe_ConnectionName_Placeholder_Address_NetworkInterface_RestrictToList = 17510, KeyCredentialConfigurationFolderType_ServiceName_Placeholder_ResourceUri = 17512, KeyCredentialConfigurationFolderType_ServiceName_Placeholder_ProfileUri = 17513, KeyCredentialConfigurationFolderType_ServiceName_Placeholder_EndpointUrls = 17514, KeyCredentialConfigurationFolderType_ServiceName_Placeholder_ServiceStatus = 17515, - KeyCredentialConfigurationFolderType_ServiceName_Placeholder_GetEncryptingKey_InputArguments = 17517, - KeyCredentialConfigurationFolderType_ServiceName_Placeholder_GetEncryptingKey_OutputArguments = 17518, - KeyCredentialConfigurationFolderType_ServiceName_Placeholder_UpdateCredential_InputArguments = 17520, + KeyCredentialConfigurationFolderType_ServiceName_Placeholder_GetEncryptingKey_InputArguments = + 17517, + KeyCredentialConfigurationFolderType_ServiceName_Placeholder_GetEncryptingKey_OutputArguments = + 17518, + KeyCredentialConfigurationFolderType_ServiceName_Placeholder_UpdateCredential_InputArguments = + 17520, KeyCredentialConfigurationFolderType_CreateCredential_InputArguments = 17523, KeyCredentialConfigurationFolderType_CreateCredential_OutputArguments = 17524, KeyCredentialConfiguration_ServiceName_Placeholder_GetEncryptingKey_InputArguments = 17526, @@ -9521,7 +9747,8 @@ pub enum VariableId { ProgramStateMachineType_AvailableStates = 17704, ProgramStateMachineType_AvailableTransitions = 17705, PublishSubscribeType_ConnectionName_Placeholder_TransportProfileUri_Selections = 17706, - PublishSubscribeType_ConnectionName_Placeholder_TransportProfileUri_SelectionDescriptions = 17707, + PublishSubscribeType_ConnectionName_Placeholder_TransportProfileUri_SelectionDescriptions = + 17707, PubSubConnectionType_TransportProfileUri_Selections = 17710, PubSubConnectionType_TransportProfileUri_SelectionDescriptions = 17711, RationalNumberType_Numerator = 17712, @@ -9549,9 +9776,12 @@ pub enum VariableId { WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_DiagnosticsLevel = 17754, WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation = 17755, WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation_Active = 17756, - WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation_Classification = 17757, - WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation_DiagnosticsLevel = 17758, - WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation_TimeFirstChange = 17759, + WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation_Classification = + 17757, + WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation_DiagnosticsLevel = + 17758, + WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation_TimeFirstChange = + 17759, WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_TotalError = 17760, WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_TotalError_Active = 17761, WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_TotalError_Classification = 17762, @@ -9560,47 +9790,84 @@ pub enum VariableId { WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_SubError = 17766, WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError = 17768, WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError_Active = 17769, - WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError_Classification = 17770, - WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError_DiagnosticsLevel = 17771, - WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError_TimeFirstChange = 17772, - WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod = 17773, - WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Active = 17774, - WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Classification = 17775, - WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_DiagnosticsLevel = 17776, - WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_TimeFirstChange = 17777, - WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent = 17778, - WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Active = 17779, - WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Classification = 17780, - WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent_DiagnosticsLevel = 17781, - WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent_TimeFirstChange = 17782, - WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError = 17783, - WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Active = 17784, - WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Classification = 17785, - WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError_DiagnosticsLevel = 17786, - WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError_TimeFirstChange = 17787, + WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError_Classification = + 17770, + WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError_DiagnosticsLevel = + 17771, + WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError_TimeFirstChange = + 17772, + WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod = + 17773, + WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Active = + 17774, + WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Classification = + 17775, + WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_DiagnosticsLevel = + 17776, + WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_TimeFirstChange = + 17777, + WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent = + 17778, + WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Active = + 17779, + WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Classification = + 17780, + WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent_DiagnosticsLevel = + 17781, + WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent_TimeFirstChange = + 17782, + WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError = + 17783, + WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Active = + 17784, + WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Classification = + 17785, + WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError_DiagnosticsLevel = + 17786, + WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError_TimeFirstChange = + 17787, WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent = 17788, - WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent_Active = 17789, - WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent_Classification = 17790, - WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent_DiagnosticsLevel = 17791, - WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent_TimeFirstChange = 17792, - WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod = 17793, - WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Active = 17794, - WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Classification = 17795, - WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_DiagnosticsLevel = 17796, - WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_TimeFirstChange = 17797, - WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages = 17799, - WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_Active = 17800, - WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_Classification = 17801, - WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_DiagnosticsLevel = 17802, - WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_TimeFirstChange = 17803, - WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MessageSequenceNumber = 17804, - WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MessageSequenceNumber_DiagnosticsLevel = 17805, + WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent_Active = + 17789, + WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent_Classification = + 17790, + WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent_DiagnosticsLevel = + 17791, + WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent_TimeFirstChange = + 17792, + WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod = + 17793, + WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Active = + 17794, + WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Classification = + 17795, + WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_DiagnosticsLevel = + 17796, + WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_TimeFirstChange = + 17797, + WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages = + 17799, + WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_Active = + 17800, + WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_Classification = + 17801, + WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_DiagnosticsLevel = + 17802, + WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_TimeFirstChange = + 17803, + WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MessageSequenceNumber = + 17804, + WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MessageSequenceNumber_DiagnosticsLevel = + 17805, WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_StatusCode = 17806, - WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_StatusCode_DiagnosticsLevel = 17807, + WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_StatusCode_DiagnosticsLevel = + 17807, WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MajorVersion = 17808, - WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MajorVersion_DiagnosticsLevel = 17809, + WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MajorVersion_DiagnosticsLevel = + 17809, WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MinorVersion = 17810, - WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MinorVersion_DiagnosticsLevel = 17811, + WriterGroupType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MinorVersion_DiagnosticsLevel = + 17811, WriterGroupType_Diagnostics_DiagnosticsLevel = 17813, WriterGroupType_Diagnostics_TotalInformation = 17814, WriterGroupType_Diagnostics_TotalInformation_Active = 17815, @@ -9797,9 +10064,12 @@ pub enum VariableId { ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_DiagnosticsLevel = 18093, ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_TotalInformation = 18094, ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_TotalInformation_Active = 18095, - ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_TotalInformation_Classification = 18096, - ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_TotalInformation_DiagnosticsLevel = 18097, - ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_TotalInformation_TimeFirstChange = 18098, + ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_TotalInformation_Classification = + 18096, + ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_TotalInformation_DiagnosticsLevel = + 18097, + ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_TotalInformation_TimeFirstChange = + 18098, ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_TotalError = 18099, ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_TotalError_Active = 18100, ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_TotalError_Classification = 18101, @@ -9808,53 +10078,94 @@ pub enum VariableId { ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_SubError = 18105, ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateError = 18107, ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateError_Active = 18108, - ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateError_Classification = 18109, - ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateError_DiagnosticsLevel = 18110, - ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateError_TimeFirstChange = 18111, - ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateOperationalByMethod = 18112, - ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Active = 18113, - ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Classification = 18114, - ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_DiagnosticsLevel = 18115, - ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_TimeFirstChange = 18116, - ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateOperationalByParent = 18117, - ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Active = 18118, - ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Classification = 18119, - ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateOperationalByParent_DiagnosticsLevel = 18120, - ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateOperationalByParent_TimeFirstChange = 18121, - ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateOperationalFromError = 18122, - ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Active = 18123, - ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Classification = 18124, - ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateOperationalFromError_DiagnosticsLevel = 18125, - ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateOperationalFromError_TimeFirstChange = 18126, + ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateError_Classification = + 18109, + ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateError_DiagnosticsLevel = + 18110, + ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateError_TimeFirstChange = + 18111, + ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateOperationalByMethod = + 18112, + ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Active = + 18113, + ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Classification = + 18114, + ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_DiagnosticsLevel = + 18115, + ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_TimeFirstChange = + 18116, + ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateOperationalByParent = + 18117, + ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Active = + 18118, + ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Classification = + 18119, + ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateOperationalByParent_DiagnosticsLevel = + 18120, + ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateOperationalByParent_TimeFirstChange = + 18121, + ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateOperationalFromError = + 18122, + ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Active = + 18123, + ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Classification = + 18124, + ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateOperationalFromError_DiagnosticsLevel = + 18125, + ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateOperationalFromError_TimeFirstChange = + 18126, ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StatePausedByParent = 18127, - ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StatePausedByParent_Active = 18128, - ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StatePausedByParent_Classification = 18129, - ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StatePausedByParent_DiagnosticsLevel = 18130, - ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StatePausedByParent_TimeFirstChange = 18131, - ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateDisabledByMethod = 18132, - ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Active = 18133, - ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Classification = 18134, - ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_DiagnosticsLevel = 18135, - ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_TimeFirstChange = 18136, - ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_FailedDataSetMessages = 18138, - ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_Active = 18139, - ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_Classification = 18140, - ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_DiagnosticsLevel = 18141, - ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_TimeFirstChange = 18142, + ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StatePausedByParent_Active = + 18128, + ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StatePausedByParent_Classification = + 18129, + ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StatePausedByParent_DiagnosticsLevel = + 18130, + ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StatePausedByParent_TimeFirstChange = + 18131, + ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateDisabledByMethod = + 18132, + ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Active = + 18133, + ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Classification = + 18134, + ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_DiagnosticsLevel = + 18135, + ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_TimeFirstChange = + 18136, + ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_FailedDataSetMessages = + 18138, + ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_Active = + 18139, + ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_Classification = + 18140, + ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_DiagnosticsLevel = + 18141, + ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_TimeFirstChange = + 18142, ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_DecryptionErrors = 18143, - ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_DecryptionErrors_Active = 18144, - ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_DecryptionErrors_Classification = 18145, - ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_DecryptionErrors_DiagnosticsLevel = 18146, - ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_DecryptionErrors_TimeFirstChange = 18147, - ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_LiveValues_MessageSequenceNumber = 18148, - ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_LiveValues_MessageSequenceNumber_DiagnosticsLevel = 18149, + ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_DecryptionErrors_Active = + 18144, + ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_DecryptionErrors_Classification = + 18145, + ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_DecryptionErrors_DiagnosticsLevel = + 18146, + ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_Counters_DecryptionErrors_TimeFirstChange = + 18147, + ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_LiveValues_MessageSequenceNumber = + 18148, + ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_LiveValues_MessageSequenceNumber_DiagnosticsLevel = + 18149, ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_LiveValues_StatusCode = 18150, - ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_LiveValues_StatusCode_DiagnosticsLevel = 18151, + ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_LiveValues_StatusCode_DiagnosticsLevel = + 18151, ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_LiveValues_MajorVersion = 18152, - ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_LiveValues_MajorVersion_DiagnosticsLevel = 18153, + ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_LiveValues_MajorVersion_DiagnosticsLevel = + 18153, ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_LiveValues_MinorVersion = 18154, KeyCredentialConfiguration_ServiceName_Placeholder_ResourceUri = 18157, - ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_LiveValues_MinorVersion_DiagnosticsLevel = 18158, + ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_LiveValues_MinorVersion_DiagnosticsLevel = + 18158, KeyCredentialConfiguration_ServiceName_Placeholder_EndpointUrls = 18159, KeyCredentialConfiguration_ServiceName_Placeholder_ServiceStatus = 18160, KeyCredentialConfiguration_ServiceName_Placeholder_UpdateCredential_InputArguments = 18162, @@ -10292,9 +10603,12 @@ pub enum VariableId { PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_DiagnosticsLevel = 18668, PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_TotalInformation = 18669, PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_TotalInformation_Active = 18670, - PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_TotalInformation_Classification = 18671, - PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_TotalInformation_DiagnosticsLevel = 18672, - PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_TotalInformation_TimeFirstChange = 18673, + PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_TotalInformation_Classification = + 18671, + PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_TotalInformation_DiagnosticsLevel = + 18672, + PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_TotalInformation_TimeFirstChange = + 18673, PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_TotalError = 18674, PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_TotalError_Active = 18675, PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_TotalError_Classification = 18676, @@ -10303,36 +10617,65 @@ pub enum VariableId { PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_SubError = 18680, PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateError = 18682, PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateError_Active = 18683, - PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateError_Classification = 18684, - PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateError_DiagnosticsLevel = 18685, - PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateError_TimeFirstChange = 18686, - PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByMethod = 18687, - PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Active = 18688, - PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Classification = 18689, - PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_DiagnosticsLevel = 18690, - PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_TimeFirstChange = 18691, - PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByParent = 18692, - PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Active = 18693, - PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Classification = 18694, - PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByParent_DiagnosticsLevel = 18695, - PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByParent_TimeFirstChange = 18696, - PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalFromError = 18697, - PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Active = 18698, - PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Classification = 18699, - PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalFromError_DiagnosticsLevel = 18700, - PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalFromError_TimeFirstChange = 18701, - PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StatePausedByParent = 18702, - PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StatePausedByParent_Active = 18703, - PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StatePausedByParent_Classification = 18704, - PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StatePausedByParent_DiagnosticsLevel = 18705, - PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StatePausedByParent_TimeFirstChange = 18706, - PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateDisabledByMethod = 18707, - PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Active = 18708, - PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Classification = 18709, - PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_DiagnosticsLevel = 18710, - PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_TimeFirstChange = 18711, + PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateError_Classification = + 18684, + PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateError_DiagnosticsLevel = + 18685, + PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateError_TimeFirstChange = + 18686, + PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByMethod = + 18687, + PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Active = + 18688, + PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Classification = + 18689, + PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_DiagnosticsLevel = + 18690, + PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_TimeFirstChange = + 18691, + PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByParent = + 18692, + PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Active = + 18693, + PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Classification = + 18694, + PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByParent_DiagnosticsLevel = + 18695, + PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalByParent_TimeFirstChange = + 18696, + PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalFromError = + 18697, + PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Active = + 18698, + PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Classification = + 18699, + PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalFromError_DiagnosticsLevel = + 18700, + PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateOperationalFromError_TimeFirstChange = + 18701, + PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StatePausedByParent = + 18702, + PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StatePausedByParent_Active = + 18703, + PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StatePausedByParent_Classification = + 18704, + PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StatePausedByParent_DiagnosticsLevel = + 18705, + PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StatePausedByParent_TimeFirstChange = + 18706, + PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateDisabledByMethod = + 18707, + PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Active = + 18708, + PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Classification = + 18709, + PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_DiagnosticsLevel = + 18710, + PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_TimeFirstChange = + 18711, PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_LiveValues_ResolvedAddress = 18713, - PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_LiveValues_ResolvedAddress_DiagnosticsLevel = 18714, + PublishSubscribeType_ConnectionName_Placeholder_Diagnostics_LiveValues_ResolvedAddress_DiagnosticsLevel = + 18714, PublishSubscribeType_Diagnostics_DiagnosticsLevel = 18716, PublishSubscribeType_Diagnostics_TotalInformation = 18717, PublishSubscribeType_Diagnostics_TotalInformation_Active = 18718, @@ -10442,168 +10785,305 @@ pub enum VariableId { PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_DiagnosticsLevel = 18872, PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation = 18873, PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation_Active = 18874, - PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation_Classification = 18875, - PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation_DiagnosticsLevel = 18876, - PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation_TimeFirstChange = 18877, + PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation_Classification = + 18875, + PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation_DiagnosticsLevel = + 18876, + PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation_TimeFirstChange = + 18877, PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_TotalError = 18878, PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_TotalError_Active = 18879, - PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_TotalError_Classification = 18880, - PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_TotalError_DiagnosticsLevel = 18881, - PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_TotalError_TimeFirstChange = 18882, + PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_TotalError_Classification = + 18880, + PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_TotalError_DiagnosticsLevel = + 18881, + PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_TotalError_TimeFirstChange = + 18882, PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_SubError = 18884, PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError = 18886, - PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError_Active = 18887, - PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError_Classification = 18888, - PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError_DiagnosticsLevel = 18889, - PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError_TimeFirstChange = 18890, - PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod = 18891, - PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Active = 18892, - PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Classification = 18893, - PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_DiagnosticsLevel = 18894, - PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_TimeFirstChange = 18895, - PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent = 18896, - PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Active = 18897, - PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Classification = 18898, - PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent_DiagnosticsLevel = 18899, - PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent_TimeFirstChange = 18900, - PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError = 18901, - PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Active = 18902, - PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Classification = 18903, - PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError_DiagnosticsLevel = 18904, - PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError_TimeFirstChange = 18905, - PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent = 18906, - PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent_Active = 18907, - PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent_Classification = 18908, - PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent_DiagnosticsLevel = 18909, - PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent_TimeFirstChange = 18910, - PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod = 18911, - PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Active = 18912, - PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Classification = 18913, - PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_DiagnosticsLevel = 18914, - PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_TimeFirstChange = 18915, - PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages = 18917, - PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_Active = 18918, - PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_Classification = 18919, - PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_DiagnosticsLevel = 18920, - PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_TimeFirstChange = 18921, - PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MessageSequenceNumber = 18922, - PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MessageSequenceNumber_DiagnosticsLevel = 18923, + PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError_Active = + 18887, + PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError_Classification = + 18888, + PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError_DiagnosticsLevel = + 18889, + PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError_TimeFirstChange = + 18890, + PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod = + 18891, + PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Active = + 18892, + PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Classification = + 18893, + PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_DiagnosticsLevel = + 18894, + PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_TimeFirstChange = + 18895, + PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent = + 18896, + PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Active = + 18897, + PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Classification = + 18898, + PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent_DiagnosticsLevel = + 18899, + PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent_TimeFirstChange = + 18900, + PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError = + 18901, + PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Active = + 18902, + PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Classification = + 18903, + PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError_DiagnosticsLevel = + 18904, + PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError_TimeFirstChange = + 18905, + PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent = + 18906, + PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent_Active = + 18907, + PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent_Classification = + 18908, + PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent_DiagnosticsLevel = + 18909, + PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent_TimeFirstChange = + 18910, + PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod = + 18911, + PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Active = + 18912, + PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Classification = + 18913, + PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_DiagnosticsLevel = + 18914, + PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_TimeFirstChange = + 18915, + PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages = + 18917, + PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_Active = + 18918, + PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_Classification = + 18919, + PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_DiagnosticsLevel = + 18920, + PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_TimeFirstChange = + 18921, + PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MessageSequenceNumber = + 18922, + PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MessageSequenceNumber_DiagnosticsLevel = + 18923, PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_StatusCode = 18924, - PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_StatusCode_DiagnosticsLevel = 18925, + PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_StatusCode_DiagnosticsLevel = + 18925, PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MajorVersion = 18926, - PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MajorVersion_DiagnosticsLevel = 18927, + PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MajorVersion_DiagnosticsLevel = + 18927, PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MinorVersion = 18928, - PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MinorVersion_DiagnosticsLevel = 18929, + PublishedDataSetType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MinorVersion_DiagnosticsLevel = + 18929, PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_DiagnosticsLevel = 18931, PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation = 18932, - PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation_Active = 18933, - PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation_Classification = 18934, - PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation_DiagnosticsLevel = 18935, - PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation_TimeFirstChange = 18936, + PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation_Active = + 18933, + PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation_Classification = + 18934, + PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation_DiagnosticsLevel = + 18935, + PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation_TimeFirstChange = + 18936, PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_TotalError = 18937, PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_TotalError_Active = 18938, - PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_TotalError_Classification = 18939, - PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_TotalError_DiagnosticsLevel = 18940, - PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_TotalError_TimeFirstChange = 18941, + PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_TotalError_Classification = + 18939, + PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_TotalError_DiagnosticsLevel = + 18940, + PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_TotalError_TimeFirstChange = + 18941, PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_SubError = 18943, PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError = 18945, - PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError_Active = 18946, - PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError_Classification = 18947, - PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError_DiagnosticsLevel = 18948, - PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError_TimeFirstChange = 18949, - PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod = 18950, - PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Active = 18951, - PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Classification = 18952, - PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_DiagnosticsLevel = 18953, - PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_TimeFirstChange = 18954, - PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent = 18955, - PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Active = 18956, - PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Classification = 18957, - PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent_DiagnosticsLevel = 18958, - PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent_TimeFirstChange = 18959, - PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError = 18960, - PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Active = 18961, - PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Classification = 18962, - PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError_DiagnosticsLevel = 18963, - PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError_TimeFirstChange = 18964, - PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent = 18965, - PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent_Active = 18966, - PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent_Classification = 18967, - PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent_DiagnosticsLevel = 18968, - PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent_TimeFirstChange = 18969, - PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod = 18970, - PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Active = 18971, - PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Classification = 18972, - PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_DiagnosticsLevel = 18973, - PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_TimeFirstChange = 18974, - PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages = 18976, - PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_Active = 18977, - PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_Classification = 18978, - PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_DiagnosticsLevel = 18979, - PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_TimeFirstChange = 18980, - PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MessageSequenceNumber = 18981, - PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MessageSequenceNumber_DiagnosticsLevel = 18982, + PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError_Active = + 18946, + PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError_Classification = + 18947, + PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError_DiagnosticsLevel = + 18948, + PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError_TimeFirstChange = + 18949, + PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod = + 18950, + PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Active = + 18951, + PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Classification = + 18952, + PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_DiagnosticsLevel = + 18953, + PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_TimeFirstChange = + 18954, + PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent = + 18955, + PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Active = + 18956, + PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Classification = + 18957, + PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent_DiagnosticsLevel = + 18958, + PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent_TimeFirstChange = + 18959, + PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError = + 18960, + PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Active = + 18961, + PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Classification = + 18962, + PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError_DiagnosticsLevel = + 18963, + PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError_TimeFirstChange = + 18964, + PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent = + 18965, + PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent_Active = + 18966, + PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent_Classification = + 18967, + PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent_DiagnosticsLevel = + 18968, + PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent_TimeFirstChange = + 18969, + PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod = + 18970, + PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Active = + 18971, + PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Classification = + 18972, + PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_DiagnosticsLevel = + 18973, + PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_TimeFirstChange = + 18974, + PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages = + 18976, + PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_Active = + 18977, + PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_Classification = + 18978, + PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_DiagnosticsLevel = + 18979, + PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_TimeFirstChange = + 18980, + PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MessageSequenceNumber = + 18981, + PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MessageSequenceNumber_DiagnosticsLevel = + 18982, PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_StatusCode = 18983, - PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_StatusCode_DiagnosticsLevel = 18984, - PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MajorVersion = 18985, - PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MajorVersion_DiagnosticsLevel = 18986, - PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MinorVersion = 18987, - PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MinorVersion_DiagnosticsLevel = 18988, + PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_StatusCode_DiagnosticsLevel = + 18984, + PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MajorVersion = + 18985, + PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MajorVersion_DiagnosticsLevel = + 18986, + PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MinorVersion = + 18987, + PublishedDataItemsType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MinorVersion_DiagnosticsLevel = + 18988, PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_DiagnosticsLevel = 18990, PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation = 18991, PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation_Active = 18992, - PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation_Classification = 18993, - PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation_DiagnosticsLevel = 18994, - PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation_TimeFirstChange = 18995, + PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation_Classification = + 18993, + PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation_DiagnosticsLevel = + 18994, + PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_TotalInformation_TimeFirstChange = + 18995, PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_TotalError = 18996, PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_TotalError_Active = 18997, PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_TotalError_Classification = 18998, - PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_TotalError_DiagnosticsLevel = 18999, - PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_TotalError_TimeFirstChange = 19000, + PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_TotalError_DiagnosticsLevel = + 18999, + PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_TotalError_TimeFirstChange = + 19000, PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_SubError = 19002, PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError = 19004, - PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError_Active = 19005, - PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError_Classification = 19006, - PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError_DiagnosticsLevel = 19007, - PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError_TimeFirstChange = 19008, - PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod = 19009, - PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Active = 19010, - PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Classification = 19011, - PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_DiagnosticsLevel = 19012, - PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_TimeFirstChange = 19013, - PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent = 19014, - PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Active = 19015, - PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Classification = 19016, - PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent_DiagnosticsLevel = 19017, - PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent_TimeFirstChange = 19018, - PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError = 19019, - PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Active = 19020, - PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Classification = 19021, - PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError_DiagnosticsLevel = 19022, - PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError_TimeFirstChange = 19023, - PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent = 19024, - PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent_Active = 19025, - PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent_Classification = 19026, - PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent_DiagnosticsLevel = 19027, - PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent_TimeFirstChange = 19028, - PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod = 19029, - PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Active = 19030, - PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Classification = 19031, - PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_DiagnosticsLevel = 19032, - PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_TimeFirstChange = 19033, - PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages = 19035, - PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_Active = 19036, - PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_Classification = 19037, - PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_DiagnosticsLevel = 19038, - PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_TimeFirstChange = 19039, - PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MessageSequenceNumber = 19040, - PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MessageSequenceNumber_DiagnosticsLevel = 19041, + PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError_Active = + 19005, + PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError_Classification = + 19006, + PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError_DiagnosticsLevel = + 19007, + PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateError_TimeFirstChange = + 19008, + PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod = + 19009, + PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Active = + 19010, + PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Classification = + 19011, + PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_DiagnosticsLevel = + 19012, + PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_TimeFirstChange = + 19013, + PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent = + 19014, + PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Active = + 19015, + PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Classification = + 19016, + PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent_DiagnosticsLevel = + 19017, + PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalByParent_TimeFirstChange = + 19018, + PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError = + 19019, + PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Active = + 19020, + PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Classification = + 19021, + PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError_DiagnosticsLevel = + 19022, + PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateOperationalFromError_TimeFirstChange = + 19023, + PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent = + 19024, + PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent_Active = + 19025, + PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent_Classification = + 19026, + PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent_DiagnosticsLevel = + 19027, + PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StatePausedByParent_TimeFirstChange = + 19028, + PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod = + 19029, + PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Active = + 19030, + PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Classification = + 19031, + PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_DiagnosticsLevel = + 19032, + PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_TimeFirstChange = + 19033, + PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages = + 19035, + PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_Active = + 19036, + PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_Classification = + 19037, + PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_DiagnosticsLevel = + 19038, + PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_Counters_FailedDataSetMessages_TimeFirstChange = + 19039, + PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MessageSequenceNumber = + 19040, + PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MessageSequenceNumber_DiagnosticsLevel = + 19041, PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_StatusCode = 19042, - PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_StatusCode_DiagnosticsLevel = 19043, + PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_StatusCode_DiagnosticsLevel = + 19043, PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MajorVersion = 19044, - PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MajorVersion_DiagnosticsLevel = 19045, + PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MajorVersion_DiagnosticsLevel = + 19045, PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MinorVersion = 19046, - PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MinorVersion_DiagnosticsLevel = 19047, + PublishedEventsType_DataSetWriterName_Placeholder_Diagnostics_LiveValues_MinorVersion_DiagnosticsLevel = + 19047, ThreeDFrameType_Orientation_AngleUnit = 19073, ThreeDFrameType_Orientation_A = 19074, ThreeDFrameType_Orientation_B = 19075, @@ -10638,129 +11118,232 @@ pub enum VariableId { PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_DiagnosticsLevel = 19108, PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_TotalInformation = 19109, PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_TotalInformation_Active = 19110, - PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_TotalInformation_Classification = 19111, - PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_TotalInformation_DiagnosticsLevel = 19112, - PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_TotalInformation_TimeFirstChange = 19113, + PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_TotalInformation_Classification = + 19111, + PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_TotalInformation_DiagnosticsLevel = + 19112, + PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_TotalInformation_TimeFirstChange = + 19113, PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_TotalError = 19114, PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_TotalError_Active = 19115, PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_TotalError_Classification = 19116, - PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_TotalError_DiagnosticsLevel = 19117, + PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_TotalError_DiagnosticsLevel = + 19117, PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_TotalError_TimeFirstChange = 19118, PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_SubError = 19120, PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateError = 19122, PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateError_Active = 19123, - PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateError_Classification = 19124, - PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateError_DiagnosticsLevel = 19125, - PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateError_TimeFirstChange = 19126, - PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateOperationalByMethod = 19127, - PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Active = 19128, - PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Classification = 19129, - PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_DiagnosticsLevel = 19130, - PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_TimeFirstChange = 19131, - PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateOperationalByParent = 19132, - PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Active = 19133, - PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Classification = 19134, - PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateOperationalByParent_DiagnosticsLevel = 19135, - PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateOperationalByParent_TimeFirstChange = 19136, - PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateOperationalFromError = 19137, - PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Active = 19138, - PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Classification = 19139, - PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateOperationalFromError_DiagnosticsLevel = 19140, - PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateOperationalFromError_TimeFirstChange = 19141, - PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StatePausedByParent = 19142, - PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StatePausedByParent_Active = 19143, - PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StatePausedByParent_Classification = 19144, - PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StatePausedByParent_DiagnosticsLevel = 19145, - PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StatePausedByParent_TimeFirstChange = 19146, - PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateDisabledByMethod = 19147, - PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Active = 19148, - PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Classification = 19149, - PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_DiagnosticsLevel = 19150, - PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_TimeFirstChange = 19151, - PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_SentNetworkMessages = 19153, - PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_SentNetworkMessages_Active = 19154, - PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_SentNetworkMessages_Classification = 19155, - PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_SentNetworkMessages_DiagnosticsLevel = 19156, - PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_SentNetworkMessages_TimeFirstChange = 19157, - PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_FailedTransmissions = 19158, - PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_FailedTransmissions_Active = 19159, - PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_FailedTransmissions_Classification = 19160, - PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_FailedTransmissions_DiagnosticsLevel = 19161, - PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_FailedTransmissions_TimeFirstChange = 19162, + PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateError_Classification = + 19124, + PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateError_DiagnosticsLevel = + 19125, + PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateError_TimeFirstChange = + 19126, + PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateOperationalByMethod = + 19127, + PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Active = + 19128, + PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Classification = + 19129, + PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_DiagnosticsLevel = + 19130, + PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_TimeFirstChange = + 19131, + PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateOperationalByParent = + 19132, + PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Active = + 19133, + PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Classification = + 19134, + PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateOperationalByParent_DiagnosticsLevel = + 19135, + PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateOperationalByParent_TimeFirstChange = + 19136, + PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateOperationalFromError = + 19137, + PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Active = + 19138, + PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Classification = + 19139, + PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateOperationalFromError_DiagnosticsLevel = + 19140, + PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateOperationalFromError_TimeFirstChange = + 19141, + PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StatePausedByParent = + 19142, + PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StatePausedByParent_Active = + 19143, + PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StatePausedByParent_Classification = + 19144, + PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StatePausedByParent_DiagnosticsLevel = + 19145, + PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StatePausedByParent_TimeFirstChange = + 19146, + PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateDisabledByMethod = + 19147, + PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Active = + 19148, + PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Classification = + 19149, + PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_DiagnosticsLevel = + 19150, + PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_TimeFirstChange = + 19151, + PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_SentNetworkMessages = + 19153, + PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_SentNetworkMessages_Active = + 19154, + PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_SentNetworkMessages_Classification = + 19155, + PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_SentNetworkMessages_DiagnosticsLevel = + 19156, + PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_SentNetworkMessages_TimeFirstChange = + 19157, + PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_FailedTransmissions = + 19158, + PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_FailedTransmissions_Active = + 19159, + PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_FailedTransmissions_Classification = + 19160, + PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_FailedTransmissions_DiagnosticsLevel = + 19161, + PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_FailedTransmissions_TimeFirstChange = + 19162, PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_EncryptionErrors = 19163, - PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_EncryptionErrors_Active = 19164, - PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_EncryptionErrors_Classification = 19165, - PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_EncryptionErrors_DiagnosticsLevel = 19166, - PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_EncryptionErrors_TimeFirstChange = 19167, - PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_LiveValues_ConfiguredDataSetWriters = 19168, - PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_LiveValues_ConfiguredDataSetWriters_DiagnosticsLevel = 19169, - PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_LiveValues_OperationalDataSetWriters = 19170, - PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_LiveValues_OperationalDataSetWriters_DiagnosticsLevel = 19171, + PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_EncryptionErrors_Active = + 19164, + PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_EncryptionErrors_Classification = + 19165, + PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_EncryptionErrors_DiagnosticsLevel = + 19166, + PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_Counters_EncryptionErrors_TimeFirstChange = + 19167, + PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_LiveValues_ConfiguredDataSetWriters = + 19168, + PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_LiveValues_ConfiguredDataSetWriters_DiagnosticsLevel = + 19169, + PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_LiveValues_OperationalDataSetWriters = + 19170, + PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_LiveValues_OperationalDataSetWriters_DiagnosticsLevel = + 19171, PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_LiveValues_SecurityTokenID = 19172, - PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_LiveValues_SecurityTokenID_DiagnosticsLevel = 19173, - PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_LiveValues_TimeToNextTokenID = 19174, - PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_LiveValues_TimeToNextTokenID_DiagnosticsLevel = 19175, + PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_LiveValues_SecurityTokenID_DiagnosticsLevel = + 19173, + PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_LiveValues_TimeToNextTokenID = + 19174, + PubSubConnectionType_WriterGroupName_Placeholder_Diagnostics_LiveValues_TimeToNextTokenID_DiagnosticsLevel = + 19175, PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_DiagnosticsLevel = 19177, PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_TotalInformation = 19178, PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_TotalInformation_Active = 19179, - PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_TotalInformation_Classification = 19180, - PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_TotalInformation_DiagnosticsLevel = 19181, - PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_TotalInformation_TimeFirstChange = 19182, + PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_TotalInformation_Classification = + 19180, + PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_TotalInformation_DiagnosticsLevel = + 19181, + PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_TotalInformation_TimeFirstChange = + 19182, PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_TotalError = 19183, PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_TotalError_Active = 19184, PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_TotalError_Classification = 19185, - PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_TotalError_DiagnosticsLevel = 19186, + PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_TotalError_DiagnosticsLevel = + 19186, PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_TotalError_TimeFirstChange = 19187, PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_SubError = 19189, PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateError = 19191, PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateError_Active = 19192, - PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateError_Classification = 19193, - PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateError_DiagnosticsLevel = 19194, - PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateError_TimeFirstChange = 19195, - PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateOperationalByMethod = 19196, - PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Active = 19197, - PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Classification = 19198, - PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_DiagnosticsLevel = 19199, - PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_TimeFirstChange = 19200, - PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateOperationalByParent = 19201, - PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Active = 19202, - PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Classification = 19203, - PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateOperationalByParent_DiagnosticsLevel = 19204, - PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateOperationalByParent_TimeFirstChange = 19205, - PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateOperationalFromError = 19206, - PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Active = 19207, - PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Classification = 19208, - PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateOperationalFromError_DiagnosticsLevel = 19209, - PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateOperationalFromError_TimeFirstChange = 19210, - PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StatePausedByParent = 19211, - PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StatePausedByParent_Active = 19212, - PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StatePausedByParent_Classification = 19213, - PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StatePausedByParent_DiagnosticsLevel = 19214, - PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StatePausedByParent_TimeFirstChange = 19215, - PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateDisabledByMethod = 19216, - PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Active = 19217, - PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Classification = 19218, - PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_DiagnosticsLevel = 19219, - PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_TimeFirstChange = 19220, - PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_ReceivedNetworkMessages = 19222, - PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_ReceivedNetworkMessages_Active = 19223, - PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_ReceivedNetworkMessages_Classification = 19224, - PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_ReceivedNetworkMessages_DiagnosticsLevel = 19225, - PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_ReceivedNetworkMessages_TimeFirstChange = 19226, - PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_ReceivedInvalidNetworkMessages = 19227, - PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_ReceivedInvalidNetworkMessages_Active = 19228, - PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_ReceivedInvalidNetworkMessages_Classification = 19229, - PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_ReceivedInvalidNetworkMessages_DiagnosticsLevel = 19230, - PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_ReceivedInvalidNetworkMessages_TimeFirstChange = 19231, + PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateError_Classification = + 19193, + PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateError_DiagnosticsLevel = + 19194, + PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateError_TimeFirstChange = + 19195, + PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateOperationalByMethod = + 19196, + PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Active = + 19197, + PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_Classification = + 19198, + PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_DiagnosticsLevel = + 19199, + PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateOperationalByMethod_TimeFirstChange = + 19200, + PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateOperationalByParent = + 19201, + PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Active = + 19202, + PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateOperationalByParent_Classification = + 19203, + PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateOperationalByParent_DiagnosticsLevel = + 19204, + PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateOperationalByParent_TimeFirstChange = + 19205, + PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateOperationalFromError = + 19206, + PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Active = + 19207, + PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateOperationalFromError_Classification = + 19208, + PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateOperationalFromError_DiagnosticsLevel = + 19209, + PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateOperationalFromError_TimeFirstChange = + 19210, + PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StatePausedByParent = + 19211, + PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StatePausedByParent_Active = + 19212, + PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StatePausedByParent_Classification = + 19213, + PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StatePausedByParent_DiagnosticsLevel = + 19214, + PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StatePausedByParent_TimeFirstChange = + 19215, + PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateDisabledByMethod = + 19216, + PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Active = + 19217, + PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_Classification = + 19218, + PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_DiagnosticsLevel = + 19219, + PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_StateDisabledByMethod_TimeFirstChange = + 19220, + PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_ReceivedNetworkMessages = + 19222, + PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_ReceivedNetworkMessages_Active = + 19223, + PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_ReceivedNetworkMessages_Classification = + 19224, + PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_ReceivedNetworkMessages_DiagnosticsLevel = + 19225, + PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_ReceivedNetworkMessages_TimeFirstChange = + 19226, + PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_ReceivedInvalidNetworkMessages = + 19227, + PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_ReceivedInvalidNetworkMessages_Active = + 19228, + PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_ReceivedInvalidNetworkMessages_Classification = + 19229, + PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_ReceivedInvalidNetworkMessages_DiagnosticsLevel = + 19230, + PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_ReceivedInvalidNetworkMessages_TimeFirstChange = + 19231, PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_DecryptionErrors = 19232, - PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_DecryptionErrors_Active = 19233, - PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_DecryptionErrors_Classification = 19234, - PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_DecryptionErrors_DiagnosticsLevel = 19235, - PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_DecryptionErrors_TimeFirstChange = 19236, - PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_LiveValues_ConfiguredDataSetReaders = 19237, - PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_LiveValues_ConfiguredDataSetReaders_DiagnosticsLevel = 19238, - PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_LiveValues_OperationalDataSetReaders = 19239, - PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_LiveValues_OperationalDataSetReaders_DiagnosticsLevel = 19240, + PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_DecryptionErrors_Active = + 19233, + PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_DecryptionErrors_Classification = + 19234, + PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_DecryptionErrors_DiagnosticsLevel = + 19235, + PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_Counters_DecryptionErrors_TimeFirstChange = + 19236, + PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_LiveValues_ConfiguredDataSetReaders = + 19237, + PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_LiveValues_ConfiguredDataSetReaders_DiagnosticsLevel = + 19238, + PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_LiveValues_OperationalDataSetReaders = + 19239, + PubSubConnectionType_ReaderGroupName_Placeholder_Diagnostics_LiveValues_OperationalDataSetReaders_DiagnosticsLevel = + 19240, PubSubConnectionType_Diagnostics_DiagnosticsLevel = 19242, PubSubConnectionType_Diagnostics_TotalInformation = 19243, PubSubConnectionType_Diagnostics_TotalInformation_Active = 19244, @@ -11037,7 +11620,8 @@ pub enum VariableId { CertificateGroupType_CertificateExpired_ShelvingState_LastTransition_Name = 19545, CertificateGroupType_CertificateExpired_ShelvingState_LastTransition_Number = 19546, CertificateGroupType_CertificateExpired_ShelvingState_LastTransition_TransitionTime = 19547, - CertificateGroupType_CertificateExpired_ShelvingState_LastTransition_EffectiveTransitionTime = 19548, + CertificateGroupType_CertificateExpired_ShelvingState_LastTransition_EffectiveTransitionTime = + 19548, CertificateGroupType_CertificateExpired_ShelvingState_AvailableStates = 19549, DataSetWriterType_Diagnostics_DiagnosticsLevel = 19551, DataSetWriterType_Diagnostics_TotalInformation = 19552, @@ -11415,8 +11999,10 @@ pub enum VariableId { PubSubDiagnosticsReaderGroupType_Counters_ReceivedInvalidNetworkMessages = 19954, PubSubDiagnosticsReaderGroupType_Counters_ReceivedInvalidNetworkMessages_Active = 19955, PubSubDiagnosticsReaderGroupType_Counters_ReceivedInvalidNetworkMessages_Classification = 19956, - PubSubDiagnosticsReaderGroupType_Counters_ReceivedInvalidNetworkMessages_DiagnosticsLevel = 19957, - PubSubDiagnosticsReaderGroupType_Counters_ReceivedInvalidNetworkMessages_TimeFirstChange = 19958, + PubSubDiagnosticsReaderGroupType_Counters_ReceivedInvalidNetworkMessages_DiagnosticsLevel = + 19957, + PubSubDiagnosticsReaderGroupType_Counters_ReceivedInvalidNetworkMessages_TimeFirstChange = + 19958, PubSubDiagnosticsReaderGroupType_Counters_DecryptionErrors = 19959, PubSubDiagnosticsReaderGroupType_Counters_DecryptionErrors_Active = 19960, PubSubDiagnosticsReaderGroupType_Counters_DecryptionErrors_Classification = 19961, @@ -11674,7 +12260,8 @@ pub enum VariableId { CertificateGroupType_TrustListOutOfDate_ShelvingState_LastTransition_Name = 20238, CertificateGroupType_TrustListOutOfDate_ShelvingState_LastTransition_Number = 20239, CertificateGroupType_TrustListOutOfDate_ShelvingState_LastTransition_TransitionTime = 20240, - CertificateGroupType_TrustListOutOfDate_ShelvingState_LastTransition_EffectiveTransitionTime = 20241, + CertificateGroupType_TrustListOutOfDate_ShelvingState_LastTransition_EffectiveTransitionTime = + 20241, CertificateGroupType_TrustListOutOfDate_ShelvingState_AvailableStates = 20242, CertificateGroupType_TrustListOutOfDate_ShelvingState_AvailableTransitions = 20243, CertificateGroupType_TrustListOutOfDate_ShelvingState_UnshelveTime = 20244, @@ -11724,123 +12311,204 @@ pub enum VariableId { CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_Message = 20299, CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_Severity = 20300, CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ConditionClassId = 20301, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ConditionClassName = 20302, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ConditionSubClassId = 20303, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ConditionSubClassName = 20304, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ConditionClassName = + 20302, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ConditionSubClassId = + 20303, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ConditionSubClassName = + 20304, CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ConditionName = 20305, CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_BranchId = 20306, CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_Retain = 20307, CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_EnabledState = 20308, CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_EnabledState_Id = 20309, CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_EnabledState_Name = 20310, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_EnabledState_Number = 20311, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_EnabledState_EffectiveDisplayName = 20312, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_EnabledState_TransitionTime = 20313, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_EnabledState_EffectiveTransitionTime = 20314, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_EnabledState_TrueState = 20315, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_EnabledState_FalseState = 20316, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_EnabledState_Number = + 20311, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_EnabledState_EffectiveDisplayName = + 20312, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_EnabledState_TransitionTime = + 20313, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_EnabledState_EffectiveTransitionTime = + 20314, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_EnabledState_TrueState = + 20315, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_EnabledState_FalseState = + 20316, CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_Quality = 20317, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_Quality_SourceTimestamp = 20318, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_Quality_SourceTimestamp = + 20318, CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_LastSeverity = 20319, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_LastSeverity_SourceTimestamp = 20320, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_LastSeverity_SourceTimestamp = + 20320, CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_Comment = 20321, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_Comment_SourceTimestamp = 20322, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_Comment_SourceTimestamp = + 20322, CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ClientUserId = 20323, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_AddComment_InputArguments = 20327, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_AddComment_InputArguments = + 20327, CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_AckedState = 20328, CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_AckedState_Id = 20329, CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_AckedState_Name = 20330, CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_AckedState_Number = 20331, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_AckedState_EffectiveDisplayName = 20332, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_AckedState_TransitionTime = 20333, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_AckedState_EffectiveTransitionTime = 20334, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_AckedState_TrueState = 20335, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_AckedState_FalseState = 20336, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_AckedState_EffectiveDisplayName = + 20332, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_AckedState_TransitionTime = + 20333, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_AckedState_EffectiveTransitionTime = + 20334, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_AckedState_TrueState = + 20335, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_AckedState_FalseState = + 20336, CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ConfirmedState = 20337, CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ConfirmedState_Id = 20338, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ConfirmedState_Name = 20339, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ConfirmedState_Number = 20340, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ConfirmedState_EffectiveDisplayName = 20341, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ConfirmedState_TransitionTime = 20342, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ConfirmedState_EffectiveTransitionTime = 20343, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ConfirmedState_TrueState = 20344, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ConfirmedState_FalseState = 20345, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_Acknowledge_InputArguments = 20347, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_Confirm_InputArguments = 20349, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ConfirmedState_Name = + 20339, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ConfirmedState_Number = + 20340, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ConfirmedState_EffectiveDisplayName = + 20341, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ConfirmedState_TransitionTime = + 20342, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ConfirmedState_EffectiveTransitionTime = + 20343, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ConfirmedState_TrueState = + 20344, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ConfirmedState_FalseState = + 20345, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_Acknowledge_InputArguments = + 20347, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_Confirm_InputArguments = + 20349, CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ActiveState = 20350, CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ActiveState_Id = 20351, CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ActiveState_Name = 20352, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ActiveState_Number = 20353, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ActiveState_EffectiveDisplayName = 20354, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ActiveState_TransitionTime = 20355, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ActiveState_EffectiveTransitionTime = 20356, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ActiveState_TrueState = 20357, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ActiveState_FalseState = 20358, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ActiveState_Number = + 20353, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ActiveState_EffectiveDisplayName = + 20354, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ActiveState_TransitionTime = + 20355, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ActiveState_EffectiveTransitionTime = + 20356, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ActiveState_TrueState = + 20357, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ActiveState_FalseState = + 20358, CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_InputNode = 20359, CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_SuppressedState = 20360, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_SuppressedState_Id = 20361, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_SuppressedState_Name = 20362, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_SuppressedState_Number = 20363, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_SuppressedState_EffectiveDisplayName = 20364, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_SuppressedState_TransitionTime = 20365, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_SuppressedState_EffectiveTransitionTime = 20366, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_SuppressedState_TrueState = 20367, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_SuppressedState_FalseState = 20368, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_SuppressedState_Id = + 20361, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_SuppressedState_Name = + 20362, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_SuppressedState_Number = + 20363, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_SuppressedState_EffectiveDisplayName = + 20364, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_SuppressedState_TransitionTime = + 20365, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_SuppressedState_EffectiveTransitionTime = + 20366, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_SuppressedState_TrueState = + 20367, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_SuppressedState_FalseState = + 20368, CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_OutOfServiceState = 20369, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_OutOfServiceState_Id = 20370, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_OutOfServiceState_Name = 20371, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_OutOfServiceState_Number = 20372, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_OutOfServiceState_EffectiveDisplayName = 20373, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_OutOfServiceState_TransitionTime = 20374, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_OutOfServiceState_EffectiveTransitionTime = 20375, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_OutOfServiceState_TrueState = 20376, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_OutOfServiceState_FalseState = 20377, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ShelvingState_CurrentState = 20379, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ShelvingState_CurrentState_Id = 20380, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ShelvingState_CurrentState_Name = 20381, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ShelvingState_CurrentState_Number = 20382, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ShelvingState_CurrentState_EffectiveDisplayName = 20383, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ShelvingState_LastTransition = 20384, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ShelvingState_LastTransition_Id = 20385, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ShelvingState_LastTransition_Name = 20386, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ShelvingState_LastTransition_Number = 20387, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ShelvingState_LastTransition_TransitionTime = 20388, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ShelvingState_LastTransition_EffectiveTransitionTime = 20389, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ShelvingState_AvailableStates = 20390, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ShelvingState_AvailableTransitions = 20391, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ShelvingState_UnshelveTime = 20392, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ShelvingState_TimedShelve_InputArguments = 20394, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_SuppressedOrShelved = 20397, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_OutOfServiceState_Id = + 20370, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_OutOfServiceState_Name = + 20371, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_OutOfServiceState_Number = + 20372, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_OutOfServiceState_EffectiveDisplayName = + 20373, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_OutOfServiceState_TransitionTime = + 20374, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_OutOfServiceState_EffectiveTransitionTime = + 20375, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_OutOfServiceState_TrueState = + 20376, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_OutOfServiceState_FalseState = + 20377, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ShelvingState_CurrentState = + 20379, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ShelvingState_CurrentState_Id = + 20380, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ShelvingState_CurrentState_Name = + 20381, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ShelvingState_CurrentState_Number = + 20382, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ShelvingState_CurrentState_EffectiveDisplayName = + 20383, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ShelvingState_LastTransition = + 20384, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ShelvingState_LastTransition_Id = + 20385, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ShelvingState_LastTransition_Name = + 20386, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ShelvingState_LastTransition_Number = + 20387, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ShelvingState_LastTransition_TransitionTime = + 20388, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ShelvingState_LastTransition_EffectiveTransitionTime = + 20389, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ShelvingState_AvailableStates = + 20390, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ShelvingState_AvailableTransitions = + 20391, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ShelvingState_UnshelveTime = + 20392, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ShelvingState_TimedShelve_InputArguments = + 20394, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_SuppressedOrShelved = + 20397, CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_MaxTimeShelved = 20398, CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_AudibleEnabled = 20399, CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_AudibleSound = 20400, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_AudibleSound_ListId = 20401, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_AudibleSound_AgencyId = 20402, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_AudibleSound_VersionId = 20403, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_AudibleSound_ListId = + 20401, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_AudibleSound_AgencyId = + 20402, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_AudibleSound_VersionId = + 20403, CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_SilenceState = 20404, CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_SilenceState_Id = 20405, CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_SilenceState_Name = 20406, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_SilenceState_Number = 20407, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_SilenceState_Number = + 20407, ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_LiveValues_SecurityTokenID = 20409, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_SilenceState_EffectiveDisplayName = 20410, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_SilenceState_TransitionTime = 20411, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_SilenceState_EffectiveTransitionTime = 20412, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_SilenceState_TrueState = 20413, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_SilenceState_FalseState = 20414, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_SilenceState_EffectiveDisplayName = + 20410, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_SilenceState_TransitionTime = + 20411, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_SilenceState_EffectiveTransitionTime = + 20412, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_SilenceState_TrueState = + 20413, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_SilenceState_FalseState = + 20414, CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_OnDelay = 20415, CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_OffDelay = 20416, CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_FirstInGroupFlag = 20417, CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_LatchedState = 20419, CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_LatchedState_Id = 20420, CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_LatchedState_Name = 20421, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_LatchedState_Number = 20422, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_LatchedState_EffectiveDisplayName = 20423, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_LatchedState_TransitionTime = 20424, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_LatchedState_EffectiveTransitionTime = 20425, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_LatchedState_TrueState = 20426, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_LatchedState_FalseState = 20427, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_LatchedState_Number = + 20422, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_LatchedState_EffectiveDisplayName = + 20423, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_LatchedState_TransitionTime = + 20424, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_LatchedState_EffectiveTransitionTime = + 20425, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_LatchedState_TrueState = + 20426, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_LatchedState_FalseState = + 20427, CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ReAlarmTime = 20428, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ReAlarmRepeatCount = 20429, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ReAlarmRepeatCount = + 20429, CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_NormalState = 20436, CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ExpirationDate = 20437, CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ExpirationLimit = 20438, @@ -11856,122 +12524,203 @@ pub enum VariableId { CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_Message = 20449, CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_Severity = 20450, CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ConditionClassId = 20451, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ConditionClassName = 20452, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ConditionSubClassId = 20453, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ConditionSubClassName = 20454, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ConditionClassName = + 20452, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ConditionSubClassId = + 20453, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ConditionSubClassName = + 20454, CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ConditionName = 20455, CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_BranchId = 20456, CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_Retain = 20457, CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_EnabledState = 20458, CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_EnabledState_Id = 20459, CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_EnabledState_Name = 20460, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_EnabledState_Number = 20461, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_EnabledState_EffectiveDisplayName = 20462, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_EnabledState_TransitionTime = 20463, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_EnabledState_EffectiveTransitionTime = 20464, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_EnabledState_TrueState = 20465, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_EnabledState_FalseState = 20466, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_EnabledState_Number = + 20461, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_EnabledState_EffectiveDisplayName = + 20462, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_EnabledState_TransitionTime = + 20463, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_EnabledState_EffectiveTransitionTime = + 20464, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_EnabledState_TrueState = + 20465, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_EnabledState_FalseState = + 20466, CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_Quality = 20467, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_Quality_SourceTimestamp = 20468, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_Quality_SourceTimestamp = + 20468, CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_LastSeverity = 20469, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_LastSeverity_SourceTimestamp = 20470, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_LastSeverity_SourceTimestamp = + 20470, CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_Comment = 20471, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_Comment_SourceTimestamp = 20472, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_Comment_SourceTimestamp = + 20472, CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ClientUserId = 20473, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_AddComment_InputArguments = 20477, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_AddComment_InputArguments = + 20477, CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_AckedState = 20478, CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_AckedState_Id = 20479, CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_AckedState_Name = 20480, CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_AckedState_Number = 20481, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_AckedState_EffectiveDisplayName = 20482, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_AckedState_TransitionTime = 20483, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_AckedState_EffectiveTransitionTime = 20484, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_AckedState_TrueState = 20485, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_AckedState_FalseState = 20486, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_AckedState_EffectiveDisplayName = + 20482, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_AckedState_TransitionTime = + 20483, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_AckedState_EffectiveTransitionTime = + 20484, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_AckedState_TrueState = + 20485, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_AckedState_FalseState = + 20486, CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState = 20487, CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState_Id = 20488, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState_Name = 20489, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState_Number = 20490, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState_EffectiveDisplayName = 20491, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState_TransitionTime = 20492, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState_EffectiveTransitionTime = 20493, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState_TrueState = 20494, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState_FalseState = 20495, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_Acknowledge_InputArguments = 20497, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_Confirm_InputArguments = 20499, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState_Name = + 20489, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState_Number = + 20490, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState_EffectiveDisplayName = + 20491, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState_TransitionTime = + 20492, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState_EffectiveTransitionTime = + 20493, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState_TrueState = + 20494, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState_FalseState = + 20495, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_Acknowledge_InputArguments = + 20497, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_Confirm_InputArguments = + 20499, CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ActiveState = 20500, CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ActiveState_Id = 20501, CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ActiveState_Name = 20502, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ActiveState_Number = 20503, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ActiveState_EffectiveDisplayName = 20504, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ActiveState_TransitionTime = 20505, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ActiveState_EffectiveTransitionTime = 20506, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ActiveState_TrueState = 20507, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ActiveState_FalseState = 20508, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ActiveState_Number = + 20503, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ActiveState_EffectiveDisplayName = + 20504, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ActiveState_TransitionTime = + 20505, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ActiveState_EffectiveTransitionTime = + 20506, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ActiveState_TrueState = + 20507, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ActiveState_FalseState = + 20508, CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_InputNode = 20509, CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState = 20510, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState_Id = 20511, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState_Name = 20512, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState_Number = 20513, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState_EffectiveDisplayName = 20514, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState_TransitionTime = 20515, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState_EffectiveTransitionTime = 20516, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState_TrueState = 20517, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState_FalseState = 20518, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState_Id = + 20511, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState_Name = + 20512, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState_Number = + 20513, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState_EffectiveDisplayName = + 20514, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState_TransitionTime = + 20515, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState_EffectiveTransitionTime = + 20516, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState_TrueState = + 20517, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState_FalseState = + 20518, CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState = 20519, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState_Id = 20520, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState_Name = 20521, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState_Number = 20522, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState_EffectiveDisplayName = 20523, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState_TransitionTime = 20524, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState_EffectiveTransitionTime = 20525, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState_TrueState = 20526, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState_FalseState = 20527, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_CurrentState = 20529, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_CurrentState_Id = 20530, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_CurrentState_Name = 20531, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_CurrentState_Number = 20532, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_CurrentState_EffectiveDisplayName = 20533, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_LastTransition = 20534, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_LastTransition_Id = 20535, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_LastTransition_Name = 20536, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_LastTransition_Number = 20537, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_LastTransition_TransitionTime = 20538, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_LastTransition_EffectiveTransitionTime = 20539, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_AvailableStates = 20540, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_AvailableTransitions = 20541, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_UnshelveTime = 20542, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_TimedShelve_InputArguments = 20544, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_SuppressedOrShelved = 20547, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState_Id = + 20520, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState_Name = + 20521, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState_Number = + 20522, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState_EffectiveDisplayName = + 20523, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState_TransitionTime = + 20524, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState_EffectiveTransitionTime = + 20525, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState_TrueState = + 20526, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState_FalseState = + 20527, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_CurrentState = + 20529, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_CurrentState_Id = + 20530, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_CurrentState_Name = + 20531, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_CurrentState_Number = + 20532, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_CurrentState_EffectiveDisplayName = + 20533, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_LastTransition = + 20534, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_LastTransition_Id = + 20535, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_LastTransition_Name = + 20536, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_LastTransition_Number = + 20537, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_LastTransition_TransitionTime = + 20538, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_LastTransition_EffectiveTransitionTime = + 20539, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_AvailableStates = + 20540, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_AvailableTransitions = + 20541, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_UnshelveTime = + 20542, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_TimedShelve_InputArguments = + 20544, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_SuppressedOrShelved = + 20547, CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_MaxTimeShelved = 20548, CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_AudibleEnabled = 20549, CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_AudibleSound = 20550, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_AudibleSound_ListId = 20551, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_AudibleSound_AgencyId = 20552, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_AudibleSound_VersionId = 20553, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_AudibleSound_ListId = + 20551, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_AudibleSound_AgencyId = + 20552, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_AudibleSound_VersionId = + 20553, CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_SilenceState = 20554, CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_SilenceState_Id = 20555, CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_SilenceState_Name = 20556, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_SilenceState_Number = 20557, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_SilenceState_EffectiveDisplayName = 20558, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_SilenceState_TransitionTime = 20559, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_SilenceState_EffectiveTransitionTime = 20560, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_SilenceState_TrueState = 20561, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_SilenceState_FalseState = 20562, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_SilenceState_Number = + 20557, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_SilenceState_EffectiveDisplayName = + 20558, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_SilenceState_TransitionTime = + 20559, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_SilenceState_EffectiveTransitionTime = + 20560, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_SilenceState_TrueState = + 20561, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_SilenceState_FalseState = + 20562, CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_OnDelay = 20563, CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_OffDelay = 20564, CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_FirstInGroupFlag = 20565, CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_LatchedState = 20567, CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_LatchedState_Id = 20568, CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_LatchedState_Name = 20569, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_LatchedState_Number = 20570, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_LatchedState_EffectiveDisplayName = 20571, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_LatchedState_TransitionTime = 20572, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_LatchedState_EffectiveTransitionTime = 20573, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_LatchedState_TrueState = 20574, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_LatchedState_FalseState = 20575, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_LatchedState_Number = + 20570, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_LatchedState_EffectiveDisplayName = + 20571, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_LatchedState_TransitionTime = + 20572, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_LatchedState_EffectiveTransitionTime = + 20573, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_LatchedState_TrueState = + 20574, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_LatchedState_FalseState = + 20575, CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ReAlarmTime = 20576, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ReAlarmRepeatCount = 20577, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ReAlarmRepeatCount = + 20577, CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_NormalState = 20584, CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_TrustListId = 20585, CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_LastUpdateTime = 20586, @@ -11997,46 +12746,63 @@ pub enum VariableId { CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_EnabledState_Id = 20607, CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_EnabledState_Name = 20608, CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_EnabledState_Number = 20609, - CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_EnabledState_EffectiveDisplayName = 20610, - CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_EnabledState_TransitionTime = 20611, - CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_EnabledState_EffectiveTransitionTime = 20612, + CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_EnabledState_EffectiveDisplayName = + 20610, + CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_EnabledState_TransitionTime = + 20611, + CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_EnabledState_EffectiveTransitionTime = + 20612, CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_EnabledState_TrueState = 20613, CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_EnabledState_FalseState = 20614, CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_Quality = 20615, CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_Quality_SourceTimestamp = 20616, CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_LastSeverity = 20617, - CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_LastSeverity_SourceTimestamp = 20618, + CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_LastSeverity_SourceTimestamp = + 20618, CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_Comment = 20619, CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_Comment_SourceTimestamp = 20620, CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ClientUserId = 20621, - CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_AddComment_InputArguments = 20625, + CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_AddComment_InputArguments = + 20625, CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_AckedState = 20626, CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_AckedState_Id = 20627, CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_AckedState_Name = 20628, CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_AckedState_Number = 20629, - CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_AckedState_EffectiveDisplayName = 20630, - CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_AckedState_TransitionTime = 20631, - CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_AckedState_EffectiveTransitionTime = 20632, + CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_AckedState_EffectiveDisplayName = + 20630, + CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_AckedState_TransitionTime = + 20631, + CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_AckedState_EffectiveTransitionTime = + 20632, CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_AckedState_TrueState = 20633, CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_AckedState_FalseState = 20634, CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ConfirmedState = 20635, CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ConfirmedState_Id = 20636, CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ConfirmedState_Name = 20637, CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ConfirmedState_Number = 20638, - CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ConfirmedState_EffectiveDisplayName = 20639, - CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ConfirmedState_TransitionTime = 20640, - CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ConfirmedState_EffectiveTransitionTime = 20641, - CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ConfirmedState_TrueState = 20642, - CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ConfirmedState_FalseState = 20643, - CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_Acknowledge_InputArguments = 20645, + CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ConfirmedState_EffectiveDisplayName = + 20639, + CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ConfirmedState_TransitionTime = + 20640, + CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ConfirmedState_EffectiveTransitionTime = + 20641, + CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ConfirmedState_TrueState = + 20642, + CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ConfirmedState_FalseState = + 20643, + CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_Acknowledge_InputArguments = + 20645, CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_Confirm_InputArguments = 20647, CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ActiveState = 20648, CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ActiveState_Id = 20649, CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ActiveState_Name = 20650, CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ActiveState_Number = 20651, - CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ActiveState_EffectiveDisplayName = 20652, - CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ActiveState_TransitionTime = 20653, - CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ActiveState_EffectiveTransitionTime = 20654, + CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ActiveState_EffectiveDisplayName = + 20652, + CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ActiveState_TransitionTime = + 20653, + CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ActiveState_EffectiveTransitionTime = + 20654, CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ActiveState_TrueState = 20655, CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ActiveState_FalseState = 20656, CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_InputNode = 20657, @@ -12044,35 +12810,61 @@ pub enum VariableId { CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_SuppressedState_Id = 20659, CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_SuppressedState_Name = 20660, CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_SuppressedState_Number = 20661, - CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_SuppressedState_EffectiveDisplayName = 20662, - CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_SuppressedState_TransitionTime = 20663, - CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_SuppressedState_EffectiveTransitionTime = 20664, - CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_SuppressedState_TrueState = 20665, - CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_SuppressedState_FalseState = 20666, + CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_SuppressedState_EffectiveDisplayName = + 20662, + CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_SuppressedState_TransitionTime = + 20663, + CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_SuppressedState_EffectiveTransitionTime = + 20664, + CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_SuppressedState_TrueState = + 20665, + CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_SuppressedState_FalseState = + 20666, CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_OutOfServiceState = 20667, CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_OutOfServiceState_Id = 20668, CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_OutOfServiceState_Name = 20669, - CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_OutOfServiceState_Number = 20670, - CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_OutOfServiceState_EffectiveDisplayName = 20671, - CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_OutOfServiceState_TransitionTime = 20672, - CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_OutOfServiceState_EffectiveTransitionTime = 20673, - CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_OutOfServiceState_TrueState = 20674, - CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_OutOfServiceState_FalseState = 20675, - CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ShelvingState_CurrentState = 20677, - CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ShelvingState_CurrentState_Id = 20678, - CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ShelvingState_CurrentState_Name = 20679, - CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ShelvingState_CurrentState_Number = 20680, - CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ShelvingState_CurrentState_EffectiveDisplayName = 20681, - CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ShelvingState_LastTransition = 20682, - CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ShelvingState_LastTransition_Id = 20683, - CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ShelvingState_LastTransition_Name = 20684, - CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ShelvingState_LastTransition_Number = 20685, - CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ShelvingState_LastTransition_TransitionTime = 20686, - CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ShelvingState_LastTransition_EffectiveTransitionTime = 20687, - CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ShelvingState_AvailableStates = 20688, - CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ShelvingState_AvailableTransitions = 20689, - CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ShelvingState_UnshelveTime = 20690, - CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ShelvingState_TimedShelve_InputArguments = 20692, + CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_OutOfServiceState_Number = + 20670, + CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_OutOfServiceState_EffectiveDisplayName = + 20671, + CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_OutOfServiceState_TransitionTime = + 20672, + CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_OutOfServiceState_EffectiveTransitionTime = + 20673, + CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_OutOfServiceState_TrueState = + 20674, + CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_OutOfServiceState_FalseState = + 20675, + CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ShelvingState_CurrentState = + 20677, + CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ShelvingState_CurrentState_Id = + 20678, + CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ShelvingState_CurrentState_Name = + 20679, + CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ShelvingState_CurrentState_Number = + 20680, + CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ShelvingState_CurrentState_EffectiveDisplayName = + 20681, + CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ShelvingState_LastTransition = + 20682, + CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ShelvingState_LastTransition_Id = + 20683, + CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ShelvingState_LastTransition_Name = + 20684, + CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ShelvingState_LastTransition_Number = + 20685, + CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ShelvingState_LastTransition_TransitionTime = + 20686, + CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ShelvingState_LastTransition_EffectiveTransitionTime = + 20687, + CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ShelvingState_AvailableStates = + 20688, + CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ShelvingState_AvailableTransitions = + 20689, + CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ShelvingState_UnshelveTime = + 20690, + CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ShelvingState_TimedShelve_InputArguments = + 20692, CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_SuppressedOrShelved = 20695, CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_MaxTimeShelved = 20696, CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_AudibleEnabled = 20697, @@ -12084,9 +12876,12 @@ pub enum VariableId { CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_SilenceState_Id = 20703, CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_SilenceState_Name = 20704, CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_SilenceState_Number = 20705, - CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_SilenceState_EffectiveDisplayName = 20706, - CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_SilenceState_TransitionTime = 20707, - CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_SilenceState_EffectiveTransitionTime = 20708, + CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_SilenceState_EffectiveDisplayName = + 20706, + CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_SilenceState_TransitionTime = + 20707, + CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_SilenceState_EffectiveTransitionTime = + 20708, CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_SilenceState_TrueState = 20709, CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_SilenceState_FalseState = 20710, CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_OnDelay = 20711, @@ -12096,9 +12891,12 @@ pub enum VariableId { CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_LatchedState_Id = 20716, CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_LatchedState_Name = 20717, CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_LatchedState_Number = 20718, - CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_LatchedState_EffectiveDisplayName = 20719, - CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_LatchedState_TransitionTime = 20720, - CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_LatchedState_EffectiveTransitionTime = 20721, + CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_LatchedState_EffectiveDisplayName = + 20719, + CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_LatchedState_TransitionTime = + 20720, + CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_LatchedState_EffectiveTransitionTime = + 20721, CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_LatchedState_TrueState = 20722, CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_LatchedState_FalseState = 20723, CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ReAlarmTime = 20724, @@ -12128,46 +12926,63 @@ pub enum VariableId { CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_EnabledState_Id = 20755, CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_EnabledState_Name = 20756, CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_EnabledState_Number = 20757, - CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_EnabledState_EffectiveDisplayName = 20758, - CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_EnabledState_TransitionTime = 20759, - CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_EnabledState_EffectiveTransitionTime = 20760, + CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_EnabledState_EffectiveDisplayName = + 20758, + CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_EnabledState_TransitionTime = + 20759, + CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_EnabledState_EffectiveTransitionTime = + 20760, CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_EnabledState_TrueState = 20761, CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_EnabledState_FalseState = 20762, CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_Quality = 20763, CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_Quality_SourceTimestamp = 20764, CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_LastSeverity = 20765, - CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_LastSeverity_SourceTimestamp = 20766, + CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_LastSeverity_SourceTimestamp = + 20766, CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_Comment = 20767, CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_Comment_SourceTimestamp = 20768, CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ClientUserId = 20769, - CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_AddComment_InputArguments = 20773, + CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_AddComment_InputArguments = + 20773, CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_AckedState = 20774, CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_AckedState_Id = 20775, CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_AckedState_Name = 20776, CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_AckedState_Number = 20777, - CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_AckedState_EffectiveDisplayName = 20778, - CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_AckedState_TransitionTime = 20779, - CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_AckedState_EffectiveTransitionTime = 20780, + CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_AckedState_EffectiveDisplayName = + 20778, + CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_AckedState_TransitionTime = + 20779, + CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_AckedState_EffectiveTransitionTime = + 20780, CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_AckedState_TrueState = 20781, CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_AckedState_FalseState = 20782, CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ConfirmedState = 20783, CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ConfirmedState_Id = 20784, CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ConfirmedState_Name = 20785, CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ConfirmedState_Number = 20786, - CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ConfirmedState_EffectiveDisplayName = 20787, - CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ConfirmedState_TransitionTime = 20788, - CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ConfirmedState_EffectiveTransitionTime = 20789, - CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ConfirmedState_TrueState = 20790, - CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ConfirmedState_FalseState = 20791, - CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_Acknowledge_InputArguments = 20793, + CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ConfirmedState_EffectiveDisplayName = + 20787, + CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ConfirmedState_TransitionTime = + 20788, + CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ConfirmedState_EffectiveTransitionTime = + 20789, + CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ConfirmedState_TrueState = + 20790, + CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ConfirmedState_FalseState = + 20791, + CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_Acknowledge_InputArguments = + 20793, CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_Confirm_InputArguments = 20795, CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ActiveState = 20796, CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ActiveState_Id = 20797, CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ActiveState_Name = 20798, CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ActiveState_Number = 20799, - CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ActiveState_EffectiveDisplayName = 20800, - CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ActiveState_TransitionTime = 20801, - CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ActiveState_EffectiveTransitionTime = 20802, + CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ActiveState_EffectiveDisplayName = + 20800, + CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ActiveState_TransitionTime = + 20801, + CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ActiveState_EffectiveTransitionTime = + 20802, CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ActiveState_TrueState = 20803, CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ActiveState_FalseState = 20804, CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_InputNode = 20805, @@ -12175,35 +12990,61 @@ pub enum VariableId { CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_SuppressedState_Id = 20807, CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_SuppressedState_Name = 20808, CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_SuppressedState_Number = 20809, - CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_SuppressedState_EffectiveDisplayName = 20810, - CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_SuppressedState_TransitionTime = 20811, - CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_SuppressedState_EffectiveTransitionTime = 20812, - CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_SuppressedState_TrueState = 20813, - CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_SuppressedState_FalseState = 20814, + CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_SuppressedState_EffectiveDisplayName = + 20810, + CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_SuppressedState_TransitionTime = + 20811, + CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_SuppressedState_EffectiveTransitionTime = + 20812, + CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_SuppressedState_TrueState = + 20813, + CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_SuppressedState_FalseState = + 20814, CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_OutOfServiceState = 20815, CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_OutOfServiceState_Id = 20816, CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_OutOfServiceState_Name = 20817, - CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_OutOfServiceState_Number = 20818, - CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_OutOfServiceState_EffectiveDisplayName = 20819, - CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_OutOfServiceState_TransitionTime = 20820, - CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_OutOfServiceState_EffectiveTransitionTime = 20821, - CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_OutOfServiceState_TrueState = 20822, - CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_OutOfServiceState_FalseState = 20823, - CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_CurrentState = 20825, - CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_CurrentState_Id = 20826, - CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_CurrentState_Name = 20827, - CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_CurrentState_Number = 20828, - CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_CurrentState_EffectiveDisplayName = 20829, - CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_LastTransition = 20830, - CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_LastTransition_Id = 20831, - CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_LastTransition_Name = 20832, - CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_LastTransition_Number = 20833, - CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_LastTransition_TransitionTime = 20834, - CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_LastTransition_EffectiveTransitionTime = 20835, - CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_AvailableStates = 20836, - CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_AvailableTransitions = 20837, - CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_UnshelveTime = 20838, - CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_TimedShelve_InputArguments = 20840, + CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_OutOfServiceState_Number = + 20818, + CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_OutOfServiceState_EffectiveDisplayName = + 20819, + CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_OutOfServiceState_TransitionTime = + 20820, + CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_OutOfServiceState_EffectiveTransitionTime = + 20821, + CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_OutOfServiceState_TrueState = + 20822, + CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_OutOfServiceState_FalseState = + 20823, + CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_CurrentState = + 20825, + CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_CurrentState_Id = + 20826, + CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_CurrentState_Name = + 20827, + CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_CurrentState_Number = + 20828, + CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_CurrentState_EffectiveDisplayName = + 20829, + CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_LastTransition = + 20830, + CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_LastTransition_Id = + 20831, + CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_LastTransition_Name = + 20832, + CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_LastTransition_Number = + 20833, + CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_LastTransition_TransitionTime = + 20834, + CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_LastTransition_EffectiveTransitionTime = + 20835, + CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_AvailableStates = + 20836, + CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_AvailableTransitions = + 20837, + CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_UnshelveTime = + 20838, + CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_TimedShelve_InputArguments = + 20840, CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_SuppressedOrShelved = 20843, CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_MaxTimeShelved = 20844, CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_AudibleEnabled = 20845, @@ -12215,9 +13056,12 @@ pub enum VariableId { CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_SilenceState_Id = 20851, CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_SilenceState_Name = 20852, CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_SilenceState_Number = 20853, - CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_SilenceState_EffectiveDisplayName = 20854, - CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_SilenceState_TransitionTime = 20855, - CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_SilenceState_EffectiveTransitionTime = 20856, + CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_SilenceState_EffectiveDisplayName = + 20854, + CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_SilenceState_TransitionTime = + 20855, + CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_SilenceState_EffectiveTransitionTime = + 20856, CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_SilenceState_TrueState = 20857, CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_SilenceState_FalseState = 20858, CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_OnDelay = 20859, @@ -12227,9 +13071,12 @@ pub enum VariableId { CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_LatchedState_Id = 20864, CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_LatchedState_Name = 20865, CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_LatchedState_Number = 20866, - CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_LatchedState_EffectiveDisplayName = 20867, - CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_LatchedState_TransitionTime = 20868, - CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_LatchedState_EffectiveTransitionTime = 20869, + CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_LatchedState_EffectiveDisplayName = + 20867, + CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_LatchedState_TransitionTime = + 20868, + CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_LatchedState_EffectiveTransitionTime = + 20869, CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_LatchedState_TrueState = 20870, CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_LatchedState_FalseState = 20871, CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ReAlarmTime = 20872, @@ -12251,7 +13098,8 @@ pub enum VariableId { CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ConditionClassId = 20895, CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ConditionClassName = 20896, CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ConditionSubClassId = 20897, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ConditionSubClassName = 20898, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ConditionSubClassName = + 20898, CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ConditionName = 20899, CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_BranchId = 20900, CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_Retain = 20901, @@ -12259,93 +13107,154 @@ pub enum VariableId { CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_EnabledState_Id = 20903, CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_EnabledState_Name = 20904, CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_EnabledState_Number = 20905, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_EnabledState_EffectiveDisplayName = 20906, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_EnabledState_TransitionTime = 20907, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_EnabledState_EffectiveTransitionTime = 20908, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_EnabledState_TrueState = 20909, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_EnabledState_FalseState = 20910, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_EnabledState_EffectiveDisplayName = + 20906, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_EnabledState_TransitionTime = + 20907, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_EnabledState_EffectiveTransitionTime = + 20908, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_EnabledState_TrueState = + 20909, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_EnabledState_FalseState = + 20910, CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_Quality = 20911, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_Quality_SourceTimestamp = 20912, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_Quality_SourceTimestamp = + 20912, CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_LastSeverity = 20913, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_LastSeverity_SourceTimestamp = 20914, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_LastSeverity_SourceTimestamp = + 20914, CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_Comment = 20915, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_Comment_SourceTimestamp = 20916, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_Comment_SourceTimestamp = + 20916, CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ClientUserId = 20917, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_AddComment_InputArguments = 20921, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_AddComment_InputArguments = + 20921, CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_AckedState = 20922, CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_AckedState_Id = 20923, CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_AckedState_Name = 20924, CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_AckedState_Number = 20925, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_AckedState_EffectiveDisplayName = 20926, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_AckedState_TransitionTime = 20927, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_AckedState_EffectiveTransitionTime = 20928, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_AckedState_TrueState = 20929, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_AckedState_FalseState = 20930, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_AckedState_EffectiveDisplayName = + 20926, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_AckedState_TransitionTime = + 20927, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_AckedState_EffectiveTransitionTime = + 20928, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_AckedState_TrueState = + 20929, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_AckedState_FalseState = + 20930, CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ConfirmedState = 20931, CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ConfirmedState_Id = 20932, CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ConfirmedState_Name = 20933, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ConfirmedState_Number = 20934, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ConfirmedState_EffectiveDisplayName = 20935, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ConfirmedState_TransitionTime = 20936, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ConfirmedState_EffectiveTransitionTime = 20937, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ConfirmedState_TrueState = 20938, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ConfirmedState_FalseState = 20939, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_Acknowledge_InputArguments = 20941, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_Confirm_InputArguments = 20943, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ConfirmedState_Number = + 20934, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ConfirmedState_EffectiveDisplayName = + 20935, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ConfirmedState_TransitionTime = + 20936, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ConfirmedState_EffectiveTransitionTime = + 20937, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ConfirmedState_TrueState = + 20938, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ConfirmedState_FalseState = + 20939, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_Acknowledge_InputArguments = + 20941, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_Confirm_InputArguments = + 20943, CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ActiveState = 20944, CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ActiveState_Id = 20945, CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ActiveState_Name = 20946, CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ActiveState_Number = 20947, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ActiveState_EffectiveDisplayName = 20948, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ActiveState_TransitionTime = 20949, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ActiveState_EffectiveTransitionTime = 20950, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ActiveState_TrueState = 20951, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ActiveState_FalseState = 20952, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ActiveState_EffectiveDisplayName = + 20948, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ActiveState_TransitionTime = + 20949, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ActiveState_EffectiveTransitionTime = + 20950, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ActiveState_TrueState = + 20951, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ActiveState_FalseState = + 20952, CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_InputNode = 20953, CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_SuppressedState = 20954, CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_SuppressedState_Id = 20955, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_SuppressedState_Name = 20956, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_SuppressedState_Number = 20957, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_SuppressedState_EffectiveDisplayName = 20958, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_SuppressedState_TransitionTime = 20959, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_SuppressedState_EffectiveTransitionTime = 20960, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_SuppressedState_TrueState = 20961, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_SuppressedState_FalseState = 20962, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_SuppressedState_Name = + 20956, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_SuppressedState_Number = + 20957, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_SuppressedState_EffectiveDisplayName = + 20958, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_SuppressedState_TransitionTime = + 20959, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_SuppressedState_EffectiveTransitionTime = + 20960, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_SuppressedState_TrueState = + 20961, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_SuppressedState_FalseState = + 20962, CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState = 20963, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState_Id = 20964, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState_Name = 20965, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState_Number = 20966, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState_EffectiveDisplayName = 20967, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState_TransitionTime = 20968, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState_EffectiveTransitionTime = 20969, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState_TrueState = 20970, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState_FalseState = 20971, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ShelvingState_CurrentState = 20973, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ShelvingState_CurrentState_Id = 20974, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ShelvingState_CurrentState_Name = 20975, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ShelvingState_CurrentState_Number = 20976, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ShelvingState_CurrentState_EffectiveDisplayName = 20977, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ShelvingState_LastTransition = 20978, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ShelvingState_LastTransition_Id = 20979, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ShelvingState_LastTransition_Name = 20980, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ShelvingState_LastTransition_Number = 20981, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ShelvingState_LastTransition_TransitionTime = 20982, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ShelvingState_LastTransition_EffectiveTransitionTime = 20983, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ShelvingState_AvailableStates = 20984, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ShelvingState_AvailableTransitions = 20985, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ShelvingState_UnshelveTime = 20986, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ShelvingState_TimedShelve_InputArguments = 20988, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState_Id = + 20964, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState_Name = + 20965, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState_Number = + 20966, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState_EffectiveDisplayName = + 20967, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState_TransitionTime = + 20968, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState_EffectiveTransitionTime = + 20969, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState_TrueState = + 20970, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState_FalseState = + 20971, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ShelvingState_CurrentState = + 20973, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ShelvingState_CurrentState_Id = + 20974, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ShelvingState_CurrentState_Name = + 20975, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ShelvingState_CurrentState_Number = + 20976, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ShelvingState_CurrentState_EffectiveDisplayName = + 20977, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ShelvingState_LastTransition = + 20978, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ShelvingState_LastTransition_Id = + 20979, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ShelvingState_LastTransition_Name = + 20980, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ShelvingState_LastTransition_Number = + 20981, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ShelvingState_LastTransition_TransitionTime = + 20982, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ShelvingState_LastTransition_EffectiveTransitionTime = + 20983, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ShelvingState_AvailableStates = + 20984, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ShelvingState_AvailableTransitions = + 20985, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ShelvingState_UnshelveTime = + 20986, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ShelvingState_TimedShelve_InputArguments = + 20988, CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_SuppressedOrShelved = 20991, CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_MaxTimeShelved = 20992, CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_AudibleEnabled = 20993, CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_AudibleSound = 20994, CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_AudibleSound_ListId = 20995, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_AudibleSound_AgencyId = 20996, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_AudibleSound_VersionId = 20997, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_AudibleSound_AgencyId = + 20996, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_AudibleSound_VersionId = + 20997, OpcUa_BinarySchema_FieldTargetDataType = 21002, - ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_LiveValues_SecurityTokenID_DiagnosticsLevel = 21003, + ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_LiveValues_SecurityTokenID_DiagnosticsLevel = + 21003, ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_LiveValues_TimeToNextTokenID = 21004, - ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_LiveValues_TimeToNextTokenID_DiagnosticsLevel = 21005, + ReaderGroupType_DataSetReaderName_Placeholder_Diagnostics_LiveValues_TimeToNextTokenID_DiagnosticsLevel = + 21005, CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_SilenceState = 21007, CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_SilenceState_Id = 21008, ReaderGroupType_DataSetReaderName_Placeholder_CreateTargetVariables_InputArguments = 21010, @@ -12479,11 +13388,16 @@ pub enum VariableId { OpcUa_BinarySchema_DatagramWriterGroupTransportDataType_DataTypeVersion = 21172, OpcUa_BinarySchema_DatagramWriterGroupTransportDataType_DictionaryFragment = 21173, CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_SilenceState_Number = 21204, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_SilenceState_EffectiveDisplayName = 21205, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_SilenceState_TransitionTime = 21206, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_SilenceState_EffectiveTransitionTime = 21207, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_SilenceState_TrueState = 21208, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_SilenceState_FalseState = 21209, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_SilenceState_EffectiveDisplayName = + 21205, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_SilenceState_TransitionTime = + 21206, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_SilenceState_EffectiveTransitionTime = + 21207, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_SilenceState_TrueState = + 21208, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_SilenceState_FalseState = + 21209, CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_OnDelay = 21210, CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_OffDelay = 21211, CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_FirstInGroupFlag = 21212, @@ -12491,11 +13405,16 @@ pub enum VariableId { CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_LatchedState_Id = 21215, CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_LatchedState_Name = 21216, CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_LatchedState_Number = 21217, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_LatchedState_EffectiveDisplayName = 21218, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_LatchedState_TransitionTime = 21219, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_LatchedState_EffectiveTransitionTime = 21220, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_LatchedState_TrueState = 21221, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_LatchedState_FalseState = 21222, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_LatchedState_EffectiveDisplayName = + 21218, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_LatchedState_TransitionTime = + 21219, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_LatchedState_EffectiveTransitionTime = + 21220, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_LatchedState_TrueState = + 21221, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_LatchedState_FalseState = + 21222, CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ReAlarmTime = 21223, CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ReAlarmRepeatCount = 21224, CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_NormalState = 21231, @@ -12515,7 +13434,8 @@ pub enum VariableId { CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ConditionClassId = 21246, CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ConditionClassName = 21247, CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ConditionSubClassId = 21248, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ConditionSubClassName = 21249, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ConditionSubClassName = + 21249, CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ConditionName = 21250, CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_BranchId = 21251, CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_Retain = 21252, @@ -12523,98 +13443,162 @@ pub enum VariableId { CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState_Id = 21254, CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState_Name = 21255, CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState_Number = 21256, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState_EffectiveDisplayName = 21257, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState_TransitionTime = 21258, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState_EffectiveTransitionTime = 21259, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState_TrueState = 21260, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState_FalseState = 21261, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState_EffectiveDisplayName = + 21257, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState_TransitionTime = + 21258, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState_EffectiveTransitionTime = + 21259, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState_TrueState = + 21260, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState_FalseState = + 21261, CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_Quality = 21262, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_Quality_SourceTimestamp = 21263, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_Quality_SourceTimestamp = + 21263, CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_LastSeverity = 21264, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_LastSeverity_SourceTimestamp = 21265, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_LastSeverity_SourceTimestamp = + 21265, CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_Comment = 21266, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_Comment_SourceTimestamp = 21267, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_Comment_SourceTimestamp = + 21267, CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ClientUserId = 21268, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_AddComment_InputArguments = 21272, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_AddComment_InputArguments = + 21272, CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_AckedState = 21273, CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_AckedState_Id = 21274, CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_AckedState_Name = 21275, CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_AckedState_Number = 21276, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_AckedState_EffectiveDisplayName = 21277, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_AckedState_TransitionTime = 21278, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_AckedState_EffectiveTransitionTime = 21279, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_AckedState_TrueState = 21280, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_AckedState_FalseState = 21281, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_AckedState_EffectiveDisplayName = + 21277, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_AckedState_TransitionTime = + 21278, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_AckedState_EffectiveTransitionTime = + 21279, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_AckedState_TrueState = + 21280, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_AckedState_FalseState = + 21281, CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ConfirmedState = 21282, CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ConfirmedState_Id = 21283, CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ConfirmedState_Name = 21284, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ConfirmedState_Number = 21285, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ConfirmedState_EffectiveDisplayName = 21286, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ConfirmedState_TransitionTime = 21287, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ConfirmedState_EffectiveTransitionTime = 21288, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ConfirmedState_TrueState = 21289, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ConfirmedState_FalseState = 21290, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_Acknowledge_InputArguments = 21292, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_Confirm_InputArguments = 21294, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ConfirmedState_Number = + 21285, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ConfirmedState_EffectiveDisplayName = + 21286, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ConfirmedState_TransitionTime = + 21287, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ConfirmedState_EffectiveTransitionTime = + 21288, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ConfirmedState_TrueState = + 21289, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ConfirmedState_FalseState = + 21290, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_Acknowledge_InputArguments = + 21292, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_Confirm_InputArguments = + 21294, CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState = 21295, CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState_Id = 21296, CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState_Name = 21297, CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState_Number = 21298, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState_EffectiveDisplayName = 21299, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState_TransitionTime = 21300, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState_EffectiveTransitionTime = 21301, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState_TrueState = 21302, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState_FalseState = 21303, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState_EffectiveDisplayName = + 21299, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState_TransitionTime = + 21300, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState_EffectiveTransitionTime = + 21301, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState_TrueState = + 21302, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState_FalseState = + 21303, CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_InputNode = 21304, CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState = 21305, CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState_Id = 21306, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState_Name = 21307, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState_Number = 21308, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState_EffectiveDisplayName = 21309, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState_TransitionTime = 21310, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState_EffectiveTransitionTime = 21311, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState_TrueState = 21312, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState_FalseState = 21313, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState_Name = + 21307, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState_Number = + 21308, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState_EffectiveDisplayName = + 21309, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState_TransitionTime = + 21310, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState_EffectiveTransitionTime = + 21311, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState_TrueState = + 21312, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState_FalseState = + 21313, CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState = 21314, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState_Id = 21315, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState_Name = 21316, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState_Number = 21317, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState_EffectiveDisplayName = 21318, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState_TransitionTime = 21319, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState_EffectiveTransitionTime = 21320, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState_TrueState = 21321, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState_FalseState = 21322, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_CurrentState = 21324, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_CurrentState_Id = 21325, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_CurrentState_Name = 21326, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_CurrentState_Number = 21327, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_CurrentState_EffectiveDisplayName = 21328, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_LastTransition = 21329, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_LastTransition_Id = 21330, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_LastTransition_Name = 21331, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_LastTransition_Number = 21332, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_LastTransition_TransitionTime = 21333, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_LastTransition_EffectiveTransitionTime = 21334, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_AvailableStates = 21335, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_AvailableTransitions = 21336, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_UnshelveTime = 21337, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_TimedShelve_InputArguments = 21339, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState_Id = + 21315, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState_Name = + 21316, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState_Number = + 21317, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState_EffectiveDisplayName = + 21318, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState_TransitionTime = + 21319, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState_EffectiveTransitionTime = + 21320, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState_TrueState = + 21321, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState_FalseState = + 21322, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_CurrentState = + 21324, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_CurrentState_Id = + 21325, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_CurrentState_Name = + 21326, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_CurrentState_Number = + 21327, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_CurrentState_EffectiveDisplayName = + 21328, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_LastTransition = + 21329, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_LastTransition_Id = + 21330, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_LastTransition_Name = + 21331, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_LastTransition_Number = + 21332, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_LastTransition_TransitionTime = + 21333, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_LastTransition_EffectiveTransitionTime = + 21334, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_AvailableStates = + 21335, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_AvailableTransitions = + 21336, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_UnshelveTime = + 21337, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_TimedShelve_InputArguments = + 21339, CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedOrShelved = 21342, CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_MaxTimeShelved = 21343, CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_AudibleEnabled = 21344, CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_AudibleSound = 21345, CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_AudibleSound_ListId = 21346, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_AudibleSound_AgencyId = 21347, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_AudibleSound_VersionId = 21348, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_AudibleSound_AgencyId = + 21347, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_AudibleSound_VersionId = + 21348, CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_SilenceState = 21349, CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_SilenceState_Id = 21350, CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_SilenceState_Name = 21351, CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_SilenceState_Number = 21352, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_SilenceState_EffectiveDisplayName = 21353, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_SilenceState_TransitionTime = 21354, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_SilenceState_EffectiveTransitionTime = 21355, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_SilenceState_TrueState = 21356, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_SilenceState_FalseState = 21357, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_SilenceState_EffectiveDisplayName = + 21353, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_SilenceState_TransitionTime = + 21354, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_SilenceState_EffectiveTransitionTime = + 21355, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_SilenceState_TrueState = + 21356, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_SilenceState_FalseState = + 21357, CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_OnDelay = 21358, CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_OffDelay = 21359, CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_FirstInGroupFlag = 21360, @@ -12622,11 +13606,16 @@ pub enum VariableId { CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_LatchedState_Id = 21363, CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_LatchedState_Name = 21364, CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_LatchedState_Number = 21365, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_LatchedState_EffectiveDisplayName = 21366, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_LatchedState_TransitionTime = 21367, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_LatchedState_EffectiveTransitionTime = 21368, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_LatchedState_TrueState = 21369, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_LatchedState_FalseState = 21370, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_LatchedState_EffectiveDisplayName = + 21366, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_LatchedState_TransitionTime = + 21367, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_LatchedState_EffectiveTransitionTime = + 21368, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_LatchedState_TrueState = + 21369, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_LatchedState_FalseState = + 21370, CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ReAlarmTime = 21371, CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ReAlarmRepeatCount = 21372, CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_NormalState = 21379, @@ -12643,127 +13632,229 @@ pub enum VariableId { CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_LocalTime = 21391, CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_Message = 21392, CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_Severity = 21393, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ConditionClassId = 21394, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ConditionClassName = 21395, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ConditionSubClassId = 21396, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ConditionSubClassName = 21397, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ConditionClassId = + 21394, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ConditionClassName = + 21395, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ConditionSubClassId = + 21396, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ConditionSubClassName = + 21397, CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ConditionName = 21398, CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_BranchId = 21399, CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_Retain = 21400, CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_EnabledState = 21401, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_EnabledState_Id = 21402, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_EnabledState_Name = 21403, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_EnabledState_Number = 21404, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_EnabledState_EffectiveDisplayName = 21405, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_EnabledState_TransitionTime = 21406, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_EnabledState_EffectiveTransitionTime = 21407, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_EnabledState_TrueState = 21408, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_EnabledState_FalseState = 21409, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_EnabledState_Id = + 21402, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_EnabledState_Name = + 21403, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_EnabledState_Number = + 21404, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_EnabledState_EffectiveDisplayName = + 21405, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_EnabledState_TransitionTime = + 21406, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_EnabledState_EffectiveTransitionTime = + 21407, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_EnabledState_TrueState = + 21408, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_EnabledState_FalseState = + 21409, CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_Quality = 21410, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_Quality_SourceTimestamp = 21411, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_Quality_SourceTimestamp = + 21411, CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_LastSeverity = 21412, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_LastSeverity_SourceTimestamp = 21413, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_LastSeverity_SourceTimestamp = + 21413, CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_Comment = 21414, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_Comment_SourceTimestamp = 21415, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_Comment_SourceTimestamp = + 21415, CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ClientUserId = 21416, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_AddComment_InputArguments = 21420, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_AddComment_InputArguments = + 21420, CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_AckedState = 21421, CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_AckedState_Id = 21422, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_AckedState_Name = 21423, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_AckedState_Number = 21424, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_AckedState_EffectiveDisplayName = 21425, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_AckedState_TransitionTime = 21426, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_AckedState_EffectiveTransitionTime = 21427, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_AckedState_TrueState = 21428, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_AckedState_FalseState = 21429, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ConfirmedState = 21430, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ConfirmedState_Id = 21431, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ConfirmedState_Name = 21432, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ConfirmedState_Number = 21433, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ConfirmedState_EffectiveDisplayName = 21434, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ConfirmedState_TransitionTime = 21435, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ConfirmedState_EffectiveTransitionTime = 21436, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ConfirmedState_TrueState = 21437, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ConfirmedState_FalseState = 21438, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_Acknowledge_InputArguments = 21440, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_Confirm_InputArguments = 21442, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_AckedState_Name = + 21423, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_AckedState_Number = + 21424, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_AckedState_EffectiveDisplayName = + 21425, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_AckedState_TransitionTime = + 21426, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_AckedState_EffectiveTransitionTime = + 21427, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_AckedState_TrueState = + 21428, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_AckedState_FalseState = + 21429, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ConfirmedState = + 21430, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ConfirmedState_Id = + 21431, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ConfirmedState_Name = + 21432, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ConfirmedState_Number = + 21433, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ConfirmedState_EffectiveDisplayName = + 21434, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ConfirmedState_TransitionTime = + 21435, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ConfirmedState_EffectiveTransitionTime = + 21436, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ConfirmedState_TrueState = + 21437, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ConfirmedState_FalseState = + 21438, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_Acknowledge_InputArguments = + 21440, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_Confirm_InputArguments = + 21442, CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ActiveState = 21443, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ActiveState_Id = 21444, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ActiveState_Name = 21445, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ActiveState_Number = 21446, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ActiveState_EffectiveDisplayName = 21447, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ActiveState_TransitionTime = 21448, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ActiveState_EffectiveTransitionTime = 21449, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ActiveState_TrueState = 21450, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ActiveState_FalseState = 21451, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ActiveState_Id = + 21444, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ActiveState_Name = + 21445, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ActiveState_Number = + 21446, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ActiveState_EffectiveDisplayName = + 21447, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ActiveState_TransitionTime = + 21448, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ActiveState_EffectiveTransitionTime = + 21449, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ActiveState_TrueState = + 21450, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ActiveState_FalseState = + 21451, CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_InputNode = 21452, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_SuppressedState = 21453, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_SuppressedState_Id = 21454, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_SuppressedState_Name = 21455, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_SuppressedState_Number = 21456, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_SuppressedState_EffectiveDisplayName = 21457, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_SuppressedState_TransitionTime = 21458, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_SuppressedState_EffectiveTransitionTime = 21459, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_SuppressedState_TrueState = 21460, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_SuppressedState_FalseState = 21461, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_OutOfServiceState = 21462, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_OutOfServiceState_Id = 21463, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_OutOfServiceState_Name = 21464, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_OutOfServiceState_Number = 21465, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_OutOfServiceState_EffectiveDisplayName = 21466, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_OutOfServiceState_TransitionTime = 21467, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_OutOfServiceState_EffectiveTransitionTime = 21468, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_OutOfServiceState_TrueState = 21469, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_OutOfServiceState_FalseState = 21470, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ShelvingState_CurrentState = 21472, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ShelvingState_CurrentState_Id = 21473, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ShelvingState_CurrentState_Name = 21474, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ShelvingState_CurrentState_Number = 21475, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ShelvingState_CurrentState_EffectiveDisplayName = 21476, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ShelvingState_LastTransition = 21477, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ShelvingState_LastTransition_Id = 21478, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ShelvingState_LastTransition_Name = 21479, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ShelvingState_LastTransition_Number = 21480, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ShelvingState_LastTransition_TransitionTime = 21481, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ShelvingState_LastTransition_EffectiveTransitionTime = 21482, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ShelvingState_AvailableStates = 21483, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ShelvingState_AvailableTransitions = 21484, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ShelvingState_UnshelveTime = 21485, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ShelvingState_TimedShelve_InputArguments = 21487, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_SuppressedOrShelved = 21490, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_MaxTimeShelved = 21491, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_AudibleEnabled = 21492, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_SuppressedState = + 21453, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_SuppressedState_Id = + 21454, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_SuppressedState_Name = + 21455, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_SuppressedState_Number = + 21456, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_SuppressedState_EffectiveDisplayName = + 21457, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_SuppressedState_TransitionTime = + 21458, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_SuppressedState_EffectiveTransitionTime = + 21459, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_SuppressedState_TrueState = + 21460, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_SuppressedState_FalseState = + 21461, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_OutOfServiceState = + 21462, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_OutOfServiceState_Id = + 21463, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_OutOfServiceState_Name = + 21464, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_OutOfServiceState_Number = + 21465, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_OutOfServiceState_EffectiveDisplayName = + 21466, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_OutOfServiceState_TransitionTime = + 21467, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_OutOfServiceState_EffectiveTransitionTime = + 21468, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_OutOfServiceState_TrueState = + 21469, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_OutOfServiceState_FalseState = + 21470, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ShelvingState_CurrentState = + 21472, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ShelvingState_CurrentState_Id = + 21473, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ShelvingState_CurrentState_Name = + 21474, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ShelvingState_CurrentState_Number = + 21475, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ShelvingState_CurrentState_EffectiveDisplayName = + 21476, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ShelvingState_LastTransition = + 21477, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ShelvingState_LastTransition_Id = + 21478, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ShelvingState_LastTransition_Name = + 21479, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ShelvingState_LastTransition_Number = + 21480, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ShelvingState_LastTransition_TransitionTime = + 21481, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ShelvingState_LastTransition_EffectiveTransitionTime = + 21482, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ShelvingState_AvailableStates = + 21483, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ShelvingState_AvailableTransitions = + 21484, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ShelvingState_UnshelveTime = + 21485, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ShelvingState_TimedShelve_InputArguments = + 21487, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_SuppressedOrShelved = + 21490, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_MaxTimeShelved = + 21491, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_AudibleEnabled = + 21492, CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_AudibleSound = 21493, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_AudibleSound_ListId = 21494, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_AudibleSound_AgencyId = 21495, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_AudibleSound_VersionId = 21496, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_AudibleSound_ListId = + 21494, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_AudibleSound_AgencyId = + 21495, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_AudibleSound_VersionId = + 21496, CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_SilenceState = 21497, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_SilenceState_Id = 21498, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_SilenceState_Name = 21499, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_SilenceState_Number = 21500, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_SilenceState_EffectiveDisplayName = 21501, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_SilenceState_TransitionTime = 21502, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_SilenceState_EffectiveTransitionTime = 21503, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_SilenceState_TrueState = 21504, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_SilenceState_FalseState = 21505, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_SilenceState_Id = + 21498, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_SilenceState_Name = + 21499, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_SilenceState_Number = + 21500, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_SilenceState_EffectiveDisplayName = + 21501, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_SilenceState_TransitionTime = + 21502, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_SilenceState_EffectiveTransitionTime = + 21503, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_SilenceState_TrueState = + 21504, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_SilenceState_FalseState = + 21505, CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_OnDelay = 21506, CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_OffDelay = 21507, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_FirstInGroupFlag = 21508, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_FirstInGroupFlag = + 21508, CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_LatchedState = 21510, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_LatchedState_Id = 21511, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_LatchedState_Name = 21512, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_LatchedState_Number = 21513, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_LatchedState_EffectiveDisplayName = 21514, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_LatchedState_TransitionTime = 21515, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_LatchedState_EffectiveTransitionTime = 21516, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_LatchedState_TrueState = 21517, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_LatchedState_FalseState = 21518, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_LatchedState_Id = + 21511, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_LatchedState_Name = + 21512, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_LatchedState_Number = + 21513, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_LatchedState_EffectiveDisplayName = + 21514, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_LatchedState_TransitionTime = + 21515, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_LatchedState_EffectiveTransitionTime = + 21516, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_LatchedState_TrueState = + 21517, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_LatchedState_FalseState = + 21518, CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ReAlarmTime = 21519, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ReAlarmRepeatCount = 21520, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ReAlarmRepeatCount = + 21520, CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_NormalState = 21527, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ExpirationDate = 21528, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ExpirationLimit = 21529, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_CertificateType = 21530, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ExpirationDate = + 21528, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ExpirationLimit = + 21529, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_CertificateType = + 21530, CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_Certificate = 21531, CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_EventId = 21533, CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_EventType = 21534, @@ -12774,1175 +13865,2296 @@ pub enum VariableId { CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_LocalTime = 21539, CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_Message = 21540, CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_Severity = 21541, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ConditionClassId = 21542, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ConditionClassName = 21543, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ConditionSubClassId = 21544, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ConditionSubClassName = 21545, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ConditionClassId = + 21542, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ConditionClassName = + 21543, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ConditionSubClassId = + 21544, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ConditionSubClassName = + 21545, CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ConditionName = 21546, CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_BranchId = 21547, CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_Retain = 21548, CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_EnabledState = 21549, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_EnabledState_Id = 21550, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_EnabledState_Name = 21551, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_EnabledState_Number = 21552, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_EnabledState_EffectiveDisplayName = 21553, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_EnabledState_TransitionTime = 21554, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_EnabledState_EffectiveTransitionTime = 21555, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_EnabledState_TrueState = 21556, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_EnabledState_FalseState = 21557, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_EnabledState_Id = + 21550, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_EnabledState_Name = + 21551, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_EnabledState_Number = + 21552, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_EnabledState_EffectiveDisplayName = + 21553, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_EnabledState_TransitionTime = + 21554, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_EnabledState_EffectiveTransitionTime = + 21555, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_EnabledState_TrueState = + 21556, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_EnabledState_FalseState = + 21557, CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_Quality = 21558, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_Quality_SourceTimestamp = 21559, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_Quality_SourceTimestamp = + 21559, CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_LastSeverity = 21560, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_LastSeverity_SourceTimestamp = 21561, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_LastSeverity_SourceTimestamp = + 21561, CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_Comment = 21562, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_Comment_SourceTimestamp = 21563, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_Comment_SourceTimestamp = + 21563, CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ClientUserId = 21564, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_AddComment_InputArguments = 21568, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_AddComment_InputArguments = + 21568, CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_AckedState = 21569, CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_AckedState_Id = 21570, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_AckedState_Name = 21571, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_AckedState_Number = 21572, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_AckedState_EffectiveDisplayName = 21573, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_AckedState_TransitionTime = 21574, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_AckedState_EffectiveTransitionTime = 21575, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_AckedState_TrueState = 21576, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_AckedState_FalseState = 21577, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ConfirmedState = 21578, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ConfirmedState_Id = 21579, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ConfirmedState_Name = 21580, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ConfirmedState_Number = 21581, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ConfirmedState_EffectiveDisplayName = 21582, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ConfirmedState_TransitionTime = 21583, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ConfirmedState_EffectiveTransitionTime = 21584, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ConfirmedState_TrueState = 21585, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ConfirmedState_FalseState = 21586, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_Acknowledge_InputArguments = 21588, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_Confirm_InputArguments = 21590, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_AckedState_Name = + 21571, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_AckedState_Number = + 21572, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_AckedState_EffectiveDisplayName = + 21573, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_AckedState_TransitionTime = + 21574, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_AckedState_EffectiveTransitionTime = + 21575, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_AckedState_TrueState = + 21576, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_AckedState_FalseState = + 21577, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ConfirmedState = + 21578, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ConfirmedState_Id = + 21579, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ConfirmedState_Name = + 21580, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ConfirmedState_Number = + 21581, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ConfirmedState_EffectiveDisplayName = + 21582, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ConfirmedState_TransitionTime = + 21583, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ConfirmedState_EffectiveTransitionTime = + 21584, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ConfirmedState_TrueState = + 21585, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ConfirmedState_FalseState = + 21586, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_Acknowledge_InputArguments = + 21588, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_Confirm_InputArguments = + 21590, CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ActiveState = 21591, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ActiveState_Id = 21592, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ActiveState_Name = 21593, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ActiveState_Number = 21594, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ActiveState_EffectiveDisplayName = 21595, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ActiveState_TransitionTime = 21596, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ActiveState_EffectiveTransitionTime = 21597, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ActiveState_TrueState = 21598, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ActiveState_FalseState = 21599, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ActiveState_Id = + 21592, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ActiveState_Name = + 21593, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ActiveState_Number = + 21594, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ActiveState_EffectiveDisplayName = + 21595, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ActiveState_TransitionTime = + 21596, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ActiveState_EffectiveTransitionTime = + 21597, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ActiveState_TrueState = + 21598, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ActiveState_FalseState = + 21599, CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_InputNode = 21600, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_SuppressedState = 21601, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_SuppressedState_Id = 21602, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_SuppressedState_Name = 21603, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_SuppressedState_Number = 21604, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_SuppressedState_EffectiveDisplayName = 21605, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_SuppressedState_TransitionTime = 21606, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_SuppressedState_EffectiveTransitionTime = 21607, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_SuppressedState_TrueState = 21608, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_SuppressedState_FalseState = 21609, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_OutOfServiceState = 21610, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_OutOfServiceState_Id = 21611, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_OutOfServiceState_Name = 21612, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_OutOfServiceState_Number = 21613, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_OutOfServiceState_EffectiveDisplayName = 21614, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_OutOfServiceState_TransitionTime = 21615, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_OutOfServiceState_EffectiveTransitionTime = 21616, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_OutOfServiceState_TrueState = 21617, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_OutOfServiceState_FalseState = 21618, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ShelvingState_CurrentState = 21620, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ShelvingState_CurrentState_Id = 21621, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ShelvingState_CurrentState_Name = 21622, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ShelvingState_CurrentState_Number = 21623, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ShelvingState_CurrentState_EffectiveDisplayName = 21624, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ShelvingState_LastTransition = 21625, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ShelvingState_LastTransition_Id = 21626, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ShelvingState_LastTransition_Name = 21627, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ShelvingState_LastTransition_Number = 21628, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ShelvingState_LastTransition_TransitionTime = 21629, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ShelvingState_LastTransition_EffectiveTransitionTime = 21630, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ShelvingState_AvailableStates = 21631, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ShelvingState_AvailableTransitions = 21632, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ShelvingState_UnshelveTime = 21633, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ShelvingState_TimedShelve_InputArguments = 21635, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_SuppressedOrShelved = 21638, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_MaxTimeShelved = 21639, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_AudibleEnabled = 21640, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_SuppressedState = + 21601, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_SuppressedState_Id = + 21602, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_SuppressedState_Name = + 21603, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_SuppressedState_Number = + 21604, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_SuppressedState_EffectiveDisplayName = + 21605, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_SuppressedState_TransitionTime = + 21606, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_SuppressedState_EffectiveTransitionTime = + 21607, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_SuppressedState_TrueState = + 21608, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_SuppressedState_FalseState = + 21609, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_OutOfServiceState = + 21610, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_OutOfServiceState_Id = + 21611, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_OutOfServiceState_Name = + 21612, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_OutOfServiceState_Number = + 21613, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_OutOfServiceState_EffectiveDisplayName = + 21614, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_OutOfServiceState_TransitionTime = + 21615, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_OutOfServiceState_EffectiveTransitionTime = + 21616, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_OutOfServiceState_TrueState = + 21617, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_OutOfServiceState_FalseState = + 21618, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ShelvingState_CurrentState = + 21620, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ShelvingState_CurrentState_Id = + 21621, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ShelvingState_CurrentState_Name = + 21622, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ShelvingState_CurrentState_Number = + 21623, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ShelvingState_CurrentState_EffectiveDisplayName = + 21624, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ShelvingState_LastTransition = + 21625, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ShelvingState_LastTransition_Id = + 21626, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ShelvingState_LastTransition_Name = + 21627, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ShelvingState_LastTransition_Number = + 21628, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ShelvingState_LastTransition_TransitionTime = + 21629, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ShelvingState_LastTransition_EffectiveTransitionTime = + 21630, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ShelvingState_AvailableStates = + 21631, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ShelvingState_AvailableTransitions = + 21632, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ShelvingState_UnshelveTime = + 21633, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ShelvingState_TimedShelve_InputArguments = + 21635, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_SuppressedOrShelved = + 21638, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_MaxTimeShelved = + 21639, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_AudibleEnabled = + 21640, CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_AudibleSound = 21641, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_AudibleSound_ListId = 21642, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_AudibleSound_AgencyId = 21643, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_AudibleSound_VersionId = 21644, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_AudibleSound_ListId = + 21642, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_AudibleSound_AgencyId = + 21643, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_AudibleSound_VersionId = + 21644, CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_SilenceState = 21645, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_SilenceState_Id = 21646, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_SilenceState_Name = 21647, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_SilenceState_Number = 21648, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_SilenceState_EffectiveDisplayName = 21649, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_SilenceState_TransitionTime = 21650, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_SilenceState_EffectiveTransitionTime = 21651, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_SilenceState_TrueState = 21652, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_SilenceState_FalseState = 21653, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_SilenceState_Id = + 21646, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_SilenceState_Name = + 21647, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_SilenceState_Number = + 21648, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_SilenceState_EffectiveDisplayName = + 21649, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_SilenceState_TransitionTime = + 21650, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_SilenceState_EffectiveTransitionTime = + 21651, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_SilenceState_TrueState = + 21652, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_SilenceState_FalseState = + 21653, CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_OnDelay = 21654, CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_OffDelay = 21655, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_FirstInGroupFlag = 21656, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_FirstInGroupFlag = + 21656, CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_LatchedState = 21658, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_LatchedState_Id = 21659, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_LatchedState_Name = 21660, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_LatchedState_Number = 21661, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_LatchedState_EffectiveDisplayName = 21662, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_LatchedState_TransitionTime = 21663, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_LatchedState_EffectiveTransitionTime = 21664, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_LatchedState_TrueState = 21665, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_LatchedState_FalseState = 21666, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_LatchedState_Id = + 21659, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_LatchedState_Name = + 21660, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_LatchedState_Number = + 21661, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_LatchedState_EffectiveDisplayName = + 21662, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_LatchedState_TransitionTime = + 21663, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_LatchedState_EffectiveTransitionTime = + 21664, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_LatchedState_TrueState = + 21665, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_LatchedState_FalseState = + 21666, CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ReAlarmTime = 21667, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ReAlarmRepeatCount = 21668, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ReAlarmRepeatCount = + 21668, CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_NormalState = 21675, CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_TrustListId = 21676, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_LastUpdateTime = 21677, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_UpdateFrequency = 21678, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_UpdateFrequency = 21679, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EventId = 21681, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EventType = 21682, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SourceNode = 21683, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SourceName = 21684, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Time = 21685, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ReceiveTime = 21686, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LocalTime = 21687, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Message = 21688, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Severity = 21689, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConditionClassId = 21690, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConditionClassName = 21691, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConditionSubClassId = 21692, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConditionSubClassName = 21693, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConditionName = 21694, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_BranchId = 21695, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Retain = 21696, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EnabledState = 21697, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EnabledState_Id = 21698, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EnabledState_Name = 21699, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EnabledState_Number = 21700, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EnabledState_EffectiveDisplayName = 21701, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EnabledState_TransitionTime = 21702, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EnabledState_EffectiveTransitionTime = 21703, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EnabledState_TrueState = 21704, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EnabledState_FalseState = 21705, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Quality = 21706, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Quality_SourceTimestamp = 21707, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LastSeverity = 21708, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LastSeverity_SourceTimestamp = 21709, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Comment = 21710, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Comment_SourceTimestamp = 21711, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ClientUserId = 21712, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AddComment_InputArguments = 21716, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AckedState = 21717, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AckedState_Id = 21718, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AckedState_Name = 21719, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AckedState_Number = 21720, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AckedState_EffectiveDisplayName = 21721, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AckedState_TransitionTime = 21722, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AckedState_EffectiveTransitionTime = 21723, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AckedState_TrueState = 21724, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AckedState_FalseState = 21725, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConfirmedState = 21726, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConfirmedState_Id = 21727, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConfirmedState_Name = 21728, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConfirmedState_Number = 21729, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConfirmedState_EffectiveDisplayName = 21730, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConfirmedState_TransitionTime = 21731, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConfirmedState_EffectiveTransitionTime = 21732, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConfirmedState_TrueState = 21733, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConfirmedState_FalseState = 21734, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Acknowledge_InputArguments = 21736, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Confirm_InputArguments = 21738, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ActiveState = 21739, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ActiveState_Id = 21740, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ActiveState_Name = 21741, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ActiveState_Number = 21742, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ActiveState_EffectiveDisplayName = 21743, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ActiveState_TransitionTime = 21744, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ActiveState_EffectiveTransitionTime = 21745, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ActiveState_TrueState = 21746, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ActiveState_FalseState = 21747, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_InputNode = 21748, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SuppressedState = 21749, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SuppressedState_Id = 21750, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SuppressedState_Name = 21751, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SuppressedState_Number = 21752, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SuppressedState_EffectiveDisplayName = 21753, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SuppressedState_TransitionTime = 21754, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SuppressedState_EffectiveTransitionTime = 21755, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SuppressedState_TrueState = 21756, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SuppressedState_FalseState = 21757, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_OutOfServiceState = 21758, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_OutOfServiceState_Id = 21759, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_OutOfServiceState_Name = 21760, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_OutOfServiceState_Number = 21761, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_OutOfServiceState_EffectiveDisplayName = 21762, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_OutOfServiceState_TransitionTime = 21763, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_OutOfServiceState_EffectiveTransitionTime = 21764, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_OutOfServiceState_TrueState = 21765, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_OutOfServiceState_FalseState = 21766, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_CurrentState = 21768, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_CurrentState_Id = 21769, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_CurrentState_Name = 21770, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_CurrentState_Number = 21771, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_CurrentState_EffectiveDisplayName = 21772, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_LastTransition = 21773, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_LastTransition_Id = 21774, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_LastTransition_Name = 21775, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_LastTransition_Number = 21776, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_LastTransition_TransitionTime = 21777, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_LastTransition_EffectiveTransitionTime = 21778, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_AvailableStates = 21779, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_AvailableTransitions = 21780, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_UnshelveTime = 21781, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_TimedShelve_InputArguments = 21783, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SuppressedOrShelved = 21786, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_MaxTimeShelved = 21787, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AudibleEnabled = 21788, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AudibleSound = 21789, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AudibleSound_ListId = 21790, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AudibleSound_AgencyId = 21791, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AudibleSound_VersionId = 21792, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SilenceState = 21793, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SilenceState_Id = 21794, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SilenceState_Name = 21795, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SilenceState_Number = 21796, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SilenceState_EffectiveDisplayName = 21797, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SilenceState_TransitionTime = 21798, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SilenceState_EffectiveTransitionTime = 21799, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SilenceState_TrueState = 21800, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SilenceState_FalseState = 21801, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_OnDelay = 21802, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_OffDelay = 21803, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_FirstInGroupFlag = 21804, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LatchedState = 21806, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LatchedState_Id = 21807, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LatchedState_Name = 21808, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LatchedState_Number = 21809, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LatchedState_EffectiveDisplayName = 21810, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LatchedState_TransitionTime = 21811, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LatchedState_EffectiveTransitionTime = 21812, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LatchedState_TrueState = 21813, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LatchedState_FalseState = 21814, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ReAlarmTime = 21815, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ReAlarmRepeatCount = 21816, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_NormalState = 21823, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ExpirationDate = 21824, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ExpirationLimit = 21825, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_CertificateType = 21826, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Certificate = 21827, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EventId = 21829, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EventType = 21830, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SourceNode = 21831, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SourceName = 21832, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Time = 21833, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ReceiveTime = 21834, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LocalTime = 21835, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Message = 21836, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Severity = 21837, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConditionClassId = 21838, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConditionClassName = 21839, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConditionSubClassId = 21840, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConditionSubClassName = 21841, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConditionName = 21842, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_BranchId = 21843, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Retain = 21844, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EnabledState = 21845, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EnabledState_Id = 21846, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EnabledState_Name = 21847, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EnabledState_Number = 21848, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EnabledState_EffectiveDisplayName = 21849, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EnabledState_TransitionTime = 21850, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EnabledState_EffectiveTransitionTime = 21851, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EnabledState_TrueState = 21852, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EnabledState_FalseState = 21853, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Quality = 21854, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Quality_SourceTimestamp = 21855, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LastSeverity = 21856, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LastSeverity_SourceTimestamp = 21857, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Comment = 21858, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Comment_SourceTimestamp = 21859, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ClientUserId = 21860, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AddComment_InputArguments = 21864, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AckedState = 21865, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AckedState_Id = 21866, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AckedState_Name = 21867, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AckedState_Number = 21868, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AckedState_EffectiveDisplayName = 21869, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AckedState_TransitionTime = 21870, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AckedState_EffectiveTransitionTime = 21871, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AckedState_TrueState = 21872, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AckedState_FalseState = 21873, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState = 21874, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState_Id = 21875, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState_Name = 21876, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState_Number = 21877, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState_EffectiveDisplayName = 21878, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState_TransitionTime = 21879, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState_EffectiveTransitionTime = 21880, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState_TrueState = 21881, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState_FalseState = 21882, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Acknowledge_InputArguments = 21884, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Confirm_InputArguments = 21886, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ActiveState = 21887, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ActiveState_Id = 21888, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ActiveState_Name = 21889, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ActiveState_Number = 21890, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ActiveState_EffectiveDisplayName = 21891, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ActiveState_TransitionTime = 21892, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ActiveState_EffectiveTransitionTime = 21893, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ActiveState_TrueState = 21894, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ActiveState_FalseState = 21895, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_InputNode = 21896, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState = 21897, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState_Id = 21898, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState_Name = 21899, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState_Number = 21900, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState_EffectiveDisplayName = 21901, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState_TransitionTime = 21902, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState_EffectiveTransitionTime = 21903, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState_TrueState = 21904, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState_FalseState = 21905, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState = 21906, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState_Id = 21907, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState_Name = 21908, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState_Number = 21909, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState_EffectiveDisplayName = 21910, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState_TransitionTime = 21911, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState_EffectiveTransitionTime = 21912, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState_TrueState = 21913, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState_FalseState = 21914, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_CurrentState = 21916, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_CurrentState_Id = 21917, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_CurrentState_Name = 21918, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_CurrentState_Number = 21919, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_CurrentState_EffectiveDisplayName = 21920, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_LastTransition = 21921, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_LastTransition_Id = 21922, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_LastTransition_Name = 21923, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_LastTransition_Number = 21924, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_LastTransition_TransitionTime = 21925, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_LastTransition_EffectiveTransitionTime = 21926, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_AvailableStates = 21927, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_AvailableTransitions = 21928, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_UnshelveTime = 21929, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_TimedShelve_InputArguments = 21931, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SuppressedOrShelved = 21934, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_MaxTimeShelved = 21935, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AudibleEnabled = 21936, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AudibleSound = 21937, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AudibleSound_ListId = 21938, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AudibleSound_AgencyId = 21939, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AudibleSound_VersionId = 21940, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SilenceState = 21941, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SilenceState_Id = 21942, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SilenceState_Name = 21943, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SilenceState_Number = 21944, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SilenceState_EffectiveDisplayName = 21945, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SilenceState_TransitionTime = 21946, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SilenceState_EffectiveTransitionTime = 21947, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SilenceState_TrueState = 21948, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SilenceState_FalseState = 21949, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_OnDelay = 21950, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_OffDelay = 21951, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_FirstInGroupFlag = 21952, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LatchedState = 21954, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LatchedState_Id = 21955, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LatchedState_Name = 21956, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LatchedState_Number = 21957, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LatchedState_EffectiveDisplayName = 21958, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LatchedState_TransitionTime = 21959, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LatchedState_EffectiveTransitionTime = 21960, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LatchedState_TrueState = 21961, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LatchedState_FalseState = 21962, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ReAlarmTime = 21963, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ReAlarmRepeatCount = 21964, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_NormalState = 21971, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_TrustListId = 21972, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LastUpdateTime = 21973, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_UpdateFrequency = 21974, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_LastUpdateTime = + 21677, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_UpdateFrequency = + 21678, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_UpdateFrequency = + 21679, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EventId = + 21681, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EventType = + 21682, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SourceNode = + 21683, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SourceName = + 21684, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Time = + 21685, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ReceiveTime = + 21686, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LocalTime = + 21687, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Message = + 21688, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Severity = + 21689, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConditionClassId = + 21690, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConditionClassName = + 21691, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConditionSubClassId = + 21692, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConditionSubClassName = + 21693, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConditionName = + 21694, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_BranchId = + 21695, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Retain = + 21696, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EnabledState = + 21697, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EnabledState_Id = + 21698, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EnabledState_Name = + 21699, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EnabledState_Number = + 21700, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EnabledState_EffectiveDisplayName = + 21701, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EnabledState_TransitionTime = + 21702, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EnabledState_EffectiveTransitionTime = + 21703, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EnabledState_TrueState = + 21704, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EnabledState_FalseState = + 21705, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Quality = + 21706, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Quality_SourceTimestamp = + 21707, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LastSeverity = + 21708, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LastSeverity_SourceTimestamp = + 21709, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Comment = + 21710, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Comment_SourceTimestamp = + 21711, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ClientUserId = + 21712, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AddComment_InputArguments = + 21716, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AckedState = + 21717, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AckedState_Id = + 21718, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AckedState_Name = + 21719, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AckedState_Number = + 21720, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AckedState_EffectiveDisplayName = + 21721, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AckedState_TransitionTime = + 21722, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AckedState_EffectiveTransitionTime = + 21723, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AckedState_TrueState = + 21724, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AckedState_FalseState = + 21725, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConfirmedState = + 21726, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConfirmedState_Id = + 21727, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConfirmedState_Name = + 21728, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConfirmedState_Number = + 21729, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConfirmedState_EffectiveDisplayName = + 21730, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConfirmedState_TransitionTime = + 21731, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConfirmedState_EffectiveTransitionTime = + 21732, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConfirmedState_TrueState = + 21733, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConfirmedState_FalseState = + 21734, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Acknowledge_InputArguments = + 21736, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Confirm_InputArguments = + 21738, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ActiveState = + 21739, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ActiveState_Id = + 21740, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ActiveState_Name = + 21741, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ActiveState_Number = + 21742, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ActiveState_EffectiveDisplayName = + 21743, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ActiveState_TransitionTime = + 21744, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ActiveState_EffectiveTransitionTime = + 21745, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ActiveState_TrueState = + 21746, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ActiveState_FalseState = + 21747, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_InputNode = + 21748, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SuppressedState = + 21749, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SuppressedState_Id = + 21750, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SuppressedState_Name = + 21751, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SuppressedState_Number = + 21752, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SuppressedState_EffectiveDisplayName = + 21753, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SuppressedState_TransitionTime = + 21754, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SuppressedState_EffectiveTransitionTime = + 21755, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SuppressedState_TrueState = + 21756, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SuppressedState_FalseState = + 21757, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_OutOfServiceState = + 21758, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_OutOfServiceState_Id = + 21759, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_OutOfServiceState_Name = + 21760, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_OutOfServiceState_Number = + 21761, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_OutOfServiceState_EffectiveDisplayName = + 21762, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_OutOfServiceState_TransitionTime = + 21763, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_OutOfServiceState_EffectiveTransitionTime = + 21764, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_OutOfServiceState_TrueState = + 21765, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_OutOfServiceState_FalseState = + 21766, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_CurrentState = + 21768, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_CurrentState_Id = + 21769, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_CurrentState_Name = + 21770, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_CurrentState_Number = + 21771, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_CurrentState_EffectiveDisplayName = + 21772, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_LastTransition = + 21773, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_LastTransition_Id = + 21774, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_LastTransition_Name = + 21775, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_LastTransition_Number = + 21776, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_LastTransition_TransitionTime = + 21777, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_LastTransition_EffectiveTransitionTime = + 21778, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_AvailableStates = + 21779, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_AvailableTransitions = + 21780, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_UnshelveTime = + 21781, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_TimedShelve_InputArguments = + 21783, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SuppressedOrShelved = + 21786, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_MaxTimeShelved = + 21787, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AudibleEnabled = + 21788, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AudibleSound = + 21789, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AudibleSound_ListId = + 21790, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AudibleSound_AgencyId = + 21791, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AudibleSound_VersionId = + 21792, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SilenceState = + 21793, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SilenceState_Id = + 21794, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SilenceState_Name = + 21795, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SilenceState_Number = + 21796, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SilenceState_EffectiveDisplayName = + 21797, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SilenceState_TransitionTime = + 21798, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SilenceState_EffectiveTransitionTime = + 21799, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SilenceState_TrueState = + 21800, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SilenceState_FalseState = + 21801, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_OnDelay = + 21802, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_OffDelay = + 21803, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_FirstInGroupFlag = + 21804, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LatchedState = + 21806, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LatchedState_Id = + 21807, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LatchedState_Name = + 21808, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LatchedState_Number = + 21809, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LatchedState_EffectiveDisplayName = + 21810, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LatchedState_TransitionTime = + 21811, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LatchedState_EffectiveTransitionTime = + 21812, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LatchedState_TrueState = + 21813, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LatchedState_FalseState = + 21814, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ReAlarmTime = + 21815, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ReAlarmRepeatCount = + 21816, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_NormalState = + 21823, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ExpirationDate = + 21824, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ExpirationLimit = + 21825, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_CertificateType = + 21826, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Certificate = + 21827, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EventId = + 21829, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EventType = + 21830, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SourceNode = + 21831, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SourceName = + 21832, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Time = + 21833, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ReceiveTime = + 21834, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LocalTime = + 21835, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Message = + 21836, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Severity = + 21837, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConditionClassId = + 21838, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConditionClassName = + 21839, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConditionSubClassId = + 21840, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConditionSubClassName = + 21841, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConditionName = + 21842, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_BranchId = + 21843, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Retain = + 21844, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EnabledState = + 21845, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EnabledState_Id = + 21846, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EnabledState_Name = + 21847, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EnabledState_Number = + 21848, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EnabledState_EffectiveDisplayName = + 21849, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EnabledState_TransitionTime = + 21850, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EnabledState_EffectiveTransitionTime = + 21851, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EnabledState_TrueState = + 21852, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EnabledState_FalseState = + 21853, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Quality = + 21854, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Quality_SourceTimestamp = + 21855, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LastSeverity = + 21856, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LastSeverity_SourceTimestamp = + 21857, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Comment = + 21858, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Comment_SourceTimestamp = + 21859, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ClientUserId = + 21860, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AddComment_InputArguments = + 21864, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AckedState = + 21865, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AckedState_Id = + 21866, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AckedState_Name = + 21867, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AckedState_Number = + 21868, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AckedState_EffectiveDisplayName = + 21869, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AckedState_TransitionTime = + 21870, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AckedState_EffectiveTransitionTime = + 21871, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AckedState_TrueState = + 21872, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AckedState_FalseState = + 21873, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState = + 21874, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState_Id = + 21875, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState_Name = + 21876, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState_Number = + 21877, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState_EffectiveDisplayName = + 21878, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState_TransitionTime = + 21879, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState_EffectiveTransitionTime = + 21880, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState_TrueState = + 21881, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState_FalseState = + 21882, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Acknowledge_InputArguments = + 21884, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Confirm_InputArguments = + 21886, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ActiveState = + 21887, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ActiveState_Id = + 21888, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ActiveState_Name = + 21889, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ActiveState_Number = + 21890, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ActiveState_EffectiveDisplayName = + 21891, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ActiveState_TransitionTime = + 21892, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ActiveState_EffectiveTransitionTime = + 21893, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ActiveState_TrueState = + 21894, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ActiveState_FalseState = + 21895, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_InputNode = + 21896, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState = + 21897, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState_Id = + 21898, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState_Name = + 21899, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState_Number = + 21900, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState_EffectiveDisplayName = + 21901, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState_TransitionTime = + 21902, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState_EffectiveTransitionTime = + 21903, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState_TrueState = + 21904, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState_FalseState = + 21905, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState = + 21906, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState_Id = + 21907, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState_Name = + 21908, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState_Number = + 21909, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState_EffectiveDisplayName = + 21910, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState_TransitionTime = + 21911, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState_EffectiveTransitionTime = + 21912, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState_TrueState = + 21913, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState_FalseState = + 21914, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_CurrentState = + 21916, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_CurrentState_Id = + 21917, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_CurrentState_Name = + 21918, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_CurrentState_Number = + 21919, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_CurrentState_EffectiveDisplayName = + 21920, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_LastTransition = + 21921, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_LastTransition_Id = + 21922, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_LastTransition_Name = + 21923, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_LastTransition_Number = + 21924, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_LastTransition_TransitionTime = + 21925, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_LastTransition_EffectiveTransitionTime = + 21926, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_AvailableStates = + 21927, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_AvailableTransitions = + 21928, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_UnshelveTime = + 21929, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_TimedShelve_InputArguments = + 21931, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SuppressedOrShelved = + 21934, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_MaxTimeShelved = + 21935, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AudibleEnabled = + 21936, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AudibleSound = + 21937, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AudibleSound_ListId = + 21938, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AudibleSound_AgencyId = + 21939, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AudibleSound_VersionId = + 21940, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SilenceState = + 21941, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SilenceState_Id = + 21942, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SilenceState_Name = + 21943, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SilenceState_Number = + 21944, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SilenceState_EffectiveDisplayName = + 21945, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SilenceState_TransitionTime = + 21946, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SilenceState_EffectiveTransitionTime = + 21947, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SilenceState_TrueState = + 21948, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SilenceState_FalseState = + 21949, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_OnDelay = + 21950, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_OffDelay = + 21951, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_FirstInGroupFlag = + 21952, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LatchedState = + 21954, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LatchedState_Id = + 21955, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LatchedState_Name = + 21956, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LatchedState_Number = + 21957, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LatchedState_EffectiveDisplayName = + 21958, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LatchedState_TransitionTime = + 21959, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LatchedState_EffectiveTransitionTime = + 21960, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LatchedState_TrueState = + 21961, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LatchedState_FalseState = + 21962, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ReAlarmTime = + 21963, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ReAlarmRepeatCount = + 21964, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_NormalState = + 21971, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_TrustListId = + 21972, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LastUpdateTime = + 21973, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_UpdateFrequency = + 21974, ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_UpdateFrequency = 21975, ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EventId = 21977, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EventType = 21978, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SourceNode = 21979, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SourceName = 21980, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EventType = + 21978, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SourceNode = + 21979, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SourceName = + 21980, ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Time = 21981, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ReceiveTime = 21982, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LocalTime = 21983, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ReceiveTime = + 21982, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LocalTime = + 21983, ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Message = 21984, ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Severity = 21985, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConditionClassId = 21986, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConditionClassName = 21987, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConditionSubClassId = 21988, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConditionSubClassName = 21989, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConditionName = 21990, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConditionClassId = + 21986, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConditionClassName = + 21987, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConditionSubClassId = + 21988, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConditionSubClassName = + 21989, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConditionName = + 21990, ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_BranchId = 21991, ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Retain = 21992, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EnabledState = 21993, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EnabledState_Id = 21994, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EnabledState_Name = 21995, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EnabledState_Number = 21996, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EnabledState_EffectiveDisplayName = 21997, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EnabledState_TransitionTime = 21998, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EnabledState_EffectiveTransitionTime = 21999, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EnabledState_TrueState = 22000, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EnabledState_FalseState = 22001, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EnabledState = + 21993, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EnabledState_Id = + 21994, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EnabledState_Name = + 21995, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EnabledState_Number = + 21996, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EnabledState_EffectiveDisplayName = + 21997, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EnabledState_TransitionTime = + 21998, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EnabledState_EffectiveTransitionTime = + 21999, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EnabledState_TrueState = + 22000, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EnabledState_FalseState = + 22001, ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Quality = 22002, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Quality_SourceTimestamp = 22003, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LastSeverity = 22004, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LastSeverity_SourceTimestamp = 22005, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Quality_SourceTimestamp = + 22003, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LastSeverity = + 22004, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LastSeverity_SourceTimestamp = + 22005, ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Comment = 22006, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Comment_SourceTimestamp = 22007, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ClientUserId = 22008, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AddComment_InputArguments = 22012, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AckedState = 22013, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AckedState_Id = 22014, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AckedState_Name = 22015, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AckedState_Number = 22016, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AckedState_EffectiveDisplayName = 22017, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AckedState_TransitionTime = 22018, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AckedState_EffectiveTransitionTime = 22019, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AckedState_TrueState = 22020, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AckedState_FalseState = 22021, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConfirmedState = 22022, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConfirmedState_Id = 22023, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConfirmedState_Name = 22024, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConfirmedState_Number = 22025, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConfirmedState_EffectiveDisplayName = 22026, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConfirmedState_TransitionTime = 22027, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConfirmedState_EffectiveTransitionTime = 22028, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConfirmedState_TrueState = 22029, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConfirmedState_FalseState = 22030, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Acknowledge_InputArguments = 22032, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Confirm_InputArguments = 22034, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ActiveState = 22035, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ActiveState_Id = 22036, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ActiveState_Name = 22037, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ActiveState_Number = 22038, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ActiveState_EffectiveDisplayName = 22039, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ActiveState_TransitionTime = 22040, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ActiveState_EffectiveTransitionTime = 22041, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ActiveState_TrueState = 22042, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ActiveState_FalseState = 22043, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_InputNode = 22044, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SuppressedState = 22045, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SuppressedState_Id = 22046, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SuppressedState_Name = 22047, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SuppressedState_Number = 22048, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SuppressedState_EffectiveDisplayName = 22049, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SuppressedState_TransitionTime = 22050, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SuppressedState_EffectiveTransitionTime = 22051, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SuppressedState_TrueState = 22052, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SuppressedState_FalseState = 22053, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_OutOfServiceState = 22054, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_OutOfServiceState_Id = 22055, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_OutOfServiceState_Name = 22056, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_OutOfServiceState_Number = 22057, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_OutOfServiceState_EffectiveDisplayName = 22058, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_OutOfServiceState_TransitionTime = 22059, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_OutOfServiceState_EffectiveTransitionTime = 22060, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_OutOfServiceState_TrueState = 22061, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_OutOfServiceState_FalseState = 22062, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_CurrentState = 22064, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_CurrentState_Id = 22065, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_CurrentState_Name = 22066, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_CurrentState_Number = 22067, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_CurrentState_EffectiveDisplayName = 22068, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_LastTransition = 22069, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_LastTransition_Id = 22070, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_LastTransition_Name = 22071, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_LastTransition_Number = 22072, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_LastTransition_TransitionTime = 22073, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_LastTransition_EffectiveTransitionTime = 22074, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_AvailableStates = 22075, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_AvailableTransitions = 22076, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_UnshelveTime = 22077, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_TimedShelve_InputArguments = 22079, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SuppressedOrShelved = 22082, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_MaxTimeShelved = 22083, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AudibleEnabled = 22084, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AudibleSound = 22085, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AudibleSound_ListId = 22086, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AudibleSound_AgencyId = 22087, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AudibleSound_VersionId = 22088, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SilenceState = 22089, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SilenceState_Id = 22090, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SilenceState_Name = 22091, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SilenceState_Number = 22092, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SilenceState_EffectiveDisplayName = 22093, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SilenceState_TransitionTime = 22094, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SilenceState_EffectiveTransitionTime = 22095, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SilenceState_TrueState = 22096, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SilenceState_FalseState = 22097, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Comment_SourceTimestamp = + 22007, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ClientUserId = + 22008, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AddComment_InputArguments = + 22012, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AckedState = + 22013, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AckedState_Id = + 22014, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AckedState_Name = + 22015, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AckedState_Number = + 22016, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AckedState_EffectiveDisplayName = + 22017, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AckedState_TransitionTime = + 22018, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AckedState_EffectiveTransitionTime = + 22019, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AckedState_TrueState = + 22020, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AckedState_FalseState = + 22021, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConfirmedState = + 22022, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConfirmedState_Id = + 22023, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConfirmedState_Name = + 22024, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConfirmedState_Number = + 22025, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConfirmedState_EffectiveDisplayName = + 22026, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConfirmedState_TransitionTime = + 22027, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConfirmedState_EffectiveTransitionTime = + 22028, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConfirmedState_TrueState = + 22029, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConfirmedState_FalseState = + 22030, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Acknowledge_InputArguments = + 22032, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Confirm_InputArguments = + 22034, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ActiveState = + 22035, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ActiveState_Id = + 22036, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ActiveState_Name = + 22037, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ActiveState_Number = + 22038, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ActiveState_EffectiveDisplayName = + 22039, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ActiveState_TransitionTime = + 22040, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ActiveState_EffectiveTransitionTime = + 22041, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ActiveState_TrueState = + 22042, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ActiveState_FalseState = + 22043, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_InputNode = + 22044, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SuppressedState = + 22045, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SuppressedState_Id = + 22046, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SuppressedState_Name = + 22047, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SuppressedState_Number = + 22048, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SuppressedState_EffectiveDisplayName = + 22049, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SuppressedState_TransitionTime = + 22050, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SuppressedState_EffectiveTransitionTime = + 22051, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SuppressedState_TrueState = + 22052, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SuppressedState_FalseState = + 22053, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_OutOfServiceState = + 22054, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_OutOfServiceState_Id = + 22055, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_OutOfServiceState_Name = + 22056, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_OutOfServiceState_Number = + 22057, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_OutOfServiceState_EffectiveDisplayName = + 22058, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_OutOfServiceState_TransitionTime = + 22059, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_OutOfServiceState_EffectiveTransitionTime = + 22060, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_OutOfServiceState_TrueState = + 22061, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_OutOfServiceState_FalseState = + 22062, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_CurrentState = + 22064, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_CurrentState_Id = + 22065, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_CurrentState_Name = + 22066, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_CurrentState_Number = + 22067, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_CurrentState_EffectiveDisplayName = + 22068, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_LastTransition = + 22069, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_LastTransition_Id = + 22070, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_LastTransition_Name = + 22071, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_LastTransition_Number = + 22072, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_LastTransition_TransitionTime = + 22073, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_LastTransition_EffectiveTransitionTime = + 22074, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_AvailableStates = + 22075, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_AvailableTransitions = + 22076, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_UnshelveTime = + 22077, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_TimedShelve_InputArguments = + 22079, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SuppressedOrShelved = + 22082, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_MaxTimeShelved = + 22083, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AudibleEnabled = + 22084, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AudibleSound = + 22085, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AudibleSound_ListId = + 22086, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AudibleSound_AgencyId = + 22087, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AudibleSound_VersionId = + 22088, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SilenceState = + 22089, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SilenceState_Id = + 22090, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SilenceState_Name = + 22091, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SilenceState_Number = + 22092, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SilenceState_EffectiveDisplayName = + 22093, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SilenceState_TransitionTime = + 22094, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SilenceState_EffectiveTransitionTime = + 22095, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SilenceState_TrueState = + 22096, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SilenceState_FalseState = + 22097, ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_OnDelay = 22098, ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_OffDelay = 22099, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_FirstInGroupFlag = 22100, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LatchedState = 22102, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LatchedState_Id = 22103, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LatchedState_Name = 22104, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LatchedState_Number = 22105, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LatchedState_EffectiveDisplayName = 22106, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LatchedState_TransitionTime = 22107, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LatchedState_EffectiveTransitionTime = 22108, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LatchedState_TrueState = 22109, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LatchedState_FalseState = 22110, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ReAlarmTime = 22111, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ReAlarmRepeatCount = 22112, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_NormalState = 22119, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ExpirationDate = 22120, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ExpirationLimit = 22121, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_CertificateType = 22122, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Certificate = 22123, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_FirstInGroupFlag = + 22100, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LatchedState = + 22102, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LatchedState_Id = + 22103, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LatchedState_Name = + 22104, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LatchedState_Number = + 22105, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LatchedState_EffectiveDisplayName = + 22106, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LatchedState_TransitionTime = + 22107, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LatchedState_EffectiveTransitionTime = + 22108, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LatchedState_TrueState = + 22109, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LatchedState_FalseState = + 22110, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ReAlarmTime = + 22111, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ReAlarmRepeatCount = + 22112, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_NormalState = + 22119, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ExpirationDate = + 22120, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ExpirationLimit = + 22121, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_CertificateType = + 22122, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Certificate = + 22123, ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EventId = 22125, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EventType = 22126, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SourceNode = 22127, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SourceName = 22128, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EventType = + 22126, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SourceNode = + 22127, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SourceName = + 22128, ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Time = 22129, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ReceiveTime = 22130, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LocalTime = 22131, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ReceiveTime = + 22130, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LocalTime = + 22131, ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Message = 22132, ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Severity = 22133, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConditionClassId = 22134, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConditionClassName = 22135, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConditionSubClassId = 22136, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConditionSubClassName = 22137, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConditionName = 22138, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConditionClassId = + 22134, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConditionClassName = + 22135, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConditionSubClassId = + 22136, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConditionSubClassName = + 22137, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConditionName = + 22138, ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_BranchId = 22139, ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Retain = 22140, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EnabledState = 22141, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EnabledState_Id = 22142, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EnabledState_Name = 22143, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EnabledState_Number = 22144, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EnabledState_EffectiveDisplayName = 22145, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EnabledState_TransitionTime = 22146, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EnabledState_EffectiveTransitionTime = 22147, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EnabledState_TrueState = 22148, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EnabledState_FalseState = 22149, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EnabledState = + 22141, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EnabledState_Id = + 22142, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EnabledState_Name = + 22143, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EnabledState_Number = + 22144, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EnabledState_EffectiveDisplayName = + 22145, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EnabledState_TransitionTime = + 22146, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EnabledState_EffectiveTransitionTime = + 22147, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EnabledState_TrueState = + 22148, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EnabledState_FalseState = + 22149, ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Quality = 22150, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Quality_SourceTimestamp = 22151, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LastSeverity = 22152, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LastSeverity_SourceTimestamp = 22153, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Quality_SourceTimestamp = + 22151, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LastSeverity = + 22152, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LastSeverity_SourceTimestamp = + 22153, ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Comment = 22154, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Comment_SourceTimestamp = 22155, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ClientUserId = 22156, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AddComment_InputArguments = 22160, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AckedState = 22161, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AckedState_Id = 22162, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AckedState_Name = 22163, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AckedState_Number = 22164, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AckedState_EffectiveDisplayName = 22165, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AckedState_TransitionTime = 22166, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AckedState_EffectiveTransitionTime = 22167, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AckedState_TrueState = 22168, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AckedState_FalseState = 22169, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConfirmedState = 22170, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConfirmedState_Id = 22171, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConfirmedState_Name = 22172, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConfirmedState_Number = 22173, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConfirmedState_EffectiveDisplayName = 22174, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConfirmedState_TransitionTime = 22175, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConfirmedState_EffectiveTransitionTime = 22176, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConfirmedState_TrueState = 22177, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConfirmedState_FalseState = 22178, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Acknowledge_InputArguments = 22180, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Confirm_InputArguments = 22182, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ActiveState = 22183, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ActiveState_Id = 22184, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ActiveState_Name = 22185, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ActiveState_Number = 22186, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ActiveState_EffectiveDisplayName = 22187, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ActiveState_TransitionTime = 22188, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ActiveState_EffectiveTransitionTime = 22189, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ActiveState_TrueState = 22190, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ActiveState_FalseState = 22191, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_InputNode = 22192, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SuppressedState = 22193, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SuppressedState_Id = 22194, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SuppressedState_Name = 22195, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SuppressedState_Number = 22196, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SuppressedState_EffectiveDisplayName = 22197, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SuppressedState_TransitionTime = 22198, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SuppressedState_EffectiveTransitionTime = 22199, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SuppressedState_TrueState = 22200, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SuppressedState_FalseState = 22201, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_OutOfServiceState = 22202, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_OutOfServiceState_Id = 22203, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_OutOfServiceState_Name = 22204, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_OutOfServiceState_Number = 22205, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_OutOfServiceState_EffectiveDisplayName = 22206, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_OutOfServiceState_TransitionTime = 22207, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_OutOfServiceState_EffectiveTransitionTime = 22208, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_OutOfServiceState_TrueState = 22209, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_OutOfServiceState_FalseState = 22210, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_CurrentState = 22212, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_CurrentState_Id = 22213, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_CurrentState_Name = 22214, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_CurrentState_Number = 22215, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_CurrentState_EffectiveDisplayName = 22216, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_LastTransition = 22217, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_LastTransition_Id = 22218, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_LastTransition_Name = 22219, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_LastTransition_Number = 22220, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_LastTransition_TransitionTime = 22221, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_LastTransition_EffectiveTransitionTime = 22222, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_AvailableStates = 22223, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_AvailableTransitions = 22224, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_UnshelveTime = 22225, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_TimedShelve_InputArguments = 22227, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SuppressedOrShelved = 22230, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_MaxTimeShelved = 22231, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AudibleEnabled = 22232, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AudibleSound = 22233, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AudibleSound_ListId = 22234, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AudibleSound_AgencyId = 22235, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AudibleSound_VersionId = 22236, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SilenceState = 22237, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SilenceState_Id = 22238, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SilenceState_Name = 22239, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SilenceState_Number = 22240, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SilenceState_EffectiveDisplayName = 22241, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SilenceState_TransitionTime = 22242, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SilenceState_EffectiveTransitionTime = 22243, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SilenceState_TrueState = 22244, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SilenceState_FalseState = 22245, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Comment_SourceTimestamp = + 22155, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ClientUserId = + 22156, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AddComment_InputArguments = + 22160, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AckedState = + 22161, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AckedState_Id = + 22162, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AckedState_Name = + 22163, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AckedState_Number = + 22164, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AckedState_EffectiveDisplayName = + 22165, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AckedState_TransitionTime = + 22166, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AckedState_EffectiveTransitionTime = + 22167, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AckedState_TrueState = + 22168, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AckedState_FalseState = + 22169, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConfirmedState = + 22170, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConfirmedState_Id = + 22171, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConfirmedState_Name = + 22172, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConfirmedState_Number = + 22173, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConfirmedState_EffectiveDisplayName = + 22174, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConfirmedState_TransitionTime = + 22175, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConfirmedState_EffectiveTransitionTime = + 22176, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConfirmedState_TrueState = + 22177, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConfirmedState_FalseState = + 22178, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Acknowledge_InputArguments = + 22180, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Confirm_InputArguments = + 22182, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ActiveState = + 22183, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ActiveState_Id = + 22184, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ActiveState_Name = + 22185, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ActiveState_Number = + 22186, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ActiveState_EffectiveDisplayName = + 22187, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ActiveState_TransitionTime = + 22188, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ActiveState_EffectiveTransitionTime = + 22189, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ActiveState_TrueState = + 22190, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ActiveState_FalseState = + 22191, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_InputNode = + 22192, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SuppressedState = + 22193, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SuppressedState_Id = + 22194, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SuppressedState_Name = + 22195, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SuppressedState_Number = + 22196, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SuppressedState_EffectiveDisplayName = + 22197, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SuppressedState_TransitionTime = + 22198, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SuppressedState_EffectiveTransitionTime = + 22199, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SuppressedState_TrueState = + 22200, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SuppressedState_FalseState = + 22201, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_OutOfServiceState = + 22202, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_OutOfServiceState_Id = + 22203, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_OutOfServiceState_Name = + 22204, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_OutOfServiceState_Number = + 22205, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_OutOfServiceState_EffectiveDisplayName = + 22206, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_OutOfServiceState_TransitionTime = + 22207, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_OutOfServiceState_EffectiveTransitionTime = + 22208, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_OutOfServiceState_TrueState = + 22209, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_OutOfServiceState_FalseState = + 22210, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_CurrentState = + 22212, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_CurrentState_Id = + 22213, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_CurrentState_Name = + 22214, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_CurrentState_Number = + 22215, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_CurrentState_EffectiveDisplayName = + 22216, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_LastTransition = + 22217, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_LastTransition_Id = + 22218, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_LastTransition_Name = + 22219, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_LastTransition_Number = + 22220, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_LastTransition_TransitionTime = + 22221, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_LastTransition_EffectiveTransitionTime = + 22222, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_AvailableStates = + 22223, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_AvailableTransitions = + 22224, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_UnshelveTime = + 22225, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_TimedShelve_InputArguments = + 22227, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SuppressedOrShelved = + 22230, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_MaxTimeShelved = + 22231, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AudibleEnabled = + 22232, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AudibleSound = + 22233, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AudibleSound_ListId = + 22234, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AudibleSound_AgencyId = + 22235, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AudibleSound_VersionId = + 22236, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SilenceState = + 22237, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SilenceState_Id = + 22238, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SilenceState_Name = + 22239, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SilenceState_Number = + 22240, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SilenceState_EffectiveDisplayName = + 22241, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SilenceState_TransitionTime = + 22242, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SilenceState_EffectiveTransitionTime = + 22243, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SilenceState_TrueState = + 22244, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SilenceState_FalseState = + 22245, ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_OnDelay = 22246, ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_OffDelay = 22247, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_FirstInGroupFlag = 22248, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LatchedState = 22250, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LatchedState_Id = 22251, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LatchedState_Name = 22252, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LatchedState_Number = 22253, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LatchedState_EffectiveDisplayName = 22254, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LatchedState_TransitionTime = 22255, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LatchedState_EffectiveTransitionTime = 22256, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LatchedState_TrueState = 22257, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LatchedState_FalseState = 22258, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ReAlarmTime = 22259, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ReAlarmRepeatCount = 22260, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_NormalState = 22267, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_TrustListId = 22268, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LastUpdateTime = 22269, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_UpdateFrequency = 22270, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_UpdateFrequency = 22271, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EventId = 22273, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EventType = 22274, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SourceNode = 22275, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SourceName = 22276, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_FirstInGroupFlag = + 22248, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LatchedState = + 22250, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LatchedState_Id = + 22251, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LatchedState_Name = + 22252, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LatchedState_Number = + 22253, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LatchedState_EffectiveDisplayName = + 22254, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LatchedState_TransitionTime = + 22255, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LatchedState_EffectiveTransitionTime = + 22256, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LatchedState_TrueState = + 22257, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LatchedState_FalseState = + 22258, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ReAlarmTime = + 22259, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ReAlarmRepeatCount = + 22260, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_NormalState = + 22267, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_TrustListId = + 22268, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LastUpdateTime = + 22269, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_UpdateFrequency = + 22270, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_UpdateFrequency = + 22271, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EventId = + 22273, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EventType = + 22274, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SourceNode = + 22275, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SourceName = + 22276, ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Time = 22277, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ReceiveTime = 22278, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LocalTime = 22279, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Message = 22280, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Severity = 22281, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConditionClassId = 22282, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConditionClassName = 22283, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConditionSubClassId = 22284, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConditionSubClassName = 22285, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConditionName = 22286, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_BranchId = 22287, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Retain = 22288, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EnabledState = 22289, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EnabledState_Id = 22290, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EnabledState_Name = 22291, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EnabledState_Number = 22292, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EnabledState_EffectiveDisplayName = 22293, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EnabledState_TransitionTime = 22294, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EnabledState_EffectiveTransitionTime = 22295, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EnabledState_TrueState = 22296, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EnabledState_FalseState = 22297, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Quality = 22298, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Quality_SourceTimestamp = 22299, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LastSeverity = 22300, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LastSeverity_SourceTimestamp = 22301, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Comment = 22302, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Comment_SourceTimestamp = 22303, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ClientUserId = 22304, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AddComment_InputArguments = 22308, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AckedState = 22309, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AckedState_Id = 22310, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AckedState_Name = 22311, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AckedState_Number = 22312, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AckedState_EffectiveDisplayName = 22313, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AckedState_TransitionTime = 22314, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AckedState_EffectiveTransitionTime = 22315, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AckedState_TrueState = 22316, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AckedState_FalseState = 22317, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConfirmedState = 22318, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConfirmedState_Id = 22319, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConfirmedState_Name = 22320, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConfirmedState_Number = 22321, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConfirmedState_EffectiveDisplayName = 22322, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConfirmedState_TransitionTime = 22323, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConfirmedState_EffectiveTransitionTime = 22324, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConfirmedState_TrueState = 22325, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConfirmedState_FalseState = 22326, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Acknowledge_InputArguments = 22328, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Confirm_InputArguments = 22330, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ActiveState = 22331, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ActiveState_Id = 22332, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ActiveState_Name = 22333, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ActiveState_Number = 22334, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ActiveState_EffectiveDisplayName = 22335, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ActiveState_TransitionTime = 22336, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ActiveState_EffectiveTransitionTime = 22337, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ActiveState_TrueState = 22338, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ActiveState_FalseState = 22339, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_InputNode = 22340, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SuppressedState = 22341, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SuppressedState_Id = 22342, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SuppressedState_Name = 22343, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SuppressedState_Number = 22344, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SuppressedState_EffectiveDisplayName = 22345, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SuppressedState_TransitionTime = 22346, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SuppressedState_EffectiveTransitionTime = 22347, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SuppressedState_TrueState = 22348, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SuppressedState_FalseState = 22349, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState = 22350, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState_Id = 22351, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState_Name = 22352, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState_Number = 22353, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState_EffectiveDisplayName = 22354, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState_TransitionTime = 22355, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState_EffectiveTransitionTime = 22356, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState_TrueState = 22357, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState_FalseState = 22358, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_CurrentState = 22360, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_CurrentState_Id = 22361, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_CurrentState_Name = 22362, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_CurrentState_Number = 22363, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_CurrentState_EffectiveDisplayName = 22364, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_LastTransition = 22365, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_LastTransition_Id = 22366, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_LastTransition_Name = 22367, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_LastTransition_Number = 22368, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_LastTransition_TransitionTime = 22369, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_LastTransition_EffectiveTransitionTime = 22370, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_AvailableStates = 22371, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_AvailableTransitions = 22372, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_UnshelveTime = 22373, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_TimedShelve_InputArguments = 22375, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SuppressedOrShelved = 22378, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_MaxTimeShelved = 22379, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AudibleEnabled = 22380, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AudibleSound = 22381, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AudibleSound_ListId = 22382, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AudibleSound_AgencyId = 22383, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AudibleSound_VersionId = 22384, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SilenceState = 22385, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SilenceState_Id = 22386, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SilenceState_Name = 22387, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SilenceState_Number = 22388, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SilenceState_EffectiveDisplayName = 22389, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SilenceState_TransitionTime = 22390, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SilenceState_EffectiveTransitionTime = 22391, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SilenceState_TrueState = 22392, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SilenceState_FalseState = 22393, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_OnDelay = 22394, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_OffDelay = 22395, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_FirstInGroupFlag = 22396, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LatchedState = 22398, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LatchedState_Id = 22399, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LatchedState_Name = 22400, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LatchedState_Number = 22401, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LatchedState_EffectiveDisplayName = 22402, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LatchedState_TransitionTime = 22403, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LatchedState_EffectiveTransitionTime = 22404, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LatchedState_TrueState = 22405, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LatchedState_FalseState = 22406, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ReAlarmTime = 22407, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ReAlarmRepeatCount = 22408, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_NormalState = 22415, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ExpirationDate = 22416, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ExpirationLimit = 22417, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_CertificateType = 22418, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Certificate = 22419, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EventId = 22421, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EventType = 22422, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SourceNode = 22423, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SourceName = 22424, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ReceiveTime = + 22278, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LocalTime = + 22279, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Message = + 22280, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Severity = + 22281, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConditionClassId = + 22282, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConditionClassName = + 22283, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConditionSubClassId = + 22284, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConditionSubClassName = + 22285, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConditionName = + 22286, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_BranchId = + 22287, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Retain = + 22288, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EnabledState = + 22289, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EnabledState_Id = + 22290, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EnabledState_Name = + 22291, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EnabledState_Number = + 22292, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EnabledState_EffectiveDisplayName = + 22293, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EnabledState_TransitionTime = + 22294, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EnabledState_EffectiveTransitionTime = + 22295, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EnabledState_TrueState = + 22296, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EnabledState_FalseState = + 22297, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Quality = + 22298, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Quality_SourceTimestamp = + 22299, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LastSeverity = + 22300, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LastSeverity_SourceTimestamp = + 22301, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Comment = + 22302, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Comment_SourceTimestamp = + 22303, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ClientUserId = + 22304, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AddComment_InputArguments = + 22308, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AckedState = + 22309, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AckedState_Id = + 22310, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AckedState_Name = + 22311, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AckedState_Number = + 22312, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AckedState_EffectiveDisplayName = + 22313, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AckedState_TransitionTime = + 22314, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AckedState_EffectiveTransitionTime = + 22315, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AckedState_TrueState = + 22316, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AckedState_FalseState = + 22317, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConfirmedState = + 22318, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConfirmedState_Id = + 22319, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConfirmedState_Name = + 22320, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConfirmedState_Number = + 22321, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConfirmedState_EffectiveDisplayName = + 22322, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConfirmedState_TransitionTime = + 22323, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConfirmedState_EffectiveTransitionTime = + 22324, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConfirmedState_TrueState = + 22325, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConfirmedState_FalseState = + 22326, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Acknowledge_InputArguments = + 22328, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Confirm_InputArguments = + 22330, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ActiveState = + 22331, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ActiveState_Id = + 22332, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ActiveState_Name = + 22333, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ActiveState_Number = + 22334, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ActiveState_EffectiveDisplayName = + 22335, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ActiveState_TransitionTime = + 22336, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ActiveState_EffectiveTransitionTime = + 22337, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ActiveState_TrueState = + 22338, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ActiveState_FalseState = + 22339, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_InputNode = + 22340, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SuppressedState = + 22341, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SuppressedState_Id = + 22342, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SuppressedState_Name = + 22343, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SuppressedState_Number = + 22344, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SuppressedState_EffectiveDisplayName = + 22345, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SuppressedState_TransitionTime = + 22346, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SuppressedState_EffectiveTransitionTime = + 22347, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SuppressedState_TrueState = + 22348, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SuppressedState_FalseState = + 22349, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState = + 22350, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState_Id = + 22351, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState_Name = + 22352, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState_Number = + 22353, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState_EffectiveDisplayName = + 22354, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState_TransitionTime = + 22355, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState_EffectiveTransitionTime = + 22356, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState_TrueState = + 22357, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState_FalseState = + 22358, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_CurrentState = + 22360, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_CurrentState_Id = + 22361, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_CurrentState_Name = + 22362, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_CurrentState_Number = + 22363, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_CurrentState_EffectiveDisplayName = + 22364, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_LastTransition = + 22365, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_LastTransition_Id = + 22366, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_LastTransition_Name = + 22367, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_LastTransition_Number = + 22368, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_LastTransition_TransitionTime = + 22369, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_LastTransition_EffectiveTransitionTime = + 22370, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_AvailableStates = + 22371, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_AvailableTransitions = + 22372, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_UnshelveTime = + 22373, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_TimedShelve_InputArguments = + 22375, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SuppressedOrShelved = + 22378, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_MaxTimeShelved = + 22379, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AudibleEnabled = + 22380, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AudibleSound = + 22381, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AudibleSound_ListId = + 22382, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AudibleSound_AgencyId = + 22383, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AudibleSound_VersionId = + 22384, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SilenceState = + 22385, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SilenceState_Id = + 22386, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SilenceState_Name = + 22387, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SilenceState_Number = + 22388, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SilenceState_EffectiveDisplayName = + 22389, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SilenceState_TransitionTime = + 22390, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SilenceState_EffectiveTransitionTime = + 22391, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SilenceState_TrueState = + 22392, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SilenceState_FalseState = + 22393, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_OnDelay = + 22394, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_OffDelay = + 22395, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_FirstInGroupFlag = + 22396, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LatchedState = + 22398, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LatchedState_Id = + 22399, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LatchedState_Name = + 22400, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LatchedState_Number = + 22401, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LatchedState_EffectiveDisplayName = + 22402, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LatchedState_TransitionTime = + 22403, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LatchedState_EffectiveTransitionTime = + 22404, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LatchedState_TrueState = + 22405, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LatchedState_FalseState = + 22406, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ReAlarmTime = + 22407, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ReAlarmRepeatCount = + 22408, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_NormalState = + 22415, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ExpirationDate = + 22416, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ExpirationLimit = + 22417, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_CertificateType = + 22418, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Certificate = + 22419, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EventId = + 22421, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EventType = + 22422, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SourceNode = + 22423, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SourceName = + 22424, ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Time = 22425, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ReceiveTime = 22426, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LocalTime = 22427, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Message = 22428, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Severity = 22429, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConditionClassId = 22430, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConditionClassName = 22431, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConditionSubClassId = 22432, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConditionSubClassName = 22433, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConditionName = 22434, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_BranchId = 22435, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Retain = 22436, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState = 22437, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState_Id = 22438, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState_Name = 22439, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState_Number = 22440, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState_EffectiveDisplayName = 22441, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState_TransitionTime = 22442, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState_EffectiveTransitionTime = 22443, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState_TrueState = 22444, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState_FalseState = 22445, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Quality = 22446, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Quality_SourceTimestamp = 22447, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LastSeverity = 22448, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LastSeverity_SourceTimestamp = 22449, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Comment = 22450, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Comment_SourceTimestamp = 22451, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ClientUserId = 22452, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AddComment_InputArguments = 22456, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AckedState = 22457, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AckedState_Id = 22458, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AckedState_Name = 22459, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AckedState_Number = 22460, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AckedState_EffectiveDisplayName = 22461, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AckedState_TransitionTime = 22462, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AckedState_EffectiveTransitionTime = 22463, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AckedState_TrueState = 22464, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AckedState_FalseState = 22465, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConfirmedState = 22466, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConfirmedState_Id = 22467, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConfirmedState_Name = 22468, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConfirmedState_Number = 22469, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConfirmedState_EffectiveDisplayName = 22470, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConfirmedState_TransitionTime = 22471, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConfirmedState_EffectiveTransitionTime = 22472, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConfirmedState_TrueState = 22473, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConfirmedState_FalseState = 22474, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Acknowledge_InputArguments = 22476, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Confirm_InputArguments = 22478, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState = 22479, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState_Id = 22480, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState_Name = 22481, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState_Number = 22482, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState_EffectiveDisplayName = 22483, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState_TransitionTime = 22484, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState_EffectiveTransitionTime = 22485, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState_TrueState = 22486, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState_FalseState = 22487, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_InputNode = 22488, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState = 22489, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState_Id = 22490, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState_Name = 22491, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState_Number = 22492, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState_EffectiveDisplayName = 22493, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState_TransitionTime = 22494, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState_EffectiveTransitionTime = 22495, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState_TrueState = 22496, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState_FalseState = 22497, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState = 22498, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState_Id = 22499, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState_Name = 22500, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState_Number = 22501, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState_EffectiveDisplayName = 22502, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState_TransitionTime = 22503, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState_EffectiveTransitionTime = 22504, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState_TrueState = 22505, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState_FalseState = 22506, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_CurrentState = 22508, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_CurrentState_Id = 22509, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_CurrentState_Name = 22510, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_CurrentState_Number = 22511, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_CurrentState_EffectiveDisplayName = 22512, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_LastTransition = 22513, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_LastTransition_Id = 22514, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_LastTransition_Name = 22515, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_LastTransition_Number = 22516, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_LastTransition_TransitionTime = 22517, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_LastTransition_EffectiveTransitionTime = 22518, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_AvailableStates = 22519, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_AvailableTransitions = 22520, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_UnshelveTime = 22521, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_TimedShelve_InputArguments = 22523, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedOrShelved = 22526, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_MaxTimeShelved = 22527, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AudibleEnabled = 22528, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AudibleSound = 22529, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AudibleSound_ListId = 22530, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AudibleSound_AgencyId = 22531, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AudibleSound_VersionId = 22532, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SilenceState = 22533, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SilenceState_Id = 22534, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SilenceState_Name = 22535, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SilenceState_Number = 22536, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SilenceState_EffectiveDisplayName = 22537, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SilenceState_TransitionTime = 22538, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SilenceState_EffectiveTransitionTime = 22539, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SilenceState_TrueState = 22540, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SilenceState_FalseState = 22541, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_OnDelay = 22542, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_OffDelay = 22543, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_FirstInGroupFlag = 22544, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LatchedState = 22546, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LatchedState_Id = 22547, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LatchedState_Name = 22548, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LatchedState_Number = 22549, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LatchedState_EffectiveDisplayName = 22550, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LatchedState_TransitionTime = 22551, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LatchedState_EffectiveTransitionTime = 22552, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LatchedState_TrueState = 22553, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LatchedState_FalseState = 22554, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ReAlarmTime = 22555, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ReAlarmRepeatCount = 22556, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_NormalState = 22563, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_TrustListId = 22564, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LastUpdateTime = 22565, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_UpdateFrequency = 22566, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ReceiveTime = + 22426, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LocalTime = + 22427, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Message = + 22428, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Severity = + 22429, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConditionClassId = + 22430, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConditionClassName = + 22431, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConditionSubClassId = + 22432, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConditionSubClassName = + 22433, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConditionName = + 22434, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_BranchId = + 22435, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Retain = + 22436, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState = + 22437, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState_Id = + 22438, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState_Name = + 22439, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState_Number = + 22440, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState_EffectiveDisplayName = + 22441, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState_TransitionTime = + 22442, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState_EffectiveTransitionTime = + 22443, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState_TrueState = + 22444, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState_FalseState = + 22445, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Quality = + 22446, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Quality_SourceTimestamp = + 22447, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LastSeverity = + 22448, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LastSeverity_SourceTimestamp = + 22449, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Comment = + 22450, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Comment_SourceTimestamp = + 22451, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ClientUserId = + 22452, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AddComment_InputArguments = + 22456, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AckedState = + 22457, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AckedState_Id = + 22458, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AckedState_Name = + 22459, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AckedState_Number = + 22460, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AckedState_EffectiveDisplayName = + 22461, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AckedState_TransitionTime = + 22462, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AckedState_EffectiveTransitionTime = + 22463, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AckedState_TrueState = + 22464, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AckedState_FalseState = + 22465, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConfirmedState = + 22466, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConfirmedState_Id = + 22467, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConfirmedState_Name = + 22468, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConfirmedState_Number = + 22469, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConfirmedState_EffectiveDisplayName = + 22470, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConfirmedState_TransitionTime = + 22471, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConfirmedState_EffectiveTransitionTime = + 22472, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConfirmedState_TrueState = + 22473, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConfirmedState_FalseState = + 22474, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Acknowledge_InputArguments = + 22476, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Confirm_InputArguments = + 22478, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState = + 22479, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState_Id = + 22480, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState_Name = + 22481, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState_Number = + 22482, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState_EffectiveDisplayName = + 22483, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState_TransitionTime = + 22484, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState_EffectiveTransitionTime = + 22485, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState_TrueState = + 22486, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState_FalseState = + 22487, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_InputNode = + 22488, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState = + 22489, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState_Id = + 22490, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState_Name = + 22491, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState_Number = + 22492, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState_EffectiveDisplayName = + 22493, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState_TransitionTime = + 22494, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState_EffectiveTransitionTime = + 22495, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState_TrueState = + 22496, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState_FalseState = + 22497, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState = + 22498, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState_Id = + 22499, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState_Name = + 22500, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState_Number = + 22501, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState_EffectiveDisplayName = + 22502, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState_TransitionTime = + 22503, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState_EffectiveTransitionTime = + 22504, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState_TrueState = + 22505, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState_FalseState = + 22506, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_CurrentState = + 22508, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_CurrentState_Id = + 22509, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_CurrentState_Name = + 22510, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_CurrentState_Number = + 22511, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_CurrentState_EffectiveDisplayName = + 22512, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_LastTransition = + 22513, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_LastTransition_Id = + 22514, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_LastTransition_Name = + 22515, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_LastTransition_Number = + 22516, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_LastTransition_TransitionTime = + 22517, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_LastTransition_EffectiveTransitionTime = + 22518, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_AvailableStates = + 22519, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_AvailableTransitions = + 22520, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_UnshelveTime = + 22521, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_TimedShelve_InputArguments = + 22523, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedOrShelved = + 22526, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_MaxTimeShelved = + 22527, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AudibleEnabled = + 22528, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AudibleSound = + 22529, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AudibleSound_ListId = + 22530, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AudibleSound_AgencyId = + 22531, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AudibleSound_VersionId = + 22532, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SilenceState = + 22533, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SilenceState_Id = + 22534, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SilenceState_Name = + 22535, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SilenceState_Number = + 22536, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SilenceState_EffectiveDisplayName = + 22537, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SilenceState_TransitionTime = + 22538, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SilenceState_EffectiveTransitionTime = + 22539, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SilenceState_TrueState = + 22540, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SilenceState_FalseState = + 22541, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_OnDelay = + 22542, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_OffDelay = + 22543, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_FirstInGroupFlag = + 22544, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LatchedState = + 22546, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LatchedState_Id = + 22547, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LatchedState_Name = + 22548, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LatchedState_Number = + 22549, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LatchedState_EffectiveDisplayName = + 22550, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LatchedState_TransitionTime = + 22551, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LatchedState_EffectiveTransitionTime = + 22552, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LatchedState_TrueState = + 22553, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LatchedState_FalseState = + 22554, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ReAlarmTime = + 22555, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ReAlarmRepeatCount = + 22556, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_NormalState = + 22563, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_TrustListId = + 22564, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LastUpdateTime = + 22565, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_UpdateFrequency = + 22566, ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_UpdateFrequency = 22567, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EventId = 22569, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EventType = 22570, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SourceNode = 22571, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SourceName = 22572, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EventId = + 22569, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EventType = + 22570, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SourceNode = + 22571, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SourceName = + 22572, ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Time = 22573, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ReceiveTime = 22574, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LocalTime = 22575, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Message = 22576, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Severity = 22577, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConditionClassId = 22578, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConditionClassName = 22579, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConditionSubClassId = 22580, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConditionSubClassName = 22581, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConditionName = 22582, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_BranchId = 22583, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ReceiveTime = + 22574, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LocalTime = + 22575, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Message = + 22576, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Severity = + 22577, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConditionClassId = + 22578, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConditionClassName = + 22579, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConditionSubClassId = + 22580, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConditionSubClassName = + 22581, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConditionName = + 22582, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_BranchId = + 22583, ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Retain = 22584, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EnabledState = 22585, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EnabledState_Id = 22586, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EnabledState_Name = 22587, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EnabledState_Number = 22588, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EnabledState_EffectiveDisplayName = 22589, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EnabledState_TransitionTime = 22590, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EnabledState_EffectiveTransitionTime = 22591, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EnabledState_TrueState = 22592, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EnabledState_FalseState = 22593, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Quality = 22594, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Quality_SourceTimestamp = 22595, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LastSeverity = 22596, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LastSeverity_SourceTimestamp = 22597, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Comment = 22598, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Comment_SourceTimestamp = 22599, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ClientUserId = 22600, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AddComment_InputArguments = 22604, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AckedState = 22605, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AckedState_Id = 22606, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AckedState_Name = 22607, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AckedState_Number = 22608, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AckedState_EffectiveDisplayName = 22609, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AckedState_TransitionTime = 22610, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AckedState_EffectiveTransitionTime = 22611, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AckedState_TrueState = 22612, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AckedState_FalseState = 22613, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConfirmedState = 22614, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConfirmedState_Id = 22615, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConfirmedState_Name = 22616, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConfirmedState_Number = 22617, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConfirmedState_EffectiveDisplayName = 22618, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConfirmedState_TransitionTime = 22619, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConfirmedState_EffectiveTransitionTime = 22620, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConfirmedState_TrueState = 22621, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConfirmedState_FalseState = 22622, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Acknowledge_InputArguments = 22624, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Confirm_InputArguments = 22626, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ActiveState = 22627, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ActiveState_Id = 22628, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ActiveState_Name = 22629, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ActiveState_Number = 22630, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ActiveState_EffectiveDisplayName = 22631, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ActiveState_TransitionTime = 22632, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ActiveState_EffectiveTransitionTime = 22633, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ActiveState_TrueState = 22634, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ActiveState_FalseState = 22635, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_InputNode = 22636, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SuppressedState = 22637, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SuppressedState_Id = 22638, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SuppressedState_Name = 22639, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SuppressedState_Number = 22640, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SuppressedState_EffectiveDisplayName = 22641, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SuppressedState_TransitionTime = 22642, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SuppressedState_EffectiveTransitionTime = 22643, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SuppressedState_TrueState = 22644, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SuppressedState_FalseState = 22645, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_OutOfServiceState = 22646, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_OutOfServiceState_Id = 22647, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_OutOfServiceState_Name = 22648, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_OutOfServiceState_Number = 22649, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_OutOfServiceState_EffectiveDisplayName = 22650, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_OutOfServiceState_TransitionTime = 22651, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_OutOfServiceState_EffectiveTransitionTime = 22652, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_OutOfServiceState_TrueState = 22653, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_OutOfServiceState_FalseState = 22654, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_CurrentState = 22656, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_CurrentState_Id = 22657, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_CurrentState_Name = 22658, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_CurrentState_Number = 22659, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_CurrentState_EffectiveDisplayName = 22660, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_LastTransition = 22661, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_LastTransition_Id = 22662, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_LastTransition_Name = 22663, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_LastTransition_Number = 22664, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_LastTransition_TransitionTime = 22665, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_LastTransition_EffectiveTransitionTime = 22666, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_AvailableStates = 22667, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_AvailableTransitions = 22668, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_UnshelveTime = 22669, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_TimedShelve_InputArguments = 22671, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SuppressedOrShelved = 22674, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_MaxTimeShelved = 22675, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AudibleEnabled = 22676, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AudibleSound = 22677, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AudibleSound_ListId = 22678, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AudibleSound_AgencyId = 22679, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AudibleSound_VersionId = 22680, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SilenceState = 22681, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SilenceState_Id = 22682, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SilenceState_Name = 22683, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SilenceState_Number = 22684, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SilenceState_EffectiveDisplayName = 22685, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SilenceState_TransitionTime = 22686, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SilenceState_EffectiveTransitionTime = 22687, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SilenceState_TrueState = 22688, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SilenceState_FalseState = 22689, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_OnDelay = 22690, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_OffDelay = 22691, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_FirstInGroupFlag = 22692, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LatchedState = 22694, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LatchedState_Id = 22695, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LatchedState_Name = 22696, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LatchedState_Number = 22697, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LatchedState_EffectiveDisplayName = 22698, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LatchedState_TransitionTime = 22699, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LatchedState_EffectiveTransitionTime = 22700, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LatchedState_TrueState = 22701, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LatchedState_FalseState = 22702, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ReAlarmTime = 22703, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ReAlarmRepeatCount = 22704, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_NormalState = 22711, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ExpirationDate = 22712, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ExpirationLimit = 22713, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_CertificateType = 22714, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Certificate = 22715, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EventId = 22717, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EventType = 22718, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SourceNode = 22719, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SourceName = 22720, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EnabledState = + 22585, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EnabledState_Id = + 22586, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EnabledState_Name = + 22587, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EnabledState_Number = + 22588, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EnabledState_EffectiveDisplayName = + 22589, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EnabledState_TransitionTime = + 22590, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EnabledState_EffectiveTransitionTime = + 22591, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EnabledState_TrueState = + 22592, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_EnabledState_FalseState = + 22593, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Quality = + 22594, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Quality_SourceTimestamp = + 22595, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LastSeverity = + 22596, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LastSeverity_SourceTimestamp = + 22597, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Comment = + 22598, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Comment_SourceTimestamp = + 22599, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ClientUserId = + 22600, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AddComment_InputArguments = + 22604, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AckedState = + 22605, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AckedState_Id = + 22606, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AckedState_Name = + 22607, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AckedState_Number = + 22608, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AckedState_EffectiveDisplayName = + 22609, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AckedState_TransitionTime = + 22610, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AckedState_EffectiveTransitionTime = + 22611, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AckedState_TrueState = + 22612, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AckedState_FalseState = + 22613, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConfirmedState = + 22614, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConfirmedState_Id = + 22615, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConfirmedState_Name = + 22616, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConfirmedState_Number = + 22617, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConfirmedState_EffectiveDisplayName = + 22618, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConfirmedState_TransitionTime = + 22619, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConfirmedState_EffectiveTransitionTime = + 22620, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConfirmedState_TrueState = + 22621, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ConfirmedState_FalseState = + 22622, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Acknowledge_InputArguments = + 22624, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Confirm_InputArguments = + 22626, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ActiveState = + 22627, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ActiveState_Id = + 22628, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ActiveState_Name = + 22629, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ActiveState_Number = + 22630, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ActiveState_EffectiveDisplayName = + 22631, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ActiveState_TransitionTime = + 22632, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ActiveState_EffectiveTransitionTime = + 22633, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ActiveState_TrueState = + 22634, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ActiveState_FalseState = + 22635, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_InputNode = + 22636, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SuppressedState = + 22637, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SuppressedState_Id = + 22638, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SuppressedState_Name = + 22639, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SuppressedState_Number = + 22640, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SuppressedState_EffectiveDisplayName = + 22641, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SuppressedState_TransitionTime = + 22642, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SuppressedState_EffectiveTransitionTime = + 22643, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SuppressedState_TrueState = + 22644, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SuppressedState_FalseState = + 22645, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_OutOfServiceState = + 22646, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_OutOfServiceState_Id = + 22647, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_OutOfServiceState_Name = + 22648, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_OutOfServiceState_Number = + 22649, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_OutOfServiceState_EffectiveDisplayName = + 22650, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_OutOfServiceState_TransitionTime = + 22651, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_OutOfServiceState_EffectiveTransitionTime = + 22652, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_OutOfServiceState_TrueState = + 22653, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_OutOfServiceState_FalseState = + 22654, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_CurrentState = + 22656, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_CurrentState_Id = + 22657, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_CurrentState_Name = + 22658, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_CurrentState_Number = + 22659, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_CurrentState_EffectiveDisplayName = + 22660, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_LastTransition = + 22661, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_LastTransition_Id = + 22662, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_LastTransition_Name = + 22663, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_LastTransition_Number = + 22664, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_LastTransition_TransitionTime = + 22665, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_LastTransition_EffectiveTransitionTime = + 22666, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_AvailableStates = + 22667, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_AvailableTransitions = + 22668, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_UnshelveTime = + 22669, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_TimedShelve_InputArguments = + 22671, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SuppressedOrShelved = + 22674, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_MaxTimeShelved = + 22675, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AudibleEnabled = + 22676, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AudibleSound = + 22677, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AudibleSound_ListId = + 22678, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AudibleSound_AgencyId = + 22679, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AudibleSound_VersionId = + 22680, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SilenceState = + 22681, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SilenceState_Id = + 22682, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SilenceState_Name = + 22683, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SilenceState_Number = + 22684, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SilenceState_EffectiveDisplayName = + 22685, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SilenceState_TransitionTime = + 22686, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SilenceState_EffectiveTransitionTime = + 22687, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SilenceState_TrueState = + 22688, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_SilenceState_FalseState = + 22689, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_OnDelay = + 22690, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_OffDelay = + 22691, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_FirstInGroupFlag = + 22692, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LatchedState = + 22694, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LatchedState_Id = + 22695, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LatchedState_Name = + 22696, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LatchedState_Number = + 22697, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LatchedState_EffectiveDisplayName = + 22698, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LatchedState_TransitionTime = + 22699, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LatchedState_EffectiveTransitionTime = + 22700, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LatchedState_TrueState = + 22701, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_LatchedState_FalseState = + 22702, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ReAlarmTime = + 22703, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ReAlarmRepeatCount = + 22704, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_NormalState = + 22711, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ExpirationDate = + 22712, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ExpirationLimit = + 22713, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_CertificateType = + 22714, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Certificate = + 22715, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EventId = + 22717, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EventType = + 22718, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SourceNode = + 22719, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SourceName = + 22720, ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Time = 22721, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ReceiveTime = 22722, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LocalTime = 22723, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Message = 22724, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Severity = 22725, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConditionClassId = 22726, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConditionClassName = 22727, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConditionSubClassId = 22728, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConditionSubClassName = 22729, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConditionName = 22730, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_BranchId = 22731, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ReceiveTime = + 22722, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LocalTime = + 22723, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Message = + 22724, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Severity = + 22725, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConditionClassId = + 22726, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConditionClassName = + 22727, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConditionSubClassId = + 22728, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConditionSubClassName = + 22729, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConditionName = + 22730, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_BranchId = + 22731, ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Retain = 22732, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EnabledState = 22733, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EnabledState_Id = 22734, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EnabledState_Name = 22735, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EnabledState_Number = 22736, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EnabledState_EffectiveDisplayName = 22737, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EnabledState_TransitionTime = 22738, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EnabledState_EffectiveTransitionTime = 22739, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EnabledState_TrueState = 22740, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EnabledState_FalseState = 22741, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Quality = 22742, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Quality_SourceTimestamp = 22743, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LastSeverity = 22744, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LastSeverity_SourceTimestamp = 22745, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Comment = 22746, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Comment_SourceTimestamp = 22747, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ClientUserId = 22748, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AddComment_InputArguments = 22752, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AckedState = 22753, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AckedState_Id = 22754, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AckedState_Name = 22755, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AckedState_Number = 22756, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AckedState_EffectiveDisplayName = 22757, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AckedState_TransitionTime = 22758, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AckedState_EffectiveTransitionTime = 22759, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AckedState_TrueState = 22760, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AckedState_FalseState = 22761, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState = 22762, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState_Id = 22763, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState_Name = 22764, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState_Number = 22765, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState_EffectiveDisplayName = 22766, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState_TransitionTime = 22767, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState_EffectiveTransitionTime = 22768, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState_TrueState = 22769, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState_FalseState = 22770, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Acknowledge_InputArguments = 22772, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Confirm_InputArguments = 22774, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ActiveState = 22775, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ActiveState_Id = 22776, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ActiveState_Name = 22777, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ActiveState_Number = 22778, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ActiveState_EffectiveDisplayName = 22779, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ActiveState_TransitionTime = 22780, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ActiveState_EffectiveTransitionTime = 22781, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ActiveState_TrueState = 22782, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ActiveState_FalseState = 22783, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_InputNode = 22784, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState = 22785, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState_Id = 22786, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState_Name = 22787, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState_Number = 22788, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState_EffectiveDisplayName = 22789, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState_TransitionTime = 22790, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState_EffectiveTransitionTime = 22791, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState_TrueState = 22792, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState_FalseState = 22793, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState = 22794, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState_Id = 22795, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState_Name = 22796, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState_Number = 22797, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState_EffectiveDisplayName = 22798, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState_TransitionTime = 22799, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState_EffectiveTransitionTime = 22800, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState_TrueState = 22801, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState_FalseState = 22802, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_CurrentState = 22804, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_CurrentState_Id = 22805, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_CurrentState_Name = 22806, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_CurrentState_Number = 22807, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_CurrentState_EffectiveDisplayName = 22808, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_LastTransition = 22809, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_LastTransition_Id = 22810, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_LastTransition_Name = 22811, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_LastTransition_Number = 22812, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_LastTransition_TransitionTime = 22813, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_LastTransition_EffectiveTransitionTime = 22814, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_AvailableStates = 22815, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_AvailableTransitions = 22816, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_UnshelveTime = 22817, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_TimedShelve_InputArguments = 22819, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SuppressedOrShelved = 22822, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_MaxTimeShelved = 22823, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AudibleEnabled = 22824, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AudibleSound = 22825, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AudibleSound_ListId = 22826, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AudibleSound_AgencyId = 22827, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AudibleSound_VersionId = 22828, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SilenceState = 22829, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SilenceState_Id = 22830, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SilenceState_Name = 22831, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SilenceState_Number = 22832, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SilenceState_EffectiveDisplayName = 22833, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SilenceState_TransitionTime = 22834, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SilenceState_EffectiveTransitionTime = 22835, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SilenceState_TrueState = 22836, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SilenceState_FalseState = 22837, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_OnDelay = 22838, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_OffDelay = 22839, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_FirstInGroupFlag = 22840, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LatchedState = 22842, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LatchedState_Id = 22843, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LatchedState_Name = 22844, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LatchedState_Number = 22845, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LatchedState_EffectiveDisplayName = 22846, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LatchedState_TransitionTime = 22847, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LatchedState_EffectiveTransitionTime = 22848, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LatchedState_TrueState = 22849, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LatchedState_FalseState = 22850, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ReAlarmTime = 22851, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ReAlarmRepeatCount = 22852, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_NormalState = 22859, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_TrustListId = 22860, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LastUpdateTime = 22861, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_UpdateFrequency = 22862, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EnabledState = + 22733, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EnabledState_Id = + 22734, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EnabledState_Name = + 22735, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EnabledState_Number = + 22736, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EnabledState_EffectiveDisplayName = + 22737, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EnabledState_TransitionTime = + 22738, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EnabledState_EffectiveTransitionTime = + 22739, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EnabledState_TrueState = + 22740, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_EnabledState_FalseState = + 22741, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Quality = + 22742, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Quality_SourceTimestamp = + 22743, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LastSeverity = + 22744, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LastSeverity_SourceTimestamp = + 22745, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Comment = + 22746, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Comment_SourceTimestamp = + 22747, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ClientUserId = + 22748, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AddComment_InputArguments = + 22752, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AckedState = + 22753, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AckedState_Id = + 22754, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AckedState_Name = + 22755, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AckedState_Number = + 22756, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AckedState_EffectiveDisplayName = + 22757, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AckedState_TransitionTime = + 22758, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AckedState_EffectiveTransitionTime = + 22759, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AckedState_TrueState = + 22760, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AckedState_FalseState = + 22761, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState = + 22762, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState_Id = + 22763, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState_Name = + 22764, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState_Number = + 22765, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState_EffectiveDisplayName = + 22766, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState_TransitionTime = + 22767, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState_EffectiveTransitionTime = + 22768, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState_TrueState = + 22769, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ConfirmedState_FalseState = + 22770, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Acknowledge_InputArguments = + 22772, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Confirm_InputArguments = + 22774, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ActiveState = + 22775, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ActiveState_Id = + 22776, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ActiveState_Name = + 22777, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ActiveState_Number = + 22778, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ActiveState_EffectiveDisplayName = + 22779, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ActiveState_TransitionTime = + 22780, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ActiveState_EffectiveTransitionTime = + 22781, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ActiveState_TrueState = + 22782, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ActiveState_FalseState = + 22783, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_InputNode = + 22784, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState = + 22785, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState_Id = + 22786, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState_Name = + 22787, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState_Number = + 22788, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState_EffectiveDisplayName = + 22789, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState_TransitionTime = + 22790, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState_EffectiveTransitionTime = + 22791, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState_TrueState = + 22792, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SuppressedState_FalseState = + 22793, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState = + 22794, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState_Id = + 22795, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState_Name = + 22796, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState_Number = + 22797, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState_EffectiveDisplayName = + 22798, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState_TransitionTime = + 22799, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState_EffectiveTransitionTime = + 22800, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState_TrueState = + 22801, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_OutOfServiceState_FalseState = + 22802, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_CurrentState = + 22804, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_CurrentState_Id = + 22805, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_CurrentState_Name = + 22806, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_CurrentState_Number = + 22807, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_CurrentState_EffectiveDisplayName = + 22808, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_LastTransition = + 22809, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_LastTransition_Id = + 22810, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_LastTransition_Name = + 22811, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_LastTransition_Number = + 22812, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_LastTransition_TransitionTime = + 22813, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_LastTransition_EffectiveTransitionTime = + 22814, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_AvailableStates = + 22815, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_AvailableTransitions = + 22816, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_UnshelveTime = + 22817, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_TimedShelve_InputArguments = + 22819, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SuppressedOrShelved = + 22822, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_MaxTimeShelved = + 22823, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AudibleEnabled = + 22824, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AudibleSound = + 22825, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AudibleSound_ListId = + 22826, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AudibleSound_AgencyId = + 22827, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AudibleSound_VersionId = + 22828, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SilenceState = + 22829, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SilenceState_Id = + 22830, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SilenceState_Name = + 22831, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SilenceState_Number = + 22832, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SilenceState_EffectiveDisplayName = + 22833, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SilenceState_TransitionTime = + 22834, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SilenceState_EffectiveTransitionTime = + 22835, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SilenceState_TrueState = + 22836, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_SilenceState_FalseState = + 22837, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_OnDelay = + 22838, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_OffDelay = + 22839, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_FirstInGroupFlag = + 22840, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LatchedState = + 22842, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LatchedState_Id = + 22843, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LatchedState_Name = + 22844, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LatchedState_Number = + 22845, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LatchedState_EffectiveDisplayName = + 22846, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LatchedState_TransitionTime = + 22847, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LatchedState_EffectiveTransitionTime = + 22848, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LatchedState_TrueState = + 22849, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LatchedState_FalseState = + 22850, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ReAlarmTime = + 22851, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ReAlarmRepeatCount = + 22852, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_NormalState = + 22859, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_TrustListId = + 22860, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_LastUpdateTime = + 22861, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_UpdateFrequency = + 22862, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_UpdateFrequency = 22863, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EventId = 22865, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EventType = 22866, @@ -13953,127 +16165,231 @@ pub enum VariableId { ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LocalTime = 22871, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Message = 22872, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Severity = 22873, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConditionClassId = 22874, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConditionClassName = 22875, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConditionSubClassId = 22876, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConditionSubClassName = 22877, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConditionName = 22878, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConditionClassId = + 22874, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConditionClassName = + 22875, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConditionSubClassId = + 22876, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConditionSubClassName = + 22877, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConditionName = + 22878, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_BranchId = 22879, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Retain = 22880, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EnabledState = 22881, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EnabledState_Id = 22882, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EnabledState_Name = 22883, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EnabledState_Number = 22884, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EnabledState_EffectiveDisplayName = 22885, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EnabledState_TransitionTime = 22886, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EnabledState_EffectiveTransitionTime = 22887, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EnabledState_TrueState = 22888, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EnabledState_FalseState = 22889, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EnabledState_Id = + 22882, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EnabledState_Name = + 22883, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EnabledState_Number = + 22884, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EnabledState_EffectiveDisplayName = + 22885, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EnabledState_TransitionTime = + 22886, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EnabledState_EffectiveTransitionTime = + 22887, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EnabledState_TrueState = + 22888, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_EnabledState_FalseState = + 22889, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Quality = 22890, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Quality_SourceTimestamp = 22891, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Quality_SourceTimestamp = + 22891, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LastSeverity = 22892, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LastSeverity_SourceTimestamp = 22893, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LastSeverity_SourceTimestamp = + 22893, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Comment = 22894, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Comment_SourceTimestamp = 22895, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Comment_SourceTimestamp = + 22895, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ClientUserId = 22896, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AddComment_InputArguments = 22900, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AddComment_InputArguments = + 22900, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AckedState = 22901, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AckedState_Id = 22902, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AckedState_Name = 22903, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AckedState_Number = 22904, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AckedState_EffectiveDisplayName = 22905, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AckedState_TransitionTime = 22906, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AckedState_EffectiveTransitionTime = 22907, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AckedState_TrueState = 22908, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AckedState_FalseState = 22909, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConfirmedState = 22910, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConfirmedState_Id = 22911, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConfirmedState_Name = 22912, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConfirmedState_Number = 22913, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConfirmedState_EffectiveDisplayName = 22914, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConfirmedState_TransitionTime = 22915, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConfirmedState_EffectiveTransitionTime = 22916, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConfirmedState_TrueState = 22917, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConfirmedState_FalseState = 22918, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Acknowledge_InputArguments = 22920, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Confirm_InputArguments = 22922, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AckedState_Id = + 22902, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AckedState_Name = + 22903, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AckedState_Number = + 22904, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AckedState_EffectiveDisplayName = + 22905, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AckedState_TransitionTime = + 22906, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AckedState_EffectiveTransitionTime = + 22907, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AckedState_TrueState = + 22908, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AckedState_FalseState = + 22909, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConfirmedState = + 22910, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConfirmedState_Id = + 22911, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConfirmedState_Name = + 22912, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConfirmedState_Number = + 22913, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConfirmedState_EffectiveDisplayName = + 22914, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConfirmedState_TransitionTime = + 22915, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConfirmedState_EffectiveTransitionTime = + 22916, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConfirmedState_TrueState = + 22917, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ConfirmedState_FalseState = + 22918, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Acknowledge_InputArguments = + 22920, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Confirm_InputArguments = + 22922, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ActiveState = 22923, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ActiveState_Id = 22924, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ActiveState_Name = 22925, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ActiveState_Number = 22926, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ActiveState_EffectiveDisplayName = 22927, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ActiveState_TransitionTime = 22928, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ActiveState_EffectiveTransitionTime = 22929, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ActiveState_TrueState = 22930, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ActiveState_FalseState = 22931, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ActiveState_Id = + 22924, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ActiveState_Name = + 22925, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ActiveState_Number = + 22926, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ActiveState_EffectiveDisplayName = + 22927, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ActiveState_TransitionTime = + 22928, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ActiveState_EffectiveTransitionTime = + 22929, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ActiveState_TrueState = + 22930, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ActiveState_FalseState = + 22931, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_InputNode = 22932, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SuppressedState = 22933, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SuppressedState_Id = 22934, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SuppressedState_Name = 22935, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SuppressedState_Number = 22936, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SuppressedState_EffectiveDisplayName = 22937, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SuppressedState_TransitionTime = 22938, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SuppressedState_EffectiveTransitionTime = 22939, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SuppressedState_TrueState = 22940, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SuppressedState_FalseState = 22941, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_OutOfServiceState = 22942, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_OutOfServiceState_Id = 22943, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_OutOfServiceState_Name = 22944, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_OutOfServiceState_Number = 22945, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_OutOfServiceState_EffectiveDisplayName = 22946, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_OutOfServiceState_TransitionTime = 22947, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_OutOfServiceState_EffectiveTransitionTime = 22948, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_OutOfServiceState_TrueState = 22949, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_OutOfServiceState_FalseState = 22950, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_CurrentState = 22952, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_CurrentState_Id = 22953, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_CurrentState_Name = 22954, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_CurrentState_Number = 22955, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_CurrentState_EffectiveDisplayName = 22956, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_LastTransition = 22957, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_LastTransition_Id = 22958, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_LastTransition_Name = 22959, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_LastTransition_Number = 22960, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_LastTransition_TransitionTime = 22961, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_LastTransition_EffectiveTransitionTime = 22962, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_AvailableStates = 22963, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_AvailableTransitions = 22964, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_UnshelveTime = 22965, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_TimedShelve_InputArguments = 22967, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SuppressedOrShelved = 22970, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_MaxTimeShelved = 22971, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AudibleEnabled = 22972, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SuppressedState = + 22933, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SuppressedState_Id = + 22934, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SuppressedState_Name = + 22935, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SuppressedState_Number = + 22936, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SuppressedState_EffectiveDisplayName = + 22937, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SuppressedState_TransitionTime = + 22938, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SuppressedState_EffectiveTransitionTime = + 22939, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SuppressedState_TrueState = + 22940, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SuppressedState_FalseState = + 22941, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_OutOfServiceState = + 22942, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_OutOfServiceState_Id = + 22943, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_OutOfServiceState_Name = + 22944, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_OutOfServiceState_Number = + 22945, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_OutOfServiceState_EffectiveDisplayName = + 22946, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_OutOfServiceState_TransitionTime = + 22947, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_OutOfServiceState_EffectiveTransitionTime = + 22948, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_OutOfServiceState_TrueState = + 22949, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_OutOfServiceState_FalseState = + 22950, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_CurrentState = + 22952, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_CurrentState_Id = + 22953, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_CurrentState_Name = + 22954, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_CurrentState_Number = + 22955, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_CurrentState_EffectiveDisplayName = + 22956, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_LastTransition = + 22957, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_LastTransition_Id = + 22958, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_LastTransition_Name = + 22959, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_LastTransition_Number = + 22960, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_LastTransition_TransitionTime = + 22961, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_LastTransition_EffectiveTransitionTime = + 22962, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_AvailableStates = + 22963, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_AvailableTransitions = + 22964, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_UnshelveTime = + 22965, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_TimedShelve_InputArguments = + 22967, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SuppressedOrShelved = + 22970, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_MaxTimeShelved = + 22971, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AudibleEnabled = + 22972, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AudibleSound = 22973, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AudibleSound_ListId = 22974, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AudibleSound_AgencyId = 22975, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AudibleSound_VersionId = 22976, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AudibleSound_ListId = + 22974, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AudibleSound_AgencyId = + 22975, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AudibleSound_VersionId = + 22976, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SilenceState = 22977, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SilenceState_Id = 22978, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SilenceState_Name = 22979, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SilenceState_Number = 22980, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SilenceState_EffectiveDisplayName = 22981, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SilenceState_TransitionTime = 22982, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SilenceState_EffectiveTransitionTime = 22983, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SilenceState_TrueState = 22984, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SilenceState_FalseState = 22985, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SilenceState_Id = + 22978, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SilenceState_Name = + 22979, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SilenceState_Number = + 22980, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SilenceState_EffectiveDisplayName = + 22981, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SilenceState_TransitionTime = + 22982, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SilenceState_EffectiveTransitionTime = + 22983, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SilenceState_TrueState = + 22984, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_SilenceState_FalseState = + 22985, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_OnDelay = 22986, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_OffDelay = 22987, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_FirstInGroupFlag = 22988, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_FirstInGroupFlag = + 22988, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LatchedState = 22990, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LatchedState_Id = 22991, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LatchedState_Name = 22992, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LatchedState_Number = 22993, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LatchedState_EffectiveDisplayName = 22994, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LatchedState_TransitionTime = 22995, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LatchedState_EffectiveTransitionTime = 22996, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LatchedState_TrueState = 22997, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LatchedState_FalseState = 22998, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LatchedState_Id = + 22991, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LatchedState_Name = + 22992, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LatchedState_Number = + 22993, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LatchedState_EffectiveDisplayName = + 22994, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LatchedState_TransitionTime = + 22995, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LatchedState_EffectiveTransitionTime = + 22996, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LatchedState_TrueState = + 22997, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_LatchedState_FalseState = + 22998, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ReAlarmTime = 22999, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ReAlarmRepeatCount = 23000, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ReAlarmRepeatCount = + 23000, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_NormalState = 23007, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ExpirationDate = 23008, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ExpirationLimit = 23009, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_CertificateType = 23010, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ExpirationDate = + 23008, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ExpirationLimit = + 23009, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_CertificateType = + 23010, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Certificate = 23011, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EventId = 23013, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EventType = 23014, @@ -14084,389 +16400,733 @@ pub enum VariableId { ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LocalTime = 23019, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Message = 23020, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Severity = 23021, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConditionClassId = 23022, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConditionClassName = 23023, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConditionSubClassId = 23024, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConditionSubClassName = 23025, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConditionName = 23026, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConditionClassId = + 23022, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConditionClassName = + 23023, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConditionSubClassId = + 23024, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConditionSubClassName = + 23025, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConditionName = + 23026, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_BranchId = 23027, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Retain = 23028, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EnabledState = 23029, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EnabledState_Id = 23030, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EnabledState_Name = 23031, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EnabledState_Number = 23032, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EnabledState_EffectiveDisplayName = 23033, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EnabledState_TransitionTime = 23034, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EnabledState_EffectiveTransitionTime = 23035, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EnabledState_TrueState = 23036, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EnabledState_FalseState = 23037, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EnabledState_Id = + 23030, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EnabledState_Name = + 23031, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EnabledState_Number = + 23032, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EnabledState_EffectiveDisplayName = + 23033, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EnabledState_TransitionTime = + 23034, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EnabledState_EffectiveTransitionTime = + 23035, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EnabledState_TrueState = + 23036, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_EnabledState_FalseState = + 23037, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Quality = 23038, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Quality_SourceTimestamp = 23039, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Quality_SourceTimestamp = + 23039, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LastSeverity = 23040, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LastSeverity_SourceTimestamp = 23041, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LastSeverity_SourceTimestamp = + 23041, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Comment = 23042, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Comment_SourceTimestamp = 23043, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Comment_SourceTimestamp = + 23043, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ClientUserId = 23044, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AddComment_InputArguments = 23048, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AddComment_InputArguments = + 23048, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AckedState = 23049, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AckedState_Id = 23050, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AckedState_Name = 23051, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AckedState_Number = 23052, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AckedState_EffectiveDisplayName = 23053, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AckedState_TransitionTime = 23054, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AckedState_EffectiveTransitionTime = 23055, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AckedState_TrueState = 23056, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AckedState_FalseState = 23057, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConfirmedState = 23058, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConfirmedState_Id = 23059, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConfirmedState_Name = 23060, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConfirmedState_Number = 23061, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConfirmedState_EffectiveDisplayName = 23062, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConfirmedState_TransitionTime = 23063, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConfirmedState_EffectiveTransitionTime = 23064, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConfirmedState_TrueState = 23065, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConfirmedState_FalseState = 23066, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Acknowledge_InputArguments = 23068, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Confirm_InputArguments = 23070, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AckedState_Id = + 23050, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AckedState_Name = + 23051, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AckedState_Number = + 23052, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AckedState_EffectiveDisplayName = + 23053, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AckedState_TransitionTime = + 23054, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AckedState_EffectiveTransitionTime = + 23055, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AckedState_TrueState = + 23056, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AckedState_FalseState = + 23057, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConfirmedState = + 23058, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConfirmedState_Id = + 23059, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConfirmedState_Name = + 23060, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConfirmedState_Number = + 23061, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConfirmedState_EffectiveDisplayName = + 23062, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConfirmedState_TransitionTime = + 23063, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConfirmedState_EffectiveTransitionTime = + 23064, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConfirmedState_TrueState = + 23065, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ConfirmedState_FalseState = + 23066, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Acknowledge_InputArguments = + 23068, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Confirm_InputArguments = + 23070, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ActiveState = 23071, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ActiveState_Id = 23072, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ActiveState_Name = 23073, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ActiveState_Number = 23074, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ActiveState_EffectiveDisplayName = 23075, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ActiveState_TransitionTime = 23076, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ActiveState_EffectiveTransitionTime = 23077, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ActiveState_TrueState = 23078, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ActiveState_FalseState = 23079, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ActiveState_Id = + 23072, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ActiveState_Name = + 23073, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ActiveState_Number = + 23074, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ActiveState_EffectiveDisplayName = + 23075, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ActiveState_TransitionTime = + 23076, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ActiveState_EffectiveTransitionTime = + 23077, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ActiveState_TrueState = + 23078, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ActiveState_FalseState = + 23079, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_InputNode = 23080, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SuppressedState = 23081, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SuppressedState_Id = 23082, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SuppressedState_Name = 23083, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SuppressedState_Number = 23084, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SuppressedState_EffectiveDisplayName = 23085, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SuppressedState_TransitionTime = 23086, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SuppressedState_EffectiveTransitionTime = 23087, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SuppressedState_TrueState = 23088, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SuppressedState_FalseState = 23089, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_OutOfServiceState = 23090, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_OutOfServiceState_Id = 23091, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_OutOfServiceState_Name = 23092, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_OutOfServiceState_Number = 23093, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_OutOfServiceState_EffectiveDisplayName = 23094, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_OutOfServiceState_TransitionTime = 23095, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_OutOfServiceState_EffectiveTransitionTime = 23096, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_OutOfServiceState_TrueState = 23097, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_OutOfServiceState_FalseState = 23098, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_CurrentState = 23100, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_CurrentState_Id = 23101, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_CurrentState_Name = 23102, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_CurrentState_Number = 23103, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_CurrentState_EffectiveDisplayName = 23104, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_LastTransition = 23105, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_LastTransition_Id = 23106, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_LastTransition_Name = 23107, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_LastTransition_Number = 23108, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_LastTransition_TransitionTime = 23109, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_LastTransition_EffectiveTransitionTime = 23110, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_AvailableStates = 23111, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_AvailableTransitions = 23112, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_UnshelveTime = 23113, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_TimedShelve_InputArguments = 23115, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SuppressedOrShelved = 23118, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_MaxTimeShelved = 23119, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AudibleEnabled = 23120, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SuppressedState = + 23081, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SuppressedState_Id = + 23082, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SuppressedState_Name = + 23083, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SuppressedState_Number = + 23084, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SuppressedState_EffectiveDisplayName = + 23085, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SuppressedState_TransitionTime = + 23086, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SuppressedState_EffectiveTransitionTime = + 23087, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SuppressedState_TrueState = + 23088, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SuppressedState_FalseState = + 23089, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_OutOfServiceState = + 23090, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_OutOfServiceState_Id = + 23091, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_OutOfServiceState_Name = + 23092, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_OutOfServiceState_Number = + 23093, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_OutOfServiceState_EffectiveDisplayName = + 23094, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_OutOfServiceState_TransitionTime = + 23095, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_OutOfServiceState_EffectiveTransitionTime = + 23096, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_OutOfServiceState_TrueState = + 23097, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_OutOfServiceState_FalseState = + 23098, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_CurrentState = + 23100, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_CurrentState_Id = + 23101, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_CurrentState_Name = + 23102, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_CurrentState_Number = + 23103, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_CurrentState_EffectiveDisplayName = + 23104, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_LastTransition = + 23105, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_LastTransition_Id = + 23106, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_LastTransition_Name = + 23107, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_LastTransition_Number = + 23108, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_LastTransition_TransitionTime = + 23109, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_LastTransition_EffectiveTransitionTime = + 23110, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_AvailableStates = + 23111, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_AvailableTransitions = + 23112, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_UnshelveTime = + 23113, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_TimedShelve_InputArguments = + 23115, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SuppressedOrShelved = + 23118, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_MaxTimeShelved = + 23119, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AudibleEnabled = + 23120, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AudibleSound = 23121, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AudibleSound_ListId = 23122, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AudibleSound_AgencyId = 23123, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AudibleSound_VersionId = 23124, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AudibleSound_ListId = + 23122, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AudibleSound_AgencyId = + 23123, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AudibleSound_VersionId = + 23124, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SilenceState = 23125, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SilenceState_Id = 23126, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SilenceState_Name = 23127, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SilenceState_Number = 23128, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SilenceState_EffectiveDisplayName = 23129, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SilenceState_TransitionTime = 23130, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SilenceState_EffectiveTransitionTime = 23131, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SilenceState_TrueState = 23132, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SilenceState_FalseState = 23133, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SilenceState_Id = + 23126, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SilenceState_Name = + 23127, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SilenceState_Number = + 23128, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SilenceState_EffectiveDisplayName = + 23129, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SilenceState_TransitionTime = + 23130, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SilenceState_EffectiveTransitionTime = + 23131, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SilenceState_TrueState = + 23132, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_SilenceState_FalseState = + 23133, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_OnDelay = 23134, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_OffDelay = 23135, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_FirstInGroupFlag = 23136, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_FirstInGroupFlag = + 23136, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LatchedState = 23138, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LatchedState_Id = 23139, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LatchedState_Name = 23140, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LatchedState_Number = 23141, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LatchedState_EffectiveDisplayName = 23142, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LatchedState_TransitionTime = 23143, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LatchedState_EffectiveTransitionTime = 23144, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LatchedState_TrueState = 23145, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LatchedState_FalseState = 23146, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LatchedState_Id = + 23139, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LatchedState_Name = + 23140, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LatchedState_Number = + 23141, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LatchedState_EffectiveDisplayName = + 23142, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LatchedState_TransitionTime = + 23143, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LatchedState_EffectiveTransitionTime = + 23144, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LatchedState_TrueState = + 23145, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LatchedState_FalseState = + 23146, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ReAlarmTime = 23147, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ReAlarmRepeatCount = 23148, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ReAlarmRepeatCount = + 23148, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_NormalState = 23155, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_TrustListId = 23156, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LastUpdateTime = 23157, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_UpdateFrequency = 23158, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_LastUpdateTime = + 23157, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_UpdateFrequency = + 23158, ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustList_UpdateFrequency = 23159, ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EventId = 23161, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EventType = 23162, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SourceNode = 23163, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SourceName = 23164, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EventType = + 23162, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SourceNode = + 23163, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SourceName = + 23164, ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Time = 23165, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ReceiveTime = 23166, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LocalTime = 23167, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ReceiveTime = + 23166, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LocalTime = + 23167, ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Message = 23168, ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Severity = 23169, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConditionClassId = 23170, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConditionClassName = 23171, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConditionSubClassId = 23172, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConditionSubClassName = 23173, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConditionName = 23174, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConditionClassId = + 23170, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConditionClassName = + 23171, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConditionSubClassId = + 23172, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConditionSubClassName = + 23173, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConditionName = + 23174, ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_BranchId = 23175, ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Retain = 23176, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EnabledState = 23177, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EnabledState_Id = 23178, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EnabledState_Name = 23179, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EnabledState_Number = 23180, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EnabledState_EffectiveDisplayName = 23181, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EnabledState_TransitionTime = 23182, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EnabledState_EffectiveTransitionTime = 23183, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EnabledState_TrueState = 23184, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EnabledState_FalseState = 23185, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EnabledState = + 23177, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EnabledState_Id = + 23178, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EnabledState_Name = + 23179, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EnabledState_Number = + 23180, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EnabledState_EffectiveDisplayName = + 23181, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EnabledState_TransitionTime = + 23182, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EnabledState_EffectiveTransitionTime = + 23183, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EnabledState_TrueState = + 23184, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_EnabledState_FalseState = + 23185, ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Quality = 23186, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Quality_SourceTimestamp = 23187, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LastSeverity = 23188, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LastSeverity_SourceTimestamp = 23189, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Quality_SourceTimestamp = + 23187, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LastSeverity = + 23188, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LastSeverity_SourceTimestamp = + 23189, ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Comment = 23190, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Comment_SourceTimestamp = 23191, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ClientUserId = 23192, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AddComment_InputArguments = 23196, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AckedState = 23197, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AckedState_Id = 23198, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AckedState_Name = 23199, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AckedState_Number = 23200, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AckedState_EffectiveDisplayName = 23201, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AckedState_TransitionTime = 23202, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AckedState_EffectiveTransitionTime = 23203, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AckedState_TrueState = 23204, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AckedState_FalseState = 23205, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConfirmedState = 23206, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConfirmedState_Id = 23207, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConfirmedState_Name = 23208, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConfirmedState_Number = 23209, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConfirmedState_EffectiveDisplayName = 23210, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConfirmedState_TransitionTime = 23211, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConfirmedState_EffectiveTransitionTime = 23212, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConfirmedState_TrueState = 23213, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConfirmedState_FalseState = 23214, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Acknowledge_InputArguments = 23216, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Confirm_InputArguments = 23218, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ActiveState = 23219, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ActiveState_Id = 23220, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ActiveState_Name = 23221, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ActiveState_Number = 23222, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ActiveState_EffectiveDisplayName = 23223, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ActiveState_TransitionTime = 23224, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ActiveState_EffectiveTransitionTime = 23225, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ActiveState_TrueState = 23226, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ActiveState_FalseState = 23227, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_InputNode = 23228, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SuppressedState = 23229, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SuppressedState_Id = 23230, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SuppressedState_Name = 23231, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SuppressedState_Number = 23232, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SuppressedState_EffectiveDisplayName = 23233, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SuppressedState_TransitionTime = 23234, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SuppressedState_EffectiveTransitionTime = 23235, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SuppressedState_TrueState = 23236, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SuppressedState_FalseState = 23237, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState = 23238, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState_Id = 23239, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState_Name = 23240, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState_Number = 23241, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState_EffectiveDisplayName = 23242, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState_TransitionTime = 23243, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState_EffectiveTransitionTime = 23244, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState_TrueState = 23245, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState_FalseState = 23246, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_CurrentState = 23248, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_CurrentState_Id = 23249, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_CurrentState_Name = 23250, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_CurrentState_Number = 23251, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_CurrentState_EffectiveDisplayName = 23252, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_LastTransition = 23253, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_LastTransition_Id = 23254, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_LastTransition_Name = 23255, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_LastTransition_Number = 23256, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_LastTransition_TransitionTime = 23257, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_LastTransition_EffectiveTransitionTime = 23258, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_AvailableStates = 23259, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_AvailableTransitions = 23260, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_UnshelveTime = 23261, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_TimedShelve_InputArguments = 23263, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SuppressedOrShelved = 23266, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_MaxTimeShelved = 23267, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AudibleEnabled = 23268, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AudibleSound = 23269, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AudibleSound_ListId = 23270, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AudibleSound_AgencyId = 23271, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AudibleSound_VersionId = 23272, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SilenceState = 23273, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SilenceState_Id = 23274, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SilenceState_Name = 23275, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SilenceState_Number = 23276, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SilenceState_EffectiveDisplayName = 23277, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SilenceState_TransitionTime = 23278, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SilenceState_EffectiveTransitionTime = 23279, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SilenceState_TrueState = 23280, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SilenceState_FalseState = 23281, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Comment_SourceTimestamp = + 23191, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ClientUserId = + 23192, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AddComment_InputArguments = + 23196, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AckedState = + 23197, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AckedState_Id = + 23198, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AckedState_Name = + 23199, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AckedState_Number = + 23200, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AckedState_EffectiveDisplayName = + 23201, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AckedState_TransitionTime = + 23202, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AckedState_EffectiveTransitionTime = + 23203, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AckedState_TrueState = + 23204, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AckedState_FalseState = + 23205, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConfirmedState = + 23206, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConfirmedState_Id = + 23207, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConfirmedState_Name = + 23208, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConfirmedState_Number = + 23209, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConfirmedState_EffectiveDisplayName = + 23210, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConfirmedState_TransitionTime = + 23211, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConfirmedState_EffectiveTransitionTime = + 23212, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConfirmedState_TrueState = + 23213, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ConfirmedState_FalseState = + 23214, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Acknowledge_InputArguments = + 23216, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Confirm_InputArguments = + 23218, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ActiveState = + 23219, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ActiveState_Id = + 23220, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ActiveState_Name = + 23221, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ActiveState_Number = + 23222, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ActiveState_EffectiveDisplayName = + 23223, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ActiveState_TransitionTime = + 23224, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ActiveState_EffectiveTransitionTime = + 23225, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ActiveState_TrueState = + 23226, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ActiveState_FalseState = + 23227, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_InputNode = + 23228, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SuppressedState = + 23229, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SuppressedState_Id = + 23230, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SuppressedState_Name = + 23231, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SuppressedState_Number = + 23232, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SuppressedState_EffectiveDisplayName = + 23233, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SuppressedState_TransitionTime = + 23234, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SuppressedState_EffectiveTransitionTime = + 23235, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SuppressedState_TrueState = + 23236, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SuppressedState_FalseState = + 23237, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState = + 23238, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState_Id = + 23239, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState_Name = + 23240, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState_Number = + 23241, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState_EffectiveDisplayName = + 23242, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState_TransitionTime = + 23243, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState_EffectiveTransitionTime = + 23244, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState_TrueState = + 23245, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_OutOfServiceState_FalseState = + 23246, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_CurrentState = + 23248, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_CurrentState_Id = + 23249, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_CurrentState_Name = + 23250, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_CurrentState_Number = + 23251, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_CurrentState_EffectiveDisplayName = + 23252, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_LastTransition = + 23253, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_LastTransition_Id = + 23254, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_LastTransition_Name = + 23255, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_LastTransition_Number = + 23256, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_LastTransition_TransitionTime = + 23257, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_LastTransition_EffectiveTransitionTime = + 23258, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_AvailableStates = + 23259, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_AvailableTransitions = + 23260, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_UnshelveTime = + 23261, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_TimedShelve_InputArguments = + 23263, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SuppressedOrShelved = + 23266, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_MaxTimeShelved = + 23267, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AudibleEnabled = + 23268, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AudibleSound = + 23269, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AudibleSound_ListId = + 23270, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AudibleSound_AgencyId = + 23271, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AudibleSound_VersionId = + 23272, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SilenceState = + 23273, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SilenceState_Id = + 23274, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SilenceState_Name = + 23275, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SilenceState_Number = + 23276, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SilenceState_EffectiveDisplayName = + 23277, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SilenceState_TransitionTime = + 23278, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SilenceState_EffectiveTransitionTime = + 23279, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SilenceState_TrueState = + 23280, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_SilenceState_FalseState = + 23281, ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_OnDelay = 23282, ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_OffDelay = 23283, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_FirstInGroupFlag = 23284, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LatchedState = 23286, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LatchedState_Id = 23287, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LatchedState_Name = 23288, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LatchedState_Number = 23289, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LatchedState_EffectiveDisplayName = 23290, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LatchedState_TransitionTime = 23291, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LatchedState_EffectiveTransitionTime = 23292, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LatchedState_TrueState = 23293, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LatchedState_FalseState = 23294, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ReAlarmTime = 23295, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ReAlarmRepeatCount = 23296, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_NormalState = 23303, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ExpirationDate = 23304, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ExpirationLimit = 23305, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_CertificateType = 23306, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Certificate = 23307, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_FirstInGroupFlag = + 23284, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LatchedState = + 23286, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LatchedState_Id = + 23287, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LatchedState_Name = + 23288, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LatchedState_Number = + 23289, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LatchedState_EffectiveDisplayName = + 23290, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LatchedState_TransitionTime = + 23291, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LatchedState_EffectiveTransitionTime = + 23292, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LatchedState_TrueState = + 23293, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_LatchedState_FalseState = + 23294, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ReAlarmTime = + 23295, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ReAlarmRepeatCount = + 23296, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_NormalState = + 23303, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ExpirationDate = + 23304, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ExpirationLimit = + 23305, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_CertificateType = + 23306, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Certificate = + 23307, ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EventId = 23309, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EventType = 23310, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SourceNode = 23311, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SourceName = 23312, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EventType = + 23310, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SourceNode = + 23311, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SourceName = + 23312, ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Time = 23313, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ReceiveTime = 23314, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LocalTime = 23315, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ReceiveTime = + 23314, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LocalTime = + 23315, ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Message = 23316, ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Severity = 23317, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConditionClassId = 23318, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConditionClassName = 23319, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConditionSubClassId = 23320, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConditionSubClassName = 23321, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConditionName = 23322, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConditionClassId = + 23318, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConditionClassName = + 23319, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConditionSubClassId = + 23320, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConditionSubClassName = + 23321, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConditionName = + 23322, ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_BranchId = 23323, ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Retain = 23324, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState = 23325, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState_Id = 23326, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState_Name = 23327, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState_Number = 23328, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState_EffectiveDisplayName = 23329, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState_TransitionTime = 23330, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState_EffectiveTransitionTime = 23331, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState_TrueState = 23332, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState_FalseState = 23333, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState = + 23325, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState_Id = + 23326, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState_Name = + 23327, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState_Number = + 23328, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState_EffectiveDisplayName = + 23329, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState_TransitionTime = + 23330, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState_EffectiveTransitionTime = + 23331, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState_TrueState = + 23332, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_EnabledState_FalseState = + 23333, ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Quality = 23334, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Quality_SourceTimestamp = 23335, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LastSeverity = 23336, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LastSeverity_SourceTimestamp = 23337, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Quality_SourceTimestamp = + 23335, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LastSeverity = + 23336, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LastSeverity_SourceTimestamp = + 23337, ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Comment = 23338, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Comment_SourceTimestamp = 23339, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ClientUserId = 23340, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AddComment_InputArguments = 23344, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AckedState = 23345, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AckedState_Id = 23346, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AckedState_Name = 23347, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AckedState_Number = 23348, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AckedState_EffectiveDisplayName = 23349, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AckedState_TransitionTime = 23350, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AckedState_EffectiveTransitionTime = 23351, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AckedState_TrueState = 23352, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AckedState_FalseState = 23353, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConfirmedState = 23354, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConfirmedState_Id = 23355, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConfirmedState_Name = 23356, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConfirmedState_Number = 23357, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConfirmedState_EffectiveDisplayName = 23358, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConfirmedState_TransitionTime = 23359, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConfirmedState_EffectiveTransitionTime = 23360, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConfirmedState_TrueState = 23361, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConfirmedState_FalseState = 23362, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Acknowledge_InputArguments = 23364, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Confirm_InputArguments = 23366, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState = 23367, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState_Id = 23368, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState_Name = 23369, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState_Number = 23370, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState_EffectiveDisplayName = 23371, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState_TransitionTime = 23372, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState_EffectiveTransitionTime = 23373, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState_TrueState = 23374, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState_FalseState = 23375, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_InputNode = 23376, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState = 23377, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState_Id = 23378, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState_Name = 23379, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState_Number = 23380, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState_EffectiveDisplayName = 23381, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState_TransitionTime = 23382, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState_EffectiveTransitionTime = 23383, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState_TrueState = 23384, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState_FalseState = 23385, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState = 23386, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState_Id = 23387, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState_Name = 23388, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState_Number = 23389, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState_EffectiveDisplayName = 23390, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState_TransitionTime = 23391, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState_EffectiveTransitionTime = 23392, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState_TrueState = 23393, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState_FalseState = 23394, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_CurrentState = 23396, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_CurrentState_Id = 23397, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_CurrentState_Name = 23398, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_CurrentState_Number = 23399, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_CurrentState_EffectiveDisplayName = 23400, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_LastTransition = 23401, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_LastTransition_Id = 23402, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_LastTransition_Name = 23403, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_LastTransition_Number = 23404, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_LastTransition_TransitionTime = 23405, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_LastTransition_EffectiveTransitionTime = 23406, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_AvailableStates = 23407, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_AvailableTransitions = 23408, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_UnshelveTime = 23409, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_TimedShelve_InputArguments = 23411, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedOrShelved = 23414, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_MaxTimeShelved = 23415, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AudibleEnabled = 23416, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AudibleSound = 23417, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AudibleSound_ListId = 23418, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AudibleSound_AgencyId = 23419, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AudibleSound_VersionId = 23420, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SilenceState = 23421, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SilenceState_Id = 23422, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SilenceState_Name = 23423, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SilenceState_Number = 23424, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SilenceState_EffectiveDisplayName = 23425, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SilenceState_TransitionTime = 23426, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SilenceState_EffectiveTransitionTime = 23427, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SilenceState_TrueState = 23428, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SilenceState_FalseState = 23429, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Comment_SourceTimestamp = + 23339, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ClientUserId = + 23340, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AddComment_InputArguments = + 23344, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AckedState = + 23345, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AckedState_Id = + 23346, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AckedState_Name = + 23347, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AckedState_Number = + 23348, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AckedState_EffectiveDisplayName = + 23349, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AckedState_TransitionTime = + 23350, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AckedState_EffectiveTransitionTime = + 23351, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AckedState_TrueState = + 23352, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AckedState_FalseState = + 23353, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConfirmedState = + 23354, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConfirmedState_Id = + 23355, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConfirmedState_Name = + 23356, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConfirmedState_Number = + 23357, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConfirmedState_EffectiveDisplayName = + 23358, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConfirmedState_TransitionTime = + 23359, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConfirmedState_EffectiveTransitionTime = + 23360, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConfirmedState_TrueState = + 23361, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ConfirmedState_FalseState = + 23362, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Acknowledge_InputArguments = + 23364, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Confirm_InputArguments = + 23366, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState = + 23367, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState_Id = + 23368, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState_Name = + 23369, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState_Number = + 23370, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState_EffectiveDisplayName = + 23371, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState_TransitionTime = + 23372, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState_EffectiveTransitionTime = + 23373, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState_TrueState = + 23374, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ActiveState_FalseState = + 23375, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_InputNode = + 23376, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState = + 23377, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState_Id = + 23378, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState_Name = + 23379, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState_Number = + 23380, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState_EffectiveDisplayName = + 23381, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState_TransitionTime = + 23382, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState_EffectiveTransitionTime = + 23383, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState_TrueState = + 23384, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedState_FalseState = + 23385, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState = + 23386, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState_Id = + 23387, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState_Name = + 23388, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState_Number = + 23389, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState_EffectiveDisplayName = + 23390, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState_TransitionTime = + 23391, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState_EffectiveTransitionTime = + 23392, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState_TrueState = + 23393, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_OutOfServiceState_FalseState = + 23394, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_CurrentState = + 23396, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_CurrentState_Id = + 23397, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_CurrentState_Name = + 23398, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_CurrentState_Number = + 23399, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_CurrentState_EffectiveDisplayName = + 23400, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_LastTransition = + 23401, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_LastTransition_Id = + 23402, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_LastTransition_Name = + 23403, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_LastTransition_Number = + 23404, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_LastTransition_TransitionTime = + 23405, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_LastTransition_EffectiveTransitionTime = + 23406, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_AvailableStates = + 23407, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_AvailableTransitions = + 23408, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_UnshelveTime = + 23409, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_TimedShelve_InputArguments = + 23411, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SuppressedOrShelved = + 23414, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_MaxTimeShelved = + 23415, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AudibleEnabled = + 23416, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AudibleSound = + 23417, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AudibleSound_ListId = + 23418, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AudibleSound_AgencyId = + 23419, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AudibleSound_VersionId = + 23420, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SilenceState = + 23421, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SilenceState_Id = + 23422, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SilenceState_Name = + 23423, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SilenceState_Number = + 23424, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SilenceState_EffectiveDisplayName = + 23425, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SilenceState_TransitionTime = + 23426, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SilenceState_EffectiveTransitionTime = + 23427, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SilenceState_TrueState = + 23428, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_SilenceState_FalseState = + 23429, ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_OnDelay = 23430, ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_OffDelay = 23431, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_FirstInGroupFlag = 23432, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LatchedState = 23434, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LatchedState_Id = 23435, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LatchedState_Name = 23436, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LatchedState_Number = 23437, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LatchedState_EffectiveDisplayName = 23438, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LatchedState_TransitionTime = 23439, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LatchedState_EffectiveTransitionTime = 23440, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LatchedState_TrueState = 23441, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LatchedState_FalseState = 23442, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ReAlarmTime = 23443, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ReAlarmRepeatCount = 23444, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_NormalState = 23451, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_TrustListId = 23452, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LastUpdateTime = 23453, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_UpdateFrequency = 23454, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_FirstInGroupFlag = + 23432, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LatchedState = + 23434, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LatchedState_Id = + 23435, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LatchedState_Name = + 23436, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LatchedState_Number = + 23437, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LatchedState_EffectiveDisplayName = + 23438, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LatchedState_TransitionTime = + 23439, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LatchedState_EffectiveTransitionTime = + 23440, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LatchedState_TrueState = + 23441, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LatchedState_FalseState = + 23442, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ReAlarmTime = + 23443, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ReAlarmRepeatCount = + 23444, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_NormalState = + 23451, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_TrustListId = + 23452, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_LastUpdateTime = + 23453, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_UpdateFrequency = + 23454, AliasNameCategoryType_SubAliasNameCategories_Placeholder_FindAlias_InputArguments = 23460, AliasNameCategoryType_SubAliasNameCategories_Placeholder_FindAlias_OutputArguments = 23461, AliasNameCategoryType_FindAlias_InputArguments = 23463, @@ -14500,12 +17160,17 @@ pub enum VariableId { CertificateGroupFolderType_DefaultHttpsGroup_GetRejectedList_OutputArguments = 23532, CertificateGroupFolderType_DefaultUserTokenGroup_GetRejectedList_OutputArguments = 23534, CertificateGroupFolderType_AdditionalGroup_Placeholder_GetRejectedList_OutputArguments = 23536, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_GetRejectedList_OutputArguments = 23545, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_GetRejectedList_OutputArguments = 23547, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_GetRejectedList_OutputArguments = 23549, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_GetRejectedList_OutputArguments = 23551, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_GetRejectedList_OutputArguments = + 23545, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_GetRejectedList_OutputArguments = + 23547, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_GetRejectedList_OutputArguments = + 23549, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_GetRejectedList_OutputArguments = + 23551, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_GetRejectedList_OutputArguments = 23553, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_GetRejectedList_OutputArguments = 23555, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_GetRejectedList_OutputArguments = + 23555, AuthorizationServicesConfigurationFolderType_ServiceName_Placeholder_ServiceUri = 23558, AuthorizationServicesConfigurationFolderType_ServiceName_Placeholder_ServiceCertificate = 23559, AuthorizationServicesConfigurationFolderType_ServiceName_Placeholder_IssuerEndpointUrl = 23560, @@ -25504,7 +28169,8 @@ pub enum MethodId { ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_OpenWithMasks = 12663, ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_CloseAndUpdate = 12666, ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_AddCertificate = 12668, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_RemoveCertificate = 12670, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustList_RemoveCertificate = + 12670, ServerConfigurationType_CreateSigningRequest = 12731, ServerConfigurationType_ApplyChanges = 12734, ServerConfiguration_CreateSigningRequest = 12737, @@ -25624,10 +28290,14 @@ pub enum MethodId { ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_Write = 13966, ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_GetPosition = 13968, ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_SetPosition = 13971, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_OpenWithMasks = 13974, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_CloseAndUpdate = 13977, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_AddCertificate = 13980, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_RemoveCertificate = 13982, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_OpenWithMasks = + 13974, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_CloseAndUpdate = + 13977, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_AddCertificate = + 13980, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustList_RemoveCertificate = + 13982, ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_Open = 13992, ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_Close = 13995, ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustList_Read = 13997, @@ -25645,9 +28315,12 @@ pub enum MethodId { ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_GetPosition = 14036, ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_SetPosition = 14039, ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_OpenWithMasks = 14042, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_CloseAndUpdate = 14045, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_AddCertificate = 14048, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_RemoveCertificate = 14050, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_CloseAndUpdate = + 14045, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_AddCertificate = + 14048, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustList_RemoveCertificate = + 14050, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_Open = 14095, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_Close = 14098, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustList_Read = 14100, @@ -26159,9 +28832,12 @@ pub enum MethodId { CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_AddComment = 20326, CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_Acknowledge = 20346, CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_Confirm = 20348, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ShelvingState_TimedShelve = 20393, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ShelvingState_Unshelve = 20395, - CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ShelvingState_OneShotShelve = 20396, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ShelvingState_TimedShelve = + 20393, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ShelvingState_Unshelve = + 20395, + CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_ShelvingState_OneShotShelve = + 20396, CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_Silence = 20430, CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_Suppress = 20431, CertificateGroupFolderType_DefaultApplicationGroup_CertificateExpired_Unsuppress = 20432, @@ -26173,9 +28849,12 @@ pub enum MethodId { CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_AddComment = 20476, CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_Acknowledge = 20496, CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_Confirm = 20498, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_TimedShelve = 20543, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_Unshelve = 20545, - CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_OneShotShelve = 20546, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_TimedShelve = + 20543, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_Unshelve = + 20545, + CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_OneShotShelve = + 20546, CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_Silence = 20578, CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_Suppress = 20579, CertificateGroupFolderType_DefaultApplicationGroup_TrustListOutOfDate_Unsuppress = 20580, @@ -26187,9 +28866,11 @@ pub enum MethodId { CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_AddComment = 20624, CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_Acknowledge = 20644, CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_Confirm = 20646, - CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ShelvingState_TimedShelve = 20691, + CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ShelvingState_TimedShelve = + 20691, CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ShelvingState_Unshelve = 20693, - CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ShelvingState_OneShotShelve = 20694, + CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_ShelvingState_OneShotShelve = + 20694, CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_Silence = 20726, CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_Suppress = 20727, CertificateGroupFolderType_DefaultHttpsGroup_CertificateExpired_Unsuppress = 20728, @@ -26201,9 +28882,11 @@ pub enum MethodId { CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_AddComment = 20772, CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_Acknowledge = 20792, CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_Confirm = 20794, - CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_TimedShelve = 20839, + CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_TimedShelve = + 20839, CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_Unshelve = 20841, - CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_OneShotShelve = 20842, + CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_OneShotShelve = + 20842, CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_Silence = 20874, CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_Suppress = 20875, CertificateGroupFolderType_DefaultHttpsGroup_TrustListOutOfDate_Unsuppress = 20876, @@ -26215,9 +28898,12 @@ pub enum MethodId { CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_AddComment = 20920, CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_Acknowledge = 20940, CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_Confirm = 20942, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ShelvingState_TimedShelve = 20987, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ShelvingState_Unshelve = 20989, - CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ShelvingState_OneShotShelve = 20990, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ShelvingState_TimedShelve = + 20987, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ShelvingState_Unshelve = + 20989, + CertificateGroupFolderType_DefaultUserTokenGroup_CertificateExpired_ShelvingState_OneShotShelve = + 20990, ReaderGroupType_DataSetReaderName_Placeholder_CreateTargetVariables = 21009, ReaderGroupType_DataSetReaderName_Placeholder_CreateDataSetMirror = 21012, ReaderGroupType_Diagnostics_Reset = 21027, @@ -26235,9 +28921,12 @@ pub enum MethodId { CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_AddComment = 21271, CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_Acknowledge = 21291, CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_Confirm = 21293, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_TimedShelve = 21338, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_Unshelve = 21340, - CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_OneShotShelve = 21341, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_TimedShelve = + 21338, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_Unshelve = + 21340, + CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_OneShotShelve = + 21341, CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_Silence = 21373, CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_Suppress = 21374, CertificateGroupFolderType_DefaultUserTokenGroup_TrustListOutOfDate_Unsuppress = 21375, @@ -26249,196 +28938,328 @@ pub enum MethodId { CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_AddComment = 21419, CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_Acknowledge = 21439, CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_Confirm = 21441, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ShelvingState_TimedShelve = 21486, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ShelvingState_Unshelve = 21488, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ShelvingState_OneShotShelve = 21489, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ShelvingState_TimedShelve = + 21486, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ShelvingState_Unshelve = + 21488, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_ShelvingState_OneShotShelve = + 21489, CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_Silence = 21521, CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_Suppress = 21522, CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_Unsuppress = 21523, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_RemoveFromService = 21524, - CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_PlaceInService = 21525, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_RemoveFromService = + 21524, + CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_PlaceInService = + 21525, CertificateGroupFolderType_AdditionalGroup_Placeholder_CertificateExpired_Reset = 21526, CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_Disable = 21565, CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_Enable = 21566, CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_AddComment = 21567, CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_Acknowledge = 21587, CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_Confirm = 21589, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ShelvingState_TimedShelve = 21634, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ShelvingState_Unshelve = 21636, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ShelvingState_OneShotShelve = 21637, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ShelvingState_TimedShelve = + 21634, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ShelvingState_Unshelve = + 21636, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_ShelvingState_OneShotShelve = + 21637, CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_Silence = 21669, CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_Suppress = 21670, CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_Unsuppress = 21671, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_RemoveFromService = 21672, - CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_PlaceInService = 21673, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_RemoveFromService = + 21672, + CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_PlaceInService = + 21673, CertificateGroupFolderType_AdditionalGroup_Placeholder_TrustListOutOfDate_Reset = 21674, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Disable = 21713, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Enable = 21714, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AddComment = 21715, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Acknowledge = 21735, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Confirm = 21737, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_TimedShelve = 21782, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_Unshelve = 21784, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_OneShotShelve = 21785, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Silence = 21817, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Suppress = 21818, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Unsuppress = 21819, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_RemoveFromService = 21820, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_PlaceInService = 21821, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Reset = 21822, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Disable = 21861, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Enable = 21862, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AddComment = 21863, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Acknowledge = 21883, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Confirm = 21885, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_TimedShelve = 21930, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_Unshelve = 21932, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_OneShotShelve = 21933, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Silence = 21965, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Suppress = 21966, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Unsuppress = 21967, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_RemoveFromService = 21968, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_PlaceInService = 21969, - ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Reset = 21970, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Disable = + 21713, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Enable = + 21714, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AddComment = + 21715, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Acknowledge = + 21735, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Confirm = + 21737, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_TimedShelve = + 21782, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_Unshelve = + 21784, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_OneShotShelve = + 21785, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Silence = + 21817, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Suppress = + 21818, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Unsuppress = + 21819, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_RemoveFromService = + 21820, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_PlaceInService = + 21821, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Reset = + 21822, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Disable = + 21861, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Enable = + 21862, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AddComment = + 21863, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Acknowledge = + 21883, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Confirm = + 21885, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_TimedShelve = + 21930, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_Unshelve = + 21932, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_OneShotShelve = + 21933, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Silence = + 21965, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Suppress = + 21966, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Unsuppress = + 21967, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_RemoveFromService = + 21968, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_PlaceInService = + 21969, + ServerConfigurationType_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Reset = + 21970, ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Disable = 22009, ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Enable = 22010, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AddComment = 22011, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Acknowledge = 22031, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AddComment = + 22011, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Acknowledge = + 22031, ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Confirm = 22033, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_TimedShelve = 22078, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_Unshelve = 22080, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_OneShotShelve = 22081, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_TimedShelve = + 22078, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_Unshelve = + 22080, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_OneShotShelve = + 22081, ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Silence = 22113, ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Suppress = 22114, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Unsuppress = 22115, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_RemoveFromService = 22116, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_PlaceInService = 22117, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Unsuppress = + 22115, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_RemoveFromService = + 22116, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_PlaceInService = + 22117, ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Reset = 22118, ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Disable = 22157, ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Enable = 22158, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AddComment = 22159, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Acknowledge = 22179, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AddComment = + 22159, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Acknowledge = + 22179, ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Confirm = 22181, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_TimedShelve = 22226, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_Unshelve = 22228, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_OneShotShelve = 22229, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_TimedShelve = + 22226, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_Unshelve = + 22228, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_OneShotShelve = + 22229, ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Silence = 22261, ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Suppress = 22262, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Unsuppress = 22263, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_RemoveFromService = 22264, - ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_PlaceInService = 22265, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Unsuppress = + 22263, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_RemoveFromService = + 22264, + ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_PlaceInService = + 22265, ServerConfigurationType_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Reset = 22266, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Disable = 22305, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Enable = 22306, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AddComment = 22307, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Acknowledge = 22327, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Confirm = 22329, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_TimedShelve = 22374, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_Unshelve = 22376, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_OneShotShelve = 22377, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Silence = 22409, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Suppress = 22410, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Unsuppress = 22411, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_RemoveFromService = 22412, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_PlaceInService = 22413, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Reset = 22414, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Disable = 22453, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Enable = 22454, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AddComment = 22455, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Acknowledge = 22475, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Confirm = 22477, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_TimedShelve = 22522, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_Unshelve = 22524, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_OneShotShelve = 22525, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Silence = 22557, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Suppress = 22558, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Unsuppress = 22559, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_RemoveFromService = 22560, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_PlaceInService = 22561, - ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Reset = 22562, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Disable = 22601, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Disable = + 22305, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Enable = + 22306, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AddComment = + 22307, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Acknowledge = + 22327, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Confirm = + 22329, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_TimedShelve = + 22374, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_Unshelve = + 22376, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_OneShotShelve = + 22377, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Silence = + 22409, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Suppress = + 22410, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Unsuppress = + 22411, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_RemoveFromService = + 22412, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_PlaceInService = + 22413, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Reset = + 22414, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Disable = + 22453, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Enable = + 22454, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AddComment = + 22455, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Acknowledge = + 22475, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Confirm = + 22477, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_TimedShelve = + 22522, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_Unshelve = + 22524, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_OneShotShelve = + 22525, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Silence = + 22557, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Suppress = + 22558, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Unsuppress = + 22559, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_RemoveFromService = + 22560, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_PlaceInService = + 22561, + ServerConfigurationType_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Reset = + 22562, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Disable = + 22601, ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Enable = 22602, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AddComment = 22603, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Acknowledge = 22623, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Confirm = 22625, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_TimedShelve = 22670, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_Unshelve = 22672, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_OneShotShelve = 22673, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Silence = 22705, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Suppress = 22706, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Unsuppress = 22707, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_RemoveFromService = 22708, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_PlaceInService = 22709, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_AddComment = + 22603, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Acknowledge = + 22623, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Confirm = + 22625, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_TimedShelve = + 22670, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_Unshelve = + 22672, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_ShelvingState_OneShotShelve = + 22673, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Silence = + 22705, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Suppress = + 22706, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Unsuppress = + 22707, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_RemoveFromService = + 22708, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_PlaceInService = + 22709, ServerConfiguration_CertificateGroups_DefaultApplicationGroup_CertificateExpired_Reset = 22710, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Disable = 22749, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Disable = + 22749, ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Enable = 22750, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AddComment = 22751, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Acknowledge = 22771, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Confirm = 22773, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_TimedShelve = 22818, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_Unshelve = 22820, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_OneShotShelve = 22821, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Silence = 22853, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Suppress = 22854, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Unsuppress = 22855, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_RemoveFromService = 22856, - ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_PlaceInService = 22857, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_AddComment = + 22751, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Acknowledge = + 22771, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Confirm = + 22773, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_TimedShelve = + 22818, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_Unshelve = + 22820, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_ShelvingState_OneShotShelve = + 22821, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Silence = + 22853, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Suppress = + 22854, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Unsuppress = + 22855, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_RemoveFromService = + 22856, + ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_PlaceInService = + 22857, ServerConfiguration_CertificateGroups_DefaultApplicationGroup_TrustListOutOfDate_Reset = 22858, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Disable = 22897, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Enable = 22898, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_AddComment = 22899, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Acknowledge = 22919, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Confirm = 22921, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_TimedShelve = 22966, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_Unshelve = 22968, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_OneShotShelve = 22969, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_TimedShelve = + 22966, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_Unshelve = + 22968, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_ShelvingState_OneShotShelve = + 22969, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Silence = 23001, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Suppress = 23002, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Unsuppress = 23003, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_RemoveFromService = 23004, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_PlaceInService = 23005, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_RemoveFromService = + 23004, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_PlaceInService = + 23005, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_CertificateExpired_Reset = 23006, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Disable = 23045, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Enable = 23046, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_AddComment = 23047, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Acknowledge = 23067, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Confirm = 23069, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_TimedShelve = 23114, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_Unshelve = 23116, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_OneShotShelve = 23117, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_TimedShelve = + 23114, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_Unshelve = + 23116, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_ShelvingState_OneShotShelve = + 23117, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Silence = 23149, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Suppress = 23150, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Unsuppress = 23151, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_RemoveFromService = 23152, - ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_PlaceInService = 23153, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_RemoveFromService = + 23152, + ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_PlaceInService = + 23153, ServerConfiguration_CertificateGroups_DefaultHttpsGroup_TrustListOutOfDate_Reset = 23154, ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Disable = 23193, ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Enable = 23194, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AddComment = 23195, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Acknowledge = 23215, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_AddComment = + 23195, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Acknowledge = + 23215, ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Confirm = 23217, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_TimedShelve = 23262, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_Unshelve = 23264, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_OneShotShelve = 23265, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_TimedShelve = + 23262, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_Unshelve = + 23264, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_ShelvingState_OneShotShelve = + 23265, ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Silence = 23297, ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Suppress = 23298, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Unsuppress = 23299, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_RemoveFromService = 23300, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_PlaceInService = 23301, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Unsuppress = + 23299, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_RemoveFromService = + 23300, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_PlaceInService = + 23301, ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_CertificateExpired_Reset = 23302, ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Disable = 23341, ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Enable = 23342, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AddComment = 23343, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Acknowledge = 23363, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_AddComment = + 23343, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Acknowledge = + 23363, ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Confirm = 23365, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_TimedShelve = 23410, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_Unshelve = 23412, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_OneShotShelve = 23413, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_TimedShelve = + 23410, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_Unshelve = + 23412, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_ShelvingState_OneShotShelve = + 23413, ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Silence = 23445, ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Suppress = 23446, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Unsuppress = 23447, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_RemoveFromService = 23448, - ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_PlaceInService = 23449, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Unsuppress = + 23447, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_RemoveFromService = + 23448, + ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_PlaceInService = + 23449, ServerConfiguration_CertificateGroups_DefaultUserTokenGroup_TrustListOutOfDate_Reset = 23450, AliasNameCategoryType_SubAliasNameCategories_Placeholder_FindAlias = 23459, AliasNameCategoryType_FindAlias = 23462, diff --git a/types/src/notification_message.rs b/types/src/notification_message.rs index 6e1a09a52..3487076e3 100644 --- a/types/src/notification_message.rs +++ b/types/src/notification_message.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock ///! Helpers for NotificationMessage types use crate::{ diff --git a/types/src/numeric_range.rs b/types/src/numeric_range.rs index a6f0eeab0..49ab70c74 100644 --- a/types/src/numeric_range.rs +++ b/types/src/numeric_range.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! Contains the implementation of `NumericRange`. diff --git a/types/src/operand.rs b/types/src/operand.rs index de726935b..31c5f5dae 100644 --- a/types/src/operand.rs +++ b/types/src/operand.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use std::convert::TryFrom; diff --git a/types/src/qualified_name.rs b/types/src/qualified_name.rs index a32dff1c1..518369422 100644 --- a/types/src/qualified_name.rs +++ b/types/src/qualified_name.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! Contains the definition of `QualifiedName`. use std::io::{Read, Write}; diff --git a/types/src/relative_path.rs b/types/src/relative_path.rs index af07381ba..291854c5e 100644 --- a/types/src/relative_path.rs +++ b/types/src/relative_path.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! Contains functions used for making relative paths from / to strings, as per OPC UA Part 4, Appendix A //! diff --git a/types/src/request_header.rs b/types/src/request_header.rs index 0e63df3e6..ff8c78289 100644 --- a/types/src/request_header.rs +++ b/types/src/request_header.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use std::{ self, diff --git a/types/src/response_header.rs b/types/src/response_header.rs index c37f32d97..3a8911711 100644 --- a/types/src/response_header.rs +++ b/types/src/response_header.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock use std::{ self, diff --git a/types/src/service_types/activate_session_request.rs b/types/src/service_types/activate_session_request.rs index 67591d096..b5d015615 100644 --- a/types/src/service_types/activate_session_request.rs +++ b/types/src/service_types/activate_session_request.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,15 +10,9 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - request_header::RequestHeader, - string::UAString, - extension_object::ExtensionObject, - service_types::SignatureData, - service_types::SignedSoftwareCertificate, + basic_types::*, encoding::*, extension_object::ExtensionObject, node_ids::ObjectId, + request_header::RequestHeader, service_types::impls::MessageInfo, service_types::SignatureData, + service_types::SignedSoftwareCertificate, string::UAString, }; #[derive(Debug, Clone, PartialEq)] @@ -65,7 +59,8 @@ impl BinaryEncoder for ActivateSessionRequest { fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { let request_header = RequestHeader::decode(stream, decoding_options)?; let client_signature = SignatureData::decode(stream, decoding_options)?; - let client_software_certificates: Option> = read_array(stream, decoding_options)?; + let client_software_certificates: Option> = + read_array(stream, decoding_options)?; let locale_ids: Option> = read_array(stream, decoding_options)?; let user_identity_token = ExtensionObject::decode(stream, decoding_options)?; let user_token_signature = SignatureData::decode(stream, decoding_options)?; diff --git a/types/src/service_types/activate_session_response.rs b/types/src/service_types/activate_session_response.rs index 1f0f53dea..df0fd8793 100644 --- a/types/src/service_types/activate_session_response.rs +++ b/types/src/service_types/activate_session_response.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,14 +10,9 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - response_header::ResponseHeader, - byte_string::ByteString, + basic_types::*, byte_string::ByteString, diagnostic_info::DiagnosticInfo, encoding::*, + node_ids::ObjectId, response_header::ResponseHeader, service_types::impls::MessageInfo, status_codes::StatusCode, - diagnostic_info::DiagnosticInfo, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/add_nodes_item.rs b/types/src/service_types/add_nodes_item.rs index 30a9096c8..ee831f442 100644 --- a/types/src/service_types/add_nodes_item.rs +++ b/types/src/service_types/add_nodes_item.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,15 +10,9 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - node_id::ExpandedNodeId, - node_id::NodeId, - qualified_name::QualifiedName, - service_types::enums::NodeClass, - extension_object::ExtensionObject, + basic_types::*, encoding::*, extension_object::ExtensionObject, node_id::ExpandedNodeId, + node_id::NodeId, node_ids::ObjectId, qualified_name::QualifiedName, + service_types::enums::NodeClass, service_types::impls::MessageInfo, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/add_nodes_request.rs b/types/src/service_types/add_nodes_request.rs index f42fc6fa5..2bf6ed6fc 100644 --- a/types/src/service_types/add_nodes_request.rs +++ b/types/src/service_types/add_nodes_request.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - request_header::RequestHeader, - service_types::AddNodesItem, + basic_types::*, encoding::*, node_ids::ObjectId, request_header::RequestHeader, + service_types::impls::MessageInfo, service_types::AddNodesItem, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/add_nodes_response.rs b/types/src/service_types/add_nodes_response.rs index 4975fe76f..286058f08 100644 --- a/types/src/service_types/add_nodes_response.rs +++ b/types/src/service_types/add_nodes_response.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - response_header::ResponseHeader, - diagnostic_info::DiagnosticInfo, + basic_types::*, diagnostic_info::DiagnosticInfo, encoding::*, node_ids::ObjectId, + response_header::ResponseHeader, service_types::impls::MessageInfo, service_types::AddNodesResult, }; diff --git a/types/src/service_types/add_nodes_result.rs b/types/src/service_types/add_nodes_result.rs index 01d522630..746cbc386 100644 --- a/types/src/service_types/add_nodes_result.rs +++ b/types/src/service_types/add_nodes_result.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - status_codes::StatusCode, - node_id::NodeId, + basic_types::*, encoding::*, node_id::NodeId, node_ids::ObjectId, + service_types::impls::MessageInfo, status_codes::StatusCode, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/add_references_item.rs b/types/src/service_types/add_references_item.rs index 4e6df0d8c..d1b6fbfe6 100644 --- a/types/src/service_types/add_references_item.rs +++ b/types/src/service_types/add_references_item.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,14 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - node_id::NodeId, - node_id::ExpandedNodeId, - string::UAString, - service_types::enums::NodeClass, + basic_types::*, encoding::*, node_id::ExpandedNodeId, node_id::NodeId, node_ids::ObjectId, + service_types::enums::NodeClass, service_types::impls::MessageInfo, string::UAString, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/add_references_request.rs b/types/src/service_types/add_references_request.rs index 3d93f68c9..ed9e0b4e7 100644 --- a/types/src/service_types/add_references_request.rs +++ b/types/src/service_types/add_references_request.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - request_header::RequestHeader, - service_types::AddReferencesItem, + basic_types::*, encoding::*, node_ids::ObjectId, request_header::RequestHeader, + service_types::impls::MessageInfo, service_types::AddReferencesItem, }; #[derive(Debug, Clone, PartialEq)] @@ -49,7 +45,8 @@ impl BinaryEncoder for AddReferencesRequest { #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { let request_header = RequestHeader::decode(stream, decoding_options)?; - let references_to_add: Option> = read_array(stream, decoding_options)?; + let references_to_add: Option> = + read_array(stream, decoding_options)?; Ok(AddReferencesRequest { request_header, references_to_add, diff --git a/types/src/service_types/add_references_response.rs b/types/src/service_types/add_references_response.rs index 03c2e0439..9cd34a84d 100644 --- a/types/src/service_types/add_references_response.rs +++ b/types/src/service_types/add_references_response.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,13 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - response_header::ResponseHeader, - status_codes::StatusCode, - diagnostic_info::DiagnosticInfo, + basic_types::*, diagnostic_info::DiagnosticInfo, encoding::*, node_ids::ObjectId, + response_header::ResponseHeader, service_types::impls::MessageInfo, status_codes::StatusCode, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/additional_parameters_type.rs b/types/src/service_types/additional_parameters_type.rs index 61c8051be..5d3783c47 100644 --- a/types/src/service_types/additional_parameters_type.rs +++ b/types/src/service_types/additional_parameters_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,10 +10,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, + basic_types::*, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo, service_types::KeyValuePair, }; @@ -45,8 +42,6 @@ impl BinaryEncoder for AdditionalParametersType { #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { let parameters: Option> = read_array(stream, decoding_options)?; - Ok(AdditionalParametersType { - parameters, - }) + Ok(AdditionalParametersType { parameters }) } } diff --git a/types/src/service_types/aggregate_configuration.rs b/types/src/service_types/aggregate_configuration.rs index 6b9a83de5..b111a450b 100644 --- a/types/src/service_types/aggregate_configuration.rs +++ b/types/src/service_types/aggregate_configuration.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,12 +9,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, -}; +use crate::{basic_types::*, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo}; #[derive(Debug, Clone, PartialEq)] pub struct AggregateConfiguration { diff --git a/types/src/service_types/aggregate_filter.rs b/types/src/service_types/aggregate_filter.rs index 24c744d00..cc932aa0d 100644 --- a/types/src/service_types/aggregate_filter.rs +++ b/types/src/service_types/aggregate_filter.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,10 +10,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - date_time::DateTime, - node_id::NodeId, + basic_types::*, date_time::DateTime, encoding::*, node_id::NodeId, service_types::AggregateConfiguration, }; diff --git a/types/src/service_types/aggregate_filter_result.rs b/types/src/service_types/aggregate_filter_result.rs index 986379e25..5905f9d60 100644 --- a/types/src/service_types/aggregate_filter_result.rs +++ b/types/src/service_types/aggregate_filter_result.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,10 +10,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - date_time::DateTime, - service_types::AggregateConfiguration, + basic_types::*, date_time::DateTime, encoding::*, service_types::AggregateConfiguration, }; #[derive(Debug, Clone, PartialEq)] @@ -45,7 +42,8 @@ impl BinaryEncoder for AggregateFilterResult { fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { let revised_start_time = DateTime::decode(stream, decoding_options)?; let revised_processing_interval = f64::decode(stream, decoding_options)?; - let revised_aggregate_configuration = AggregateConfiguration::decode(stream, decoding_options)?; + let revised_aggregate_configuration = + AggregateConfiguration::decode(stream, decoding_options)?; Ok(AggregateFilterResult { revised_start_time, revised_processing_interval, diff --git a/types/src/service_types/alias_name_data_type.rs b/types/src/service_types/alias_name_data_type.rs index 65b1af413..46fb0f6d2 100644 --- a/types/src/service_types/alias_name_data_type.rs +++ b/types/src/service_types/alias_name_data_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - qualified_name::QualifiedName, - node_id::ExpandedNodeId, + basic_types::*, encoding::*, node_id::ExpandedNodeId, node_ids::ObjectId, + qualified_name::QualifiedName, service_types::impls::MessageInfo, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/annotation.rs b/types/src/service_types/annotation.rs index 7b1c704be..8306f7909 100644 --- a/types/src/service_types/annotation.rs +++ b/types/src/service_types/annotation.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - string::UAString, - date_time::DateTime, + basic_types::*, date_time::DateTime, encoding::*, node_ids::ObjectId, + service_types::impls::MessageInfo, string::UAString, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/anonymous_identity_token.rs b/types/src/service_types/anonymous_identity_token.rs index 45f6eb942..36601db32 100644 --- a/types/src/service_types/anonymous_identity_token.rs +++ b/types/src/service_types/anonymous_identity_token.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,11 +9,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - string::UAString, -}; +use crate::{basic_types::*, encoding::*, string::UAString}; #[derive(Debug, Clone, PartialEq)] pub struct AnonymousIdentityToken { @@ -37,8 +33,6 @@ impl BinaryEncoder for AnonymousIdentityToken { #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { let policy_id = UAString::decode(stream, decoding_options)?; - Ok(AnonymousIdentityToken { - policy_id, - }) + Ok(AnonymousIdentityToken { policy_id }) } } diff --git a/types/src/service_types/application_description.rs b/types/src/service_types/application_description.rs index 1e75d39fe..49f7e5d97 100644 --- a/types/src/service_types/application_description.rs +++ b/types/src/service_types/application_description.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,13 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - string::UAString, - localized_text::LocalizedText, - service_types::enums::ApplicationType, + basic_types::*, encoding::*, localized_text::LocalizedText, node_ids::ObjectId, + service_types::enums::ApplicationType, service_types::impls::MessageInfo, string::UAString, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/argument.rs b/types/src/service_types/argument.rs index f00384056..6b8b21514 100644 --- a/types/src/service_types/argument.rs +++ b/types/src/service_types/argument.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,13 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - string::UAString, - node_id::NodeId, - localized_text::LocalizedText, + basic_types::*, encoding::*, localized_text::LocalizedText, node_id::NodeId, + node_ids::ObjectId, service_types::impls::MessageInfo, string::UAString, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/attribute_operand.rs b/types/src/service_types/attribute_operand.rs index 0c9dbffbb..8bce4445b 100644 --- a/types/src/service_types/attribute_operand.rs +++ b/types/src/service_types/attribute_operand.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,11 +10,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - node_id::NodeId, - string::UAString, - service_types::RelativePath, + basic_types::*, encoding::*, node_id::NodeId, service_types::RelativePath, string::UAString, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/axis_information.rs b/types/src/service_types/axis_information.rs index 30eb5d239..c7e6edbc9 100644 --- a/types/src/service_types/axis_information.rs +++ b/types/src/service_types/axis_information.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,14 +10,9 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - localized_text::LocalizedText, - service_types::enums::AxisScaleEnumeration, - service_types::EUInformation, - service_types::Range, + basic_types::*, encoding::*, localized_text::LocalizedText, node_ids::ObjectId, + service_types::enums::AxisScaleEnumeration, service_types::impls::MessageInfo, + service_types::EUInformation, service_types::Range, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/broker_connection_transport_data_type.rs b/types/src/service_types/broker_connection_transport_data_type.rs index 496f4edd8..6d325582e 100644 --- a/types/src/service_types/broker_connection_transport_data_type.rs +++ b/types/src/service_types/broker_connection_transport_data_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,11 +9,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - string::UAString, -}; +use crate::{basic_types::*, encoding::*, string::UAString}; #[derive(Debug, Clone, PartialEq)] pub struct BrokerConnectionTransportDataType { diff --git a/types/src/service_types/broker_data_set_reader_transport_data_type.rs b/types/src/service_types/broker_data_set_reader_transport_data_type.rs index b1d5b3614..094ab2272 100644 --- a/types/src/service_types/broker_data_set_reader_transport_data_type.rs +++ b/types/src/service_types/broker_data_set_reader_transport_data_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,10 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, + basic_types::*, encoding::*, service_types::enums::BrokerTransportQualityOfService, string::UAString, - service_types::enums::BrokerTransportQualityOfService, }; #[derive(Debug, Clone, PartialEq)] @@ -52,7 +50,8 @@ impl BinaryEncoder for BrokerDataSetReader let queue_name = UAString::decode(stream, decoding_options)?; let resource_uri = UAString::decode(stream, decoding_options)?; let authentication_profile_uri = UAString::decode(stream, decoding_options)?; - let requested_delivery_guarantee = BrokerTransportQualityOfService::decode(stream, decoding_options)?; + let requested_delivery_guarantee = + BrokerTransportQualityOfService::decode(stream, decoding_options)?; let meta_data_queue_name = UAString::decode(stream, decoding_options)?; Ok(BrokerDataSetReaderTransportDataType { queue_name, diff --git a/types/src/service_types/broker_data_set_writer_transport_data_type.rs b/types/src/service_types/broker_data_set_writer_transport_data_type.rs index 62038933c..a2cd76db5 100644 --- a/types/src/service_types/broker_data_set_writer_transport_data_type.rs +++ b/types/src/service_types/broker_data_set_writer_transport_data_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,10 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, + basic_types::*, encoding::*, service_types::enums::BrokerTransportQualityOfService, string::UAString, - service_types::enums::BrokerTransportQualityOfService, }; #[derive(Debug, Clone, PartialEq)] @@ -55,7 +53,8 @@ impl BinaryEncoder for BrokerDataSetWriter let queue_name = UAString::decode(stream, decoding_options)?; let resource_uri = UAString::decode(stream, decoding_options)?; let authentication_profile_uri = UAString::decode(stream, decoding_options)?; - let requested_delivery_guarantee = BrokerTransportQualityOfService::decode(stream, decoding_options)?; + let requested_delivery_guarantee = + BrokerTransportQualityOfService::decode(stream, decoding_options)?; let meta_data_queue_name = UAString::decode(stream, decoding_options)?; let meta_data_update_time = f64::decode(stream, decoding_options)?; Ok(BrokerDataSetWriterTransportDataType { diff --git a/types/src/service_types/broker_writer_group_transport_data_type.rs b/types/src/service_types/broker_writer_group_transport_data_type.rs index ba9031cce..7c812c2dc 100644 --- a/types/src/service_types/broker_writer_group_transport_data_type.rs +++ b/types/src/service_types/broker_writer_group_transport_data_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,10 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, + basic_types::*, encoding::*, service_types::enums::BrokerTransportQualityOfService, string::UAString, - service_types::enums::BrokerTransportQualityOfService, }; #[derive(Debug, Clone, PartialEq)] @@ -49,7 +47,8 @@ impl BinaryEncoder for BrokerWriterGroupTran let queue_name = UAString::decode(stream, decoding_options)?; let resource_uri = UAString::decode(stream, decoding_options)?; let authentication_profile_uri = UAString::decode(stream, decoding_options)?; - let requested_delivery_guarantee = BrokerTransportQualityOfService::decode(stream, decoding_options)?; + let requested_delivery_guarantee = + BrokerTransportQualityOfService::decode(stream, decoding_options)?; Ok(BrokerWriterGroupTransportDataType { queue_name, resource_uri, diff --git a/types/src/service_types/browse_description.rs b/types/src/service_types/browse_description.rs index 239f703fc..93498699d 100644 --- a/types/src/service_types/browse_description.rs +++ b/types/src/service_types/browse_description.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - node_id::NodeId, - service_types::enums::BrowseDirection, + basic_types::*, encoding::*, node_id::NodeId, node_ids::ObjectId, + service_types::enums::BrowseDirection, service_types::impls::MessageInfo, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/browse_next_request.rs b/types/src/service_types/browse_next_request.rs index 14dd732ef..aab43cb06 100644 --- a/types/src/service_types/browse_next_request.rs +++ b/types/src/service_types/browse_next_request.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - request_header::RequestHeader, - byte_string::ByteString, + basic_types::*, byte_string::ByteString, encoding::*, node_ids::ObjectId, + request_header::RequestHeader, service_types::impls::MessageInfo, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/browse_next_response.rs b/types/src/service_types/browse_next_response.rs index 0a4b541e2..863049992 100644 --- a/types/src/service_types/browse_next_response.rs +++ b/types/src/service_types/browse_next_response.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - response_header::ResponseHeader, - diagnostic_info::DiagnosticInfo, + basic_types::*, diagnostic_info::DiagnosticInfo, encoding::*, node_ids::ObjectId, + response_header::ResponseHeader, service_types::impls::MessageInfo, service_types::BrowseResult, }; diff --git a/types/src/service_types/browse_path.rs b/types/src/service_types/browse_path.rs index 891cef96c..2c1f38aac 100644 --- a/types/src/service_types/browse_path.rs +++ b/types/src/service_types/browse_path.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - node_id::NodeId, - service_types::RelativePath, + basic_types::*, encoding::*, node_id::NodeId, node_ids::ObjectId, + service_types::impls::MessageInfo, service_types::RelativePath, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/browse_path_result.rs b/types/src/service_types/browse_path_result.rs index 2e868df9a..c8ef3bc89 100644 --- a/types/src/service_types/browse_path_result.rs +++ b/types/src/service_types/browse_path_result.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - status_codes::StatusCode, - service_types::BrowsePathTarget, + basic_types::*, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo, + service_types::BrowsePathTarget, status_codes::StatusCode, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/browse_path_target.rs b/types/src/service_types/browse_path_target.rs index e0ce247f5..c35379c0b 100644 --- a/types/src/service_types/browse_path_target.rs +++ b/types/src/service_types/browse_path_target.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,11 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, + basic_types::*, encoding::*, node_id::ExpandedNodeId, node_ids::ObjectId, service_types::impls::MessageInfo, - node_ids::ObjectId, - node_id::ExpandedNodeId, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/browse_request.rs b/types/src/service_types/browse_request.rs index 1fad4fb63..6c8fcf429 100644 --- a/types/src/service_types/browse_request.rs +++ b/types/src/service_types/browse_request.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,13 +10,9 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - request_header::RequestHeader, + basic_types::*, encoding::*, node_ids::ObjectId, request_header::RequestHeader, + service_types::impls::MessageInfo, service_types::BrowseDescription, service_types::ViewDescription, - service_types::BrowseDescription, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/browse_response.rs b/types/src/service_types/browse_response.rs index 0e4be183d..5454af874 100644 --- a/types/src/service_types/browse_response.rs +++ b/types/src/service_types/browse_response.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - response_header::ResponseHeader, - diagnostic_info::DiagnosticInfo, + basic_types::*, diagnostic_info::DiagnosticInfo, encoding::*, node_ids::ObjectId, + response_header::ResponseHeader, service_types::impls::MessageInfo, service_types::BrowseResult, }; diff --git a/types/src/service_types/browse_result.rs b/types/src/service_types/browse_result.rs index af5bacdfe..4dcb2c6ab 100644 --- a/types/src/service_types/browse_result.rs +++ b/types/src/service_types/browse_result.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,13 +10,9 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, + basic_types::*, byte_string::ByteString, encoding::*, node_ids::ObjectId, + service_types::impls::MessageInfo, service_types::ReferenceDescription, status_codes::StatusCode, - byte_string::ByteString, - service_types::ReferenceDescription, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/build_info.rs b/types/src/service_types/build_info.rs index 40af48c10..e5fdead9a 100644 --- a/types/src/service_types/build_info.rs +++ b/types/src/service_types/build_info.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - string::UAString, - date_time::DateTime, + basic_types::*, date_time::DateTime, encoding::*, node_ids::ObjectId, + service_types::impls::MessageInfo, string::UAString, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/call_method_request.rs b/types/src/service_types/call_method_request.rs index 332322102..003fabf70 100644 --- a/types/src/service_types/call_method_request.rs +++ b/types/src/service_types/call_method_request.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - node_id::NodeId, - variant::Variant, + basic_types::*, encoding::*, node_id::NodeId, node_ids::ObjectId, + service_types::impls::MessageInfo, variant::Variant, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/call_method_result.rs b/types/src/service_types/call_method_result.rs index c47f7fff1..6ccdddf29 100644 --- a/types/src/service_types/call_method_result.rs +++ b/types/src/service_types/call_method_result.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,13 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - status_codes::StatusCode, - diagnostic_info::DiagnosticInfo, - variant::Variant, + basic_types::*, diagnostic_info::DiagnosticInfo, encoding::*, node_ids::ObjectId, + service_types::impls::MessageInfo, status_codes::StatusCode, variant::Variant, }; #[derive(Debug, Clone, PartialEq)] @@ -57,7 +52,8 @@ impl BinaryEncoder for CallMethodResult { fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { let status_code = StatusCode::decode(stream, decoding_options)?; let input_argument_results: Option> = read_array(stream, decoding_options)?; - let input_argument_diagnostic_infos: Option> = read_array(stream, decoding_options)?; + let input_argument_diagnostic_infos: Option> = + read_array(stream, decoding_options)?; let output_arguments: Option> = read_array(stream, decoding_options)?; Ok(CallMethodResult { status_code, diff --git a/types/src/service_types/call_request.rs b/types/src/service_types/call_request.rs index 0a9b0ab97..284a42854 100644 --- a/types/src/service_types/call_request.rs +++ b/types/src/service_types/call_request.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - request_header::RequestHeader, - service_types::CallMethodRequest, + basic_types::*, encoding::*, node_ids::ObjectId, request_header::RequestHeader, + service_types::impls::MessageInfo, service_types::CallMethodRequest, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/call_response.rs b/types/src/service_types/call_response.rs index 048828193..e7bba2fdd 100644 --- a/types/src/service_types/call_response.rs +++ b/types/src/service_types/call_response.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - response_header::ResponseHeader, - diagnostic_info::DiagnosticInfo, + basic_types::*, diagnostic_info::DiagnosticInfo, encoding::*, node_ids::ObjectId, + response_header::ResponseHeader, service_types::impls::MessageInfo, service_types::CallMethodResult, }; diff --git a/types/src/service_types/cancel_request.rs b/types/src/service_types/cancel_request.rs index 85936895b..200d86b85 100644 --- a/types/src/service_types/cancel_request.rs +++ b/types/src/service_types/cancel_request.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,11 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, + basic_types::*, encoding::*, node_ids::ObjectId, request_header::RequestHeader, service_types::impls::MessageInfo, - node_ids::ObjectId, - request_header::RequestHeader, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/cancel_response.rs b/types/src/service_types/cancel_response.rs index cb883ca35..3cec75811 100644 --- a/types/src/service_types/cancel_response.rs +++ b/types/src/service_types/cancel_response.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,11 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, + basic_types::*, encoding::*, node_ids::ObjectId, response_header::ResponseHeader, service_types::impls::MessageInfo, - node_ids::ObjectId, - response_header::ResponseHeader, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/cartesian_coordinates.rs b/types/src/service_types/cartesian_coordinates.rs index 02593b2e9..a27376c0f 100644 --- a/types/src/service_types/cartesian_coordinates.rs +++ b/types/src/service_types/cartesian_coordinates.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,16 +9,10 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, -}; +use crate::{basic_types::*, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo}; #[derive(Debug, Clone, PartialEq)] -pub struct CartesianCoordinates { -} +pub struct CartesianCoordinates {} impl MessageInfo for CartesianCoordinates { fn object_id(&self) -> ObjectId { @@ -38,7 +32,6 @@ impl BinaryEncoder for CartesianCoordinates { #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { - Ok(CartesianCoordinates { - }) + Ok(CartesianCoordinates {}) } } diff --git a/types/src/service_types/channel_security_token.rs b/types/src/service_types/channel_security_token.rs index c7f043d53..69d91ddb8 100644 --- a/types/src/service_types/channel_security_token.rs +++ b/types/src/service_types/channel_security_token.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,11 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, + basic_types::*, date_time::DateTime, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo, - node_ids::ObjectId, - date_time::DateTime, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/close_secure_channel_request.rs b/types/src/service_types/close_secure_channel_request.rs index a350b7576..e723b96f8 100644 --- a/types/src/service_types/close_secure_channel_request.rs +++ b/types/src/service_types/close_secure_channel_request.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,11 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, + basic_types::*, encoding::*, node_ids::ObjectId, request_header::RequestHeader, service_types::impls::MessageInfo, - node_ids::ObjectId, - request_header::RequestHeader, }; #[derive(Debug, Clone, PartialEq)] @@ -45,8 +42,6 @@ impl BinaryEncoder for CloseSecureChannelRequest { #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { let request_header = RequestHeader::decode(stream, decoding_options)?; - Ok(CloseSecureChannelRequest { - request_header, - }) + Ok(CloseSecureChannelRequest { request_header }) } } diff --git a/types/src/service_types/close_secure_channel_response.rs b/types/src/service_types/close_secure_channel_response.rs index a932cea46..3b2881e21 100644 --- a/types/src/service_types/close_secure_channel_response.rs +++ b/types/src/service_types/close_secure_channel_response.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,11 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, + basic_types::*, encoding::*, node_ids::ObjectId, response_header::ResponseHeader, service_types::impls::MessageInfo, - node_ids::ObjectId, - response_header::ResponseHeader, }; #[derive(Debug, Clone, PartialEq)] @@ -45,8 +42,6 @@ impl BinaryEncoder for CloseSecureChannelResponse { #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { let response_header = ResponseHeader::decode(stream, decoding_options)?; - Ok(CloseSecureChannelResponse { - response_header, - }) + Ok(CloseSecureChannelResponse { response_header }) } } diff --git a/types/src/service_types/close_session_request.rs b/types/src/service_types/close_session_request.rs index ac38e25b8..c9917290c 100644 --- a/types/src/service_types/close_session_request.rs +++ b/types/src/service_types/close_session_request.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,11 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, + basic_types::*, encoding::*, node_ids::ObjectId, request_header::RequestHeader, service_types::impls::MessageInfo, - node_ids::ObjectId, - request_header::RequestHeader, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/close_session_response.rs b/types/src/service_types/close_session_response.rs index 8d68b3078..7ee89146b 100644 --- a/types/src/service_types/close_session_response.rs +++ b/types/src/service_types/close_session_response.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,11 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, + basic_types::*, encoding::*, node_ids::ObjectId, response_header::ResponseHeader, service_types::impls::MessageInfo, - node_ids::ObjectId, - response_header::ResponseHeader, }; #[derive(Debug, Clone, PartialEq)] @@ -45,8 +42,6 @@ impl BinaryEncoder for CloseSessionResponse { #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { let response_header = ResponseHeader::decode(stream, decoding_options)?; - Ok(CloseSessionResponse { - response_header, - }) + Ok(CloseSessionResponse { response_header }) } } diff --git a/types/src/service_types/complex_number_type.rs b/types/src/service_types/complex_number_type.rs index 866aa6e8b..420735ece 100644 --- a/types/src/service_types/complex_number_type.rs +++ b/types/src/service_types/complex_number_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,12 +9,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, -}; +use crate::{basic_types::*, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo}; #[derive(Debug, Clone, PartialEq)] pub struct ComplexNumberType { @@ -48,9 +43,6 @@ impl BinaryEncoder for ComplexNumberType { fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { let real = f32::decode(stream, decoding_options)?; let imaginary = f32::decode(stream, decoding_options)?; - Ok(ComplexNumberType { - real, - imaginary, - }) + Ok(ComplexNumberType { real, imaginary }) } } diff --git a/types/src/service_types/configuration_version_data_type.rs b/types/src/service_types/configuration_version_data_type.rs index 8a6768b26..84012158b 100644 --- a/types/src/service_types/configuration_version_data_type.rs +++ b/types/src/service_types/configuration_version_data_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,12 +9,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, -}; +use crate::{basic_types::*, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo}; #[derive(Debug, Clone, PartialEq)] pub struct ConfigurationVersionDataType { diff --git a/types/src/service_types/connection_transport_data_type.rs b/types/src/service_types/connection_transport_data_type.rs index 511d366dc..8e3cc570e 100644 --- a/types/src/service_types/connection_transport_data_type.rs +++ b/types/src/service_types/connection_transport_data_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,16 +9,10 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, -}; +use crate::{basic_types::*, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo}; #[derive(Debug, Clone, PartialEq)] -pub struct ConnectionTransportDataType { -} +pub struct ConnectionTransportDataType {} impl MessageInfo for ConnectionTransportDataType { fn object_id(&self) -> ObjectId { @@ -38,7 +32,6 @@ impl BinaryEncoder for ConnectionTransportDataType #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { - Ok(ConnectionTransportDataType { - }) + Ok(ConnectionTransportDataType {}) } } diff --git a/types/src/service_types/content_filter.rs b/types/src/service_types/content_filter.rs index 6e3f0af57..40af58248 100644 --- a/types/src/service_types/content_filter.rs +++ b/types/src/service_types/content_filter.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,10 +10,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, + basic_types::*, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo, service_types::ContentFilterElement, }; @@ -45,8 +42,6 @@ impl BinaryEncoder for ContentFilter { #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { let elements: Option> = read_array(stream, decoding_options)?; - Ok(ContentFilter { - elements, - }) + Ok(ContentFilter { elements }) } } diff --git a/types/src/service_types/content_filter_element.rs b/types/src/service_types/content_filter_element.rs index 21842c367..448cfa4d0 100644 --- a/types/src/service_types/content_filter_element.rs +++ b/types/src/service_types/content_filter_element.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - service_types::enums::FilterOperator, - extension_object::ExtensionObject, + basic_types::*, encoding::*, extension_object::ExtensionObject, node_ids::ObjectId, + service_types::enums::FilterOperator, service_types::impls::MessageInfo, }; #[derive(Debug, Clone, PartialEq, Serialize)] diff --git a/types/src/service_types/content_filter_element_result.rs b/types/src/service_types/content_filter_element_result.rs index 6c90d9266..b5ec61eec 100644 --- a/types/src/service_types/content_filter_element_result.rs +++ b/types/src/service_types/content_filter_element_result.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - status_codes::StatusCode, - diagnostic_info::DiagnosticInfo, + basic_types::*, diagnostic_info::DiagnosticInfo, encoding::*, node_ids::ObjectId, + service_types::impls::MessageInfo, status_codes::StatusCode, }; #[derive(Debug, Clone, PartialEq)] @@ -53,7 +49,8 @@ impl BinaryEncoder for ContentFilterElementResult { fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { let status_code = StatusCode::decode(stream, decoding_options)?; let operand_status_codes: Option> = read_array(stream, decoding_options)?; - let operand_diagnostic_infos: Option> = read_array(stream, decoding_options)?; + let operand_diagnostic_infos: Option> = + read_array(stream, decoding_options)?; Ok(ContentFilterElementResult { status_code, operand_status_codes, diff --git a/types/src/service_types/content_filter_result.rs b/types/src/service_types/content_filter_result.rs index 07e8ca38a..0709f53b5 100644 --- a/types/src/service_types/content_filter_result.rs +++ b/types/src/service_types/content_filter_result.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - diagnostic_info::DiagnosticInfo, - service_types::ContentFilterElementResult, + basic_types::*, diagnostic_info::DiagnosticInfo, encoding::*, node_ids::ObjectId, + service_types::impls::MessageInfo, service_types::ContentFilterElementResult, }; #[derive(Debug, Clone, PartialEq)] @@ -48,8 +44,10 @@ impl BinaryEncoder for ContentFilterResult { #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { - let element_results: Option> = read_array(stream, decoding_options)?; - let element_diagnostic_infos: Option> = read_array(stream, decoding_options)?; + let element_results: Option> = + read_array(stream, decoding_options)?; + let element_diagnostic_infos: Option> = + read_array(stream, decoding_options)?; Ok(ContentFilterResult { element_results, element_diagnostic_infos, diff --git a/types/src/service_types/create_monitored_items_request.rs b/types/src/service_types/create_monitored_items_request.rs index b9e312d45..15ad234f5 100644 --- a/types/src/service_types/create_monitored_items_request.rs +++ b/types/src/service_types/create_monitored_items_request.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - request_header::RequestHeader, - service_types::enums::TimestampsToReturn, + basic_types::*, encoding::*, node_ids::ObjectId, request_header::RequestHeader, + service_types::enums::TimestampsToReturn, service_types::impls::MessageInfo, service_types::MonitoredItemCreateRequest, }; @@ -58,7 +54,8 @@ impl BinaryEncoder for CreateMonitoredItemsRequest let request_header = RequestHeader::decode(stream, decoding_options)?; let subscription_id = u32::decode(stream, decoding_options)?; let timestamps_to_return = TimestampsToReturn::decode(stream, decoding_options)?; - let items_to_create: Option> = read_array(stream, decoding_options)?; + let items_to_create: Option> = + read_array(stream, decoding_options)?; Ok(CreateMonitoredItemsRequest { request_header, subscription_id, diff --git a/types/src/service_types/create_monitored_items_response.rs b/types/src/service_types/create_monitored_items_response.rs index b39f62b09..28c37b78b 100644 --- a/types/src/service_types/create_monitored_items_response.rs +++ b/types/src/service_types/create_monitored_items_response.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - response_header::ResponseHeader, - diagnostic_info::DiagnosticInfo, + basic_types::*, diagnostic_info::DiagnosticInfo, encoding::*, node_ids::ObjectId, + response_header::ResponseHeader, service_types::impls::MessageInfo, service_types::MonitoredItemCreateResult, }; diff --git a/types/src/service_types/create_session_request.rs b/types/src/service_types/create_session_request.rs index 2e78b85c3..e1d3329b1 100644 --- a/types/src/service_types/create_session_request.rs +++ b/types/src/service_types/create_session_request.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,14 +10,9 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - request_header::RequestHeader, - string::UAString, - byte_string::ByteString, - service_types::ApplicationDescription, + basic_types::*, byte_string::ByteString, encoding::*, node_ids::ObjectId, + request_header::RequestHeader, service_types::impls::MessageInfo, + service_types::ApplicationDescription, string::UAString, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/create_session_response.rs b/types/src/service_types/create_session_response.rs index c044d4230..391e7183b 100644 --- a/types/src/service_types/create_session_response.rs +++ b/types/src/service_types/create_session_response.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,16 +10,10 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - response_header::ResponseHeader, - node_id::NodeId, - byte_string::ByteString, - service_types::EndpointDescription, + basic_types::*, byte_string::ByteString, encoding::*, node_id::NodeId, node_ids::ObjectId, + response_header::ResponseHeader, service_types::impls::MessageInfo, + service_types::EndpointDescription, service_types::SignatureData, service_types::SignedSoftwareCertificate, - service_types::SignatureData, }; #[derive(Debug, Clone, PartialEq)] @@ -82,8 +76,10 @@ impl BinaryEncoder for CreateSessionResponse { let revised_session_timeout = f64::decode(stream, decoding_options)?; let server_nonce = ByteString::decode(stream, decoding_options)?; let server_certificate = ByteString::decode(stream, decoding_options)?; - let server_endpoints: Option> = read_array(stream, decoding_options)?; - let server_software_certificates: Option> = read_array(stream, decoding_options)?; + let server_endpoints: Option> = + read_array(stream, decoding_options)?; + let server_software_certificates: Option> = + read_array(stream, decoding_options)?; let server_signature = SignatureData::decode(stream, decoding_options)?; let max_request_message_size = u32::decode(stream, decoding_options)?; Ok(CreateSessionResponse { diff --git a/types/src/service_types/create_subscription_request.rs b/types/src/service_types/create_subscription_request.rs index 1971acd24..38671b2cf 100644 --- a/types/src/service_types/create_subscription_request.rs +++ b/types/src/service_types/create_subscription_request.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,11 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, + basic_types::*, encoding::*, node_ids::ObjectId, request_header::RequestHeader, service_types::impls::MessageInfo, - node_ids::ObjectId, - request_header::RequestHeader, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/create_subscription_response.rs b/types/src/service_types/create_subscription_response.rs index 3c6c069e3..1105cad45 100644 --- a/types/src/service_types/create_subscription_response.rs +++ b/types/src/service_types/create_subscription_response.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,11 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, + basic_types::*, encoding::*, node_ids::ObjectId, response_header::ResponseHeader, service_types::impls::MessageInfo, - node_ids::ObjectId, - response_header::ResponseHeader, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/currency_unit_type.rs b/types/src/service_types/currency_unit_type.rs index 8748bbd2f..a0346aa20 100644 --- a/types/src/service_types/currency_unit_type.rs +++ b/types/src/service_types/currency_unit_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - string::UAString, - localized_text::LocalizedText, + basic_types::*, encoding::*, localized_text::LocalizedText, node_ids::ObjectId, + service_types::impls::MessageInfo, string::UAString, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/data_change_filter.rs b/types/src/service_types/data_change_filter.rs index 153985f6d..f8ad470db 100644 --- a/types/src/service_types/data_change_filter.rs +++ b/types/src/service_types/data_change_filter.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,11 +9,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - service_types::enums::DataChangeTrigger, -}; +use crate::{basic_types::*, encoding::*, service_types::enums::DataChangeTrigger}; #[derive(Debug, Clone, PartialEq, Serialize)] pub struct DataChangeFilter { diff --git a/types/src/service_types/data_change_notification.rs b/types/src/service_types/data_change_notification.rs index e36357844..1967cd6d4 100644 --- a/types/src/service_types/data_change_notification.rs +++ b/types/src/service_types/data_change_notification.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,9 +10,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - diagnostic_info::DiagnosticInfo, + basic_types::*, diagnostic_info::DiagnosticInfo, encoding::*, service_types::MonitoredItemNotification, }; @@ -40,7 +38,8 @@ impl BinaryEncoder for DataChangeNotification { #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { - let monitored_items: Option> = read_array(stream, decoding_options)?; + let monitored_items: Option> = + read_array(stream, decoding_options)?; let diagnostic_infos: Option> = read_array(stream, decoding_options)?; Ok(DataChangeNotification { monitored_items, diff --git a/types/src/service_types/data_set_meta_data_type.rs b/types/src/service_types/data_set_meta_data_type.rs index a1b8f80d3..5f04e50d2 100644 --- a/types/src/service_types/data_set_meta_data_type.rs +++ b/types/src/service_types/data_set_meta_data_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,16 +10,10 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - string::UAString, - localized_text::LocalizedText, - guid::Guid, - service_types::StructureDescription, - service_types::EnumDescription, - service_types::SimpleTypeDescription, - service_types::FieldMetaData, - service_types::ConfigurationVersionDataType, + basic_types::*, encoding::*, guid::Guid, localized_text::LocalizedText, + service_types::ConfigurationVersionDataType, service_types::EnumDescription, + service_types::FieldMetaData, service_types::SimpleTypeDescription, + service_types::StructureDescription, string::UAString, }; #[derive(Debug, Clone, PartialEq)] @@ -68,9 +62,11 @@ impl BinaryEncoder for DataSetMetaDataType { #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { let namespaces: Option> = read_array(stream, decoding_options)?; - let structure_data_types: Option> = read_array(stream, decoding_options)?; + let structure_data_types: Option> = + read_array(stream, decoding_options)?; let enum_data_types: Option> = read_array(stream, decoding_options)?; - let simple_data_types: Option> = read_array(stream, decoding_options)?; + let simple_data_types: Option> = + read_array(stream, decoding_options)?; let name = UAString::decode(stream, decoding_options)?; let description = LocalizedText::decode(stream, decoding_options)?; let fields: Option> = read_array(stream, decoding_options)?; diff --git a/types/src/service_types/data_set_reader_data_type.rs b/types/src/service_types/data_set_reader_data_type.rs index fa1c0d26b..c06b78c85 100644 --- a/types/src/service_types/data_set_reader_data_type.rs +++ b/types/src/service_types/data_set_reader_data_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,18 +10,11 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - string::UAString, + basic_types::*, encoding::*, extension_object::ExtensionObject, node_ids::ObjectId, + service_types::enums::DataSetFieldContentMask, service_types::enums::MessageSecurityMode, + service_types::impls::MessageInfo, service_types::DataSetMetaDataType, + service_types::EndpointDescription, service_types::KeyValuePair, string::UAString, variant::Variant, - service_types::enums::DataSetFieldContentMask, - service_types::enums::MessageSecurityMode, - extension_object::ExtensionObject, - service_types::DataSetMetaDataType, - service_types::EndpointDescription, - service_types::KeyValuePair, }; #[derive(Debug, Clone, PartialEq)] @@ -105,14 +98,17 @@ impl BinaryEncoder for DataSetReaderDataType { let writer_group_id = u16::decode(stream, decoding_options)?; let data_set_writer_id = u16::decode(stream, decoding_options)?; let data_set_meta_data = DataSetMetaDataType::decode(stream, decoding_options)?; - let data_set_field_content_mask = DataSetFieldContentMask::decode(stream, decoding_options)?; + let data_set_field_content_mask = + DataSetFieldContentMask::decode(stream, decoding_options)?; let message_receive_timeout = f64::decode(stream, decoding_options)?; let key_frame_count = u32::decode(stream, decoding_options)?; let header_layout_uri = UAString::decode(stream, decoding_options)?; let security_mode = MessageSecurityMode::decode(stream, decoding_options)?; let security_group_id = UAString::decode(stream, decoding_options)?; - let security_key_services: Option> = read_array(stream, decoding_options)?; - let data_set_reader_properties: Option> = read_array(stream, decoding_options)?; + let security_key_services: Option> = + read_array(stream, decoding_options)?; + let data_set_reader_properties: Option> = + read_array(stream, decoding_options)?; let transport_settings = ExtensionObject::decode(stream, decoding_options)?; let message_settings = ExtensionObject::decode(stream, decoding_options)?; let subscribed_data_set = ExtensionObject::decode(stream, decoding_options)?; diff --git a/types/src/service_types/data_set_reader_message_data_type.rs b/types/src/service_types/data_set_reader_message_data_type.rs index 8dfe466e8..37645f9d7 100644 --- a/types/src/service_types/data_set_reader_message_data_type.rs +++ b/types/src/service_types/data_set_reader_message_data_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,16 +9,10 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, -}; +use crate::{basic_types::*, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo}; #[derive(Debug, Clone, PartialEq)] -pub struct DataSetReaderMessageDataType { -} +pub struct DataSetReaderMessageDataType {} impl MessageInfo for DataSetReaderMessageDataType { fn object_id(&self) -> ObjectId { @@ -38,7 +32,6 @@ impl BinaryEncoder for DataSetReaderMessageDataTyp #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { - Ok(DataSetReaderMessageDataType { - }) + Ok(DataSetReaderMessageDataType {}) } } diff --git a/types/src/service_types/data_set_reader_transport_data_type.rs b/types/src/service_types/data_set_reader_transport_data_type.rs index b55f2ae73..dfc9b1156 100644 --- a/types/src/service_types/data_set_reader_transport_data_type.rs +++ b/types/src/service_types/data_set_reader_transport_data_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,16 +9,10 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, -}; +use crate::{basic_types::*, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo}; #[derive(Debug, Clone, PartialEq)] -pub struct DataSetReaderTransportDataType { -} +pub struct DataSetReaderTransportDataType {} impl MessageInfo for DataSetReaderTransportDataType { fn object_id(&self) -> ObjectId { @@ -38,7 +32,6 @@ impl BinaryEncoder for DataSetReaderTransportDat #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { - Ok(DataSetReaderTransportDataType { - }) + Ok(DataSetReaderTransportDataType {}) } } diff --git a/types/src/service_types/data_set_writer_data_type.rs b/types/src/service_types/data_set_writer_data_type.rs index f035be97d..64576e1a1 100644 --- a/types/src/service_types/data_set_writer_data_type.rs +++ b/types/src/service_types/data_set_writer_data_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,14 +10,9 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - string::UAString, - service_types::enums::DataSetFieldContentMask, - extension_object::ExtensionObject, - service_types::KeyValuePair, + basic_types::*, encoding::*, extension_object::ExtensionObject, node_ids::ObjectId, + service_types::enums::DataSetFieldContentMask, service_types::impls::MessageInfo, + service_types::KeyValuePair, string::UAString, }; #[derive(Debug, Clone, PartialEq)] @@ -74,10 +69,12 @@ impl BinaryEncoder for DataSetWriterDataType { let name = UAString::decode(stream, decoding_options)?; let enabled = bool::decode(stream, decoding_options)?; let data_set_writer_id = u16::decode(stream, decoding_options)?; - let data_set_field_content_mask = DataSetFieldContentMask::decode(stream, decoding_options)?; + let data_set_field_content_mask = + DataSetFieldContentMask::decode(stream, decoding_options)?; let key_frame_count = u32::decode(stream, decoding_options)?; let data_set_name = UAString::decode(stream, decoding_options)?; - let data_set_writer_properties: Option> = read_array(stream, decoding_options)?; + let data_set_writer_properties: Option> = + read_array(stream, decoding_options)?; let transport_settings = ExtensionObject::decode(stream, decoding_options)?; let message_settings = ExtensionObject::decode(stream, decoding_options)?; Ok(DataSetWriterDataType { diff --git a/types/src/service_types/data_set_writer_message_data_type.rs b/types/src/service_types/data_set_writer_message_data_type.rs index bd4ace3a2..a763c0ef8 100644 --- a/types/src/service_types/data_set_writer_message_data_type.rs +++ b/types/src/service_types/data_set_writer_message_data_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,16 +9,10 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, -}; +use crate::{basic_types::*, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo}; #[derive(Debug, Clone, PartialEq)] -pub struct DataSetWriterMessageDataType { -} +pub struct DataSetWriterMessageDataType {} impl MessageInfo for DataSetWriterMessageDataType { fn object_id(&self) -> ObjectId { @@ -38,7 +32,6 @@ impl BinaryEncoder for DataSetWriterMessageDataTyp #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { - Ok(DataSetWriterMessageDataType { - }) + Ok(DataSetWriterMessageDataType {}) } } diff --git a/types/src/service_types/data_set_writer_transport_data_type.rs b/types/src/service_types/data_set_writer_transport_data_type.rs index 03a8c024c..4d6e8ec78 100644 --- a/types/src/service_types/data_set_writer_transport_data_type.rs +++ b/types/src/service_types/data_set_writer_transport_data_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,16 +9,10 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, -}; +use crate::{basic_types::*, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo}; #[derive(Debug, Clone, PartialEq)] -pub struct DataSetWriterTransportDataType { -} +pub struct DataSetWriterTransportDataType {} impl MessageInfo for DataSetWriterTransportDataType { fn object_id(&self) -> ObjectId { @@ -38,7 +32,6 @@ impl BinaryEncoder for DataSetWriterTransportDat #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { - Ok(DataSetWriterTransportDataType { - }) + Ok(DataSetWriterTransportDataType {}) } } diff --git a/types/src/service_types/data_type_attributes.rs b/types/src/service_types/data_type_attributes.rs index 0f027e63a..c12bfcc0b 100644 --- a/types/src/service_types/data_type_attributes.rs +++ b/types/src/service_types/data_type_attributes.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,11 +9,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - localized_text::LocalizedText, -}; +use crate::{basic_types::*, encoding::*, localized_text::LocalizedText}; #[derive(Debug, Clone, PartialEq)] pub struct DataTypeAttributes { diff --git a/types/src/service_types/data_type_description.rs b/types/src/service_types/data_type_description.rs index cd73a0632..65d06352a 100644 --- a/types/src/service_types/data_type_description.rs +++ b/types/src/service_types/data_type_description.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - node_id::NodeId, - qualified_name::QualifiedName, + basic_types::*, encoding::*, node_id::NodeId, node_ids::ObjectId, + qualified_name::QualifiedName, service_types::impls::MessageInfo, }; #[derive(Debug, Clone, PartialEq)] @@ -50,9 +46,6 @@ impl BinaryEncoder for DataTypeDescription { fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { let data_type_id = NodeId::decode(stream, decoding_options)?; let name = QualifiedName::decode(stream, decoding_options)?; - Ok(DataTypeDescription { - data_type_id, - name, - }) + Ok(DataTypeDescription { data_type_id, name }) } } diff --git a/types/src/service_types/data_type_schema_header.rs b/types/src/service_types/data_type_schema_header.rs index cb078908d..751e2d47a 100644 --- a/types/src/service_types/data_type_schema_header.rs +++ b/types/src/service_types/data_type_schema_header.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,14 +10,9 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - string::UAString, - service_types::StructureDescription, - service_types::EnumDescription, - service_types::SimpleTypeDescription, + basic_types::*, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo, + service_types::EnumDescription, service_types::SimpleTypeDescription, + service_types::StructureDescription, string::UAString, }; #[derive(Debug, Clone, PartialEq)] @@ -57,9 +52,11 @@ impl BinaryEncoder for DataTypeSchemaHeader { #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { let namespaces: Option> = read_array(stream, decoding_options)?; - let structure_data_types: Option> = read_array(stream, decoding_options)?; + let structure_data_types: Option> = + read_array(stream, decoding_options)?; let enum_data_types: Option> = read_array(stream, decoding_options)?; - let simple_data_types: Option> = read_array(stream, decoding_options)?; + let simple_data_types: Option> = + read_array(stream, decoding_options)?; Ok(DataTypeSchemaHeader { namespaces, structure_data_types, diff --git a/types/src/service_types/datagram_connection_transport_data_type.rs b/types/src/service_types/datagram_connection_transport_data_type.rs index ac5058f2d..29526486d 100644 --- a/types/src/service_types/datagram_connection_transport_data_type.rs +++ b/types/src/service_types/datagram_connection_transport_data_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,11 +9,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - extension_object::ExtensionObject, -}; +use crate::{basic_types::*, encoding::*, extension_object::ExtensionObject}; #[derive(Debug, Clone, PartialEq)] pub struct DatagramConnectionTransportDataType { @@ -37,8 +33,6 @@ impl BinaryEncoder for DatagramConnectionTr #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { let discovery_address = ExtensionObject::decode(stream, decoding_options)?; - Ok(DatagramConnectionTransportDataType { - discovery_address, - }) + Ok(DatagramConnectionTransportDataType { discovery_address }) } } diff --git a/types/src/service_types/datagram_writer_group_transport_data_type.rs b/types/src/service_types/datagram_writer_group_transport_data_type.rs index 147900417..9ddbf9e71 100644 --- a/types/src/service_types/datagram_writer_group_transport_data_type.rs +++ b/types/src/service_types/datagram_writer_group_transport_data_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,10 +9,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, -}; +use crate::{basic_types::*, encoding::*}; #[derive(Debug, Clone, PartialEq)] pub struct DatagramWriterGroupTransportDataType { diff --git a/types/src/service_types/decimal_data_type.rs b/types/src/service_types/decimal_data_type.rs index 49d226436..14bbef6aa 100644 --- a/types/src/service_types/decimal_data_type.rs +++ b/types/src/service_types/decimal_data_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,11 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, + basic_types::*, byte_string::ByteString, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo, - node_ids::ObjectId, - byte_string::ByteString, }; #[derive(Debug, Clone, PartialEq)] @@ -49,9 +46,6 @@ impl BinaryEncoder for DecimalDataType { fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { let scale = i16::decode(stream, decoding_options)?; let value = ByteString::decode(stream, decoding_options)?; - Ok(DecimalDataType { - scale, - value, - }) + Ok(DecimalDataType { scale, value }) } } diff --git a/types/src/service_types/delete_at_time_details.rs b/types/src/service_types/delete_at_time_details.rs index 37067a3a3..7a5bef32a 100644 --- a/types/src/service_types/delete_at_time_details.rs +++ b/types/src/service_types/delete_at_time_details.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,12 +9,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - node_id::NodeId, - date_time::DateTime, -}; +use crate::{basic_types::*, date_time::DateTime, encoding::*, node_id::NodeId}; #[derive(Debug, Clone, PartialEq)] pub struct DeleteAtTimeDetails { @@ -42,9 +37,6 @@ impl BinaryEncoder for DeleteAtTimeDetails { fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { let node_id = NodeId::decode(stream, decoding_options)?; let req_times: Option> = read_array(stream, decoding_options)?; - Ok(DeleteAtTimeDetails { - node_id, - req_times, - }) + Ok(DeleteAtTimeDetails { node_id, req_times }) } } diff --git a/types/src/service_types/delete_event_details.rs b/types/src/service_types/delete_event_details.rs index 3f634071d..7eca2b4b3 100644 --- a/types/src/service_types/delete_event_details.rs +++ b/types/src/service_types/delete_event_details.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,12 +9,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - node_id::NodeId, - byte_string::ByteString, -}; +use crate::{basic_types::*, byte_string::ByteString, encoding::*, node_id::NodeId}; #[derive(Debug, Clone, PartialEq)] pub struct DeleteEventDetails { @@ -42,9 +37,6 @@ impl BinaryEncoder for DeleteEventDetails { fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { let node_id = NodeId::decode(stream, decoding_options)?; let event_ids: Option> = read_array(stream, decoding_options)?; - Ok(DeleteEventDetails { - node_id, - event_ids, - }) + Ok(DeleteEventDetails { node_id, event_ids }) } } diff --git a/types/src/service_types/delete_monitored_items_request.rs b/types/src/service_types/delete_monitored_items_request.rs index 3c04025e6..d502bc3f3 100644 --- a/types/src/service_types/delete_monitored_items_request.rs +++ b/types/src/service_types/delete_monitored_items_request.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,11 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, + basic_types::*, encoding::*, node_ids::ObjectId, request_header::RequestHeader, service_types::impls::MessageInfo, - node_ids::ObjectId, - request_header::RequestHeader, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/delete_monitored_items_response.rs b/types/src/service_types/delete_monitored_items_response.rs index 0a6dabee4..969650efb 100644 --- a/types/src/service_types/delete_monitored_items_response.rs +++ b/types/src/service_types/delete_monitored_items_response.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,13 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - response_header::ResponseHeader, - status_codes::StatusCode, - diagnostic_info::DiagnosticInfo, + basic_types::*, diagnostic_info::DiagnosticInfo, encoding::*, node_ids::ObjectId, + response_header::ResponseHeader, service_types::impls::MessageInfo, status_codes::StatusCode, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/delete_nodes_item.rs b/types/src/service_types/delete_nodes_item.rs index b794bed7c..d1b60592c 100644 --- a/types/src/service_types/delete_nodes_item.rs +++ b/types/src/service_types/delete_nodes_item.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,11 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, + basic_types::*, encoding::*, node_id::NodeId, node_ids::ObjectId, service_types::impls::MessageInfo, - node_ids::ObjectId, - node_id::NodeId, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/delete_nodes_request.rs b/types/src/service_types/delete_nodes_request.rs index 357578791..253845084 100644 --- a/types/src/service_types/delete_nodes_request.rs +++ b/types/src/service_types/delete_nodes_request.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - request_header::RequestHeader, - service_types::DeleteNodesItem, + basic_types::*, encoding::*, node_ids::ObjectId, request_header::RequestHeader, + service_types::impls::MessageInfo, service_types::DeleteNodesItem, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/delete_nodes_response.rs b/types/src/service_types/delete_nodes_response.rs index ac9f97f33..4d256f3fe 100644 --- a/types/src/service_types/delete_nodes_response.rs +++ b/types/src/service_types/delete_nodes_response.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,13 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - response_header::ResponseHeader, - status_codes::StatusCode, - diagnostic_info::DiagnosticInfo, + basic_types::*, diagnostic_info::DiagnosticInfo, encoding::*, node_ids::ObjectId, + response_header::ResponseHeader, service_types::impls::MessageInfo, status_codes::StatusCode, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/delete_raw_modified_details.rs b/types/src/service_types/delete_raw_modified_details.rs index 8afef0107..9779156ac 100644 --- a/types/src/service_types/delete_raw_modified_details.rs +++ b/types/src/service_types/delete_raw_modified_details.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,12 +9,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - node_id::NodeId, - date_time::DateTime, -}; +use crate::{basic_types::*, date_time::DateTime, encoding::*, node_id::NodeId}; #[derive(Debug, Clone, PartialEq)] pub struct DeleteRawModifiedDetails { diff --git a/types/src/service_types/delete_references_item.rs b/types/src/service_types/delete_references_item.rs index f10c1def0..f87f9110d 100644 --- a/types/src/service_types/delete_references_item.rs +++ b/types/src/service_types/delete_references_item.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, + basic_types::*, encoding::*, node_id::ExpandedNodeId, node_id::NodeId, node_ids::ObjectId, service_types::impls::MessageInfo, - node_ids::ObjectId, - node_id::NodeId, - node_id::ExpandedNodeId, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/delete_references_request.rs b/types/src/service_types/delete_references_request.rs index e7e3260a8..a0e436677 100644 --- a/types/src/service_types/delete_references_request.rs +++ b/types/src/service_types/delete_references_request.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - request_header::RequestHeader, - service_types::DeleteReferencesItem, + basic_types::*, encoding::*, node_ids::ObjectId, request_header::RequestHeader, + service_types::impls::MessageInfo, service_types::DeleteReferencesItem, }; #[derive(Debug, Clone, PartialEq)] @@ -49,7 +45,8 @@ impl BinaryEncoder for DeleteReferencesRequest { #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { let request_header = RequestHeader::decode(stream, decoding_options)?; - let references_to_delete: Option> = read_array(stream, decoding_options)?; + let references_to_delete: Option> = + read_array(stream, decoding_options)?; Ok(DeleteReferencesRequest { request_header, references_to_delete, diff --git a/types/src/service_types/delete_references_response.rs b/types/src/service_types/delete_references_response.rs index b35f8cec8..6e4006050 100644 --- a/types/src/service_types/delete_references_response.rs +++ b/types/src/service_types/delete_references_response.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,13 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - response_header::ResponseHeader, - status_codes::StatusCode, - diagnostic_info::DiagnosticInfo, + basic_types::*, diagnostic_info::DiagnosticInfo, encoding::*, node_ids::ObjectId, + response_header::ResponseHeader, service_types::impls::MessageInfo, status_codes::StatusCode, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/delete_subscriptions_request.rs b/types/src/service_types/delete_subscriptions_request.rs index 98e6bb2f0..8c327bbde 100644 --- a/types/src/service_types/delete_subscriptions_request.rs +++ b/types/src/service_types/delete_subscriptions_request.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,11 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, + basic_types::*, encoding::*, node_ids::ObjectId, request_header::RequestHeader, service_types::impls::MessageInfo, - node_ids::ObjectId, - request_header::RequestHeader, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/delete_subscriptions_response.rs b/types/src/service_types/delete_subscriptions_response.rs index 7627813b4..fb7c23024 100644 --- a/types/src/service_types/delete_subscriptions_response.rs +++ b/types/src/service_types/delete_subscriptions_response.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,13 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - response_header::ResponseHeader, - status_codes::StatusCode, - diagnostic_info::DiagnosticInfo, + basic_types::*, diagnostic_info::DiagnosticInfo, encoding::*, node_ids::ObjectId, + response_header::ResponseHeader, service_types::impls::MessageInfo, status_codes::StatusCode, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/discovery_configuration.rs b/types/src/service_types/discovery_configuration.rs index 30111e2e5..d6e5d38d2 100644 --- a/types/src/service_types/discovery_configuration.rs +++ b/types/src/service_types/discovery_configuration.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,16 +9,10 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, -}; +use crate::{basic_types::*, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo}; #[derive(Debug, Clone, PartialEq)] -pub struct DiscoveryConfiguration { -} +pub struct DiscoveryConfiguration {} impl MessageInfo for DiscoveryConfiguration { fn object_id(&self) -> ObjectId { @@ -38,7 +32,6 @@ impl BinaryEncoder for DiscoveryConfiguration { #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { - Ok(DiscoveryConfiguration { - }) + Ok(DiscoveryConfiguration {}) } } diff --git a/types/src/service_types/double_complex_number_type.rs b/types/src/service_types/double_complex_number_type.rs index f8be24694..0703a1eaf 100644 --- a/types/src/service_types/double_complex_number_type.rs +++ b/types/src/service_types/double_complex_number_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,12 +9,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, -}; +use crate::{basic_types::*, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo}; #[derive(Debug, Clone, PartialEq)] pub struct DoubleComplexNumberType { @@ -48,9 +43,6 @@ impl BinaryEncoder for DoubleComplexNumberType { fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { let real = f64::decode(stream, decoding_options)?; let imaginary = f64::decode(stream, decoding_options)?; - Ok(DoubleComplexNumberType { - real, - imaginary, - }) + Ok(DoubleComplexNumberType { real, imaginary }) } } diff --git a/types/src/service_types/element_operand.rs b/types/src/service_types/element_operand.rs index 2c23f00f6..963f2944a 100644 --- a/types/src/service_types/element_operand.rs +++ b/types/src/service_types/element_operand.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,10 +9,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, -}; +use crate::{basic_types::*, encoding::*}; #[derive(Debug, Clone, PartialEq)] pub struct ElementOperand { @@ -36,8 +33,6 @@ impl BinaryEncoder for ElementOperand { #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { let index = u32::decode(stream, decoding_options)?; - Ok(ElementOperand { - index, - }) + Ok(ElementOperand { index }) } } diff --git a/types/src/service_types/endpoint_configuration.rs b/types/src/service_types/endpoint_configuration.rs index c4cb8d5b5..1c6edf701 100644 --- a/types/src/service_types/endpoint_configuration.rs +++ b/types/src/service_types/endpoint_configuration.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,12 +9,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, -}; +use crate::{basic_types::*, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo}; #[derive(Debug, Clone, PartialEq)] pub struct EndpointConfiguration { diff --git a/types/src/service_types/endpoint_description.rs b/types/src/service_types/endpoint_description.rs index 0fa39d6a3..7735f1d9c 100644 --- a/types/src/service_types/endpoint_description.rs +++ b/types/src/service_types/endpoint_description.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,15 +10,9 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - string::UAString, - byte_string::ByteString, - service_types::enums::MessageSecurityMode, - service_types::ApplicationDescription, - service_types::UserTokenPolicy, + basic_types::*, byte_string::ByteString, encoding::*, node_ids::ObjectId, + service_types::enums::MessageSecurityMode, service_types::impls::MessageInfo, + service_types::ApplicationDescription, service_types::UserTokenPolicy, string::UAString, }; #[derive(Debug, Clone, PartialEq)] @@ -74,7 +68,8 @@ impl BinaryEncoder for EndpointDescription { let server_certificate = ByteString::decode(stream, decoding_options)?; let security_mode = MessageSecurityMode::decode(stream, decoding_options)?; let security_policy_uri = UAString::decode(stream, decoding_options)?; - let user_identity_tokens: Option> = read_array(stream, decoding_options)?; + let user_identity_tokens: Option> = + read_array(stream, decoding_options)?; let transport_profile_uri = UAString::decode(stream, decoding_options)?; let security_level = u8::decode(stream, decoding_options)?; Ok(EndpointDescription { diff --git a/types/src/service_types/endpoint_type.rs b/types/src/service_types/endpoint_type.rs index 4e2558454..d80b8901c 100644 --- a/types/src/service_types/endpoint_type.rs +++ b/types/src/service_types/endpoint_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - string::UAString, - service_types::enums::MessageSecurityMode, + basic_types::*, encoding::*, node_ids::ObjectId, service_types::enums::MessageSecurityMode, + service_types::impls::MessageInfo, string::UAString, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/endpoint_url_list_data_type.rs b/types/src/service_types/endpoint_url_list_data_type.rs index 2a7bc2c12..039ab9287 100644 --- a/types/src/service_types/endpoint_url_list_data_type.rs +++ b/types/src/service_types/endpoint_url_list_data_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,10 +10,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, + basic_types::*, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo, string::UAString, }; @@ -45,8 +42,6 @@ impl BinaryEncoder for EndpointUrlListDataType { #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { let endpoint_url_list: Option> = read_array(stream, decoding_options)?; - Ok(EndpointUrlListDataType { - endpoint_url_list, - }) + Ok(EndpointUrlListDataType { endpoint_url_list }) } } diff --git a/types/src/service_types/enum_definition.rs b/types/src/service_types/enum_definition.rs index e9e01b7d5..dfc4ef787 100644 --- a/types/src/service_types/enum_definition.rs +++ b/types/src/service_types/enum_definition.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,11 +9,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - service_types::EnumField, -}; +use crate::{basic_types::*, encoding::*, service_types::EnumField}; #[derive(Debug, Clone, PartialEq)] pub struct EnumDefinition { @@ -37,8 +33,6 @@ impl BinaryEncoder for EnumDefinition { #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { let fields: Option> = read_array(stream, decoding_options)?; - Ok(EnumDefinition { - fields, - }) + Ok(EnumDefinition { fields }) } } diff --git a/types/src/service_types/enum_description.rs b/types/src/service_types/enum_description.rs index e8e24c5e1..4a8034af2 100644 --- a/types/src/service_types/enum_description.rs +++ b/types/src/service_types/enum_description.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,10 +10,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - node_id::NodeId, - qualified_name::QualifiedName, + basic_types::*, encoding::*, node_id::NodeId, qualified_name::QualifiedName, service_types::EnumDefinition, }; diff --git a/types/src/service_types/enum_field.rs b/types/src/service_types/enum_field.rs index b6bfb5ecc..605f8f130 100644 --- a/types/src/service_types/enum_field.rs +++ b/types/src/service_types/enum_field.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,12 +9,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - localized_text::LocalizedText, - string::UAString, -}; +use crate::{basic_types::*, encoding::*, localized_text::LocalizedText, string::UAString}; #[derive(Debug, Clone, PartialEq)] pub struct EnumField { diff --git a/types/src/service_types/enum_value_type.rs b/types/src/service_types/enum_value_type.rs index 5cfb39ac3..4dbdc6ad9 100644 --- a/types/src/service_types/enum_value_type.rs +++ b/types/src/service_types/enum_value_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,11 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, + basic_types::*, encoding::*, localized_text::LocalizedText, node_ids::ObjectId, service_types::impls::MessageInfo, - node_ids::ObjectId, - localized_text::LocalizedText, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/enums.rs b/types/src/service_types/enums.rs index 31c303166..095032006 100644 --- a/types/src/service_types/enums.rs +++ b/types/src/service_types/enums.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -50,7 +50,6 @@ impl BinaryEncoder for NodeIdType { } } - #[derive(Debug, Copy, Clone, PartialEq)] pub enum NamingRuleType { Mandatory = 1, @@ -81,7 +80,6 @@ impl BinaryEncoder for NamingRuleType { } } - #[derive(Debug, Copy, Clone, PartialEq)] pub enum OpenFileMode { Read = 1, @@ -114,7 +112,6 @@ impl BinaryEncoder for OpenFileMode { } } - #[derive(Debug, Copy, Clone, PartialEq)] pub enum IdentityCriteriaType { UserName = 1, @@ -151,7 +148,6 @@ impl BinaryEncoder for IdentityCriteriaType { } } - #[derive(Debug, Copy, Clone, PartialEq)] pub enum TrustListMasks { None = 0, @@ -188,7 +184,6 @@ impl BinaryEncoder for TrustListMasks { } } - #[derive(Debug, Copy, Clone, PartialEq)] pub enum PubSubState { Disabled = 0, @@ -221,8 +216,7 @@ impl BinaryEncoder for PubSubState { } } - -bitflags!{ +bitflags! { pub struct DataSetFieldFlags: i16 { const None = 0; const PromotedField = 1; @@ -239,12 +233,14 @@ impl BinaryEncoder for DataSetFieldFlags { } fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { - Ok(DataSetFieldFlags::from_bits_truncate(i16::decode(stream, decoding_options)?)) + Ok(DataSetFieldFlags::from_bits_truncate(i16::decode( + stream, + decoding_options, + )?)) } } - -bitflags!{ +bitflags! { pub struct DataSetFieldContentMask: i32 { const None = 0; const StatusCode = 1; @@ -266,11 +262,13 @@ impl BinaryEncoder for DataSetFieldContentMask { } fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { - Ok(DataSetFieldContentMask::from_bits_truncate(i32::decode(stream, decoding_options)?)) + Ok(DataSetFieldContentMask::from_bits_truncate(i32::decode( + stream, + decoding_options, + )?)) } } - #[derive(Debug, Copy, Clone, PartialEq)] pub enum OverrideValueHandling { Disabled = 0, @@ -301,7 +299,6 @@ impl BinaryEncoder for OverrideValueHandling { } } - #[derive(Debug, Copy, Clone, PartialEq)] pub enum DataSetOrderingType { Undefined = 0, @@ -332,8 +329,7 @@ impl BinaryEncoder for DataSetOrderingType { } } - -bitflags!{ +bitflags! { pub struct UadpNetworkMessageContentMask: i32 { const None = 0; const PublisherId = 1; @@ -360,12 +356,13 @@ impl BinaryEncoder for UadpNetworkMessageContentM } fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { - Ok(UadpNetworkMessageContentMask::from_bits_truncate(i32::decode(stream, decoding_options)?)) + Ok(UadpNetworkMessageContentMask::from_bits_truncate( + i32::decode(stream, decoding_options)?, + )) } } - -bitflags!{ +bitflags! { pub struct UadpDataSetMessageContentMask: i32 { const None = 0; const Timestamp = 1; @@ -387,12 +384,13 @@ impl BinaryEncoder for UadpDataSetMessageContentM } fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { - Ok(UadpDataSetMessageContentMask::from_bits_truncate(i32::decode(stream, decoding_options)?)) + Ok(UadpDataSetMessageContentMask::from_bits_truncate( + i32::decode(stream, decoding_options)?, + )) } } - -bitflags!{ +bitflags! { pub struct JsonNetworkMessageContentMask: i32 { const None = 0; const NetworkMessageHeader = 1; @@ -414,12 +412,13 @@ impl BinaryEncoder for JsonNetworkMessageContentM } fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { - Ok(JsonNetworkMessageContentMask::from_bits_truncate(i32::decode(stream, decoding_options)?)) + Ok(JsonNetworkMessageContentMask::from_bits_truncate( + i32::decode(stream, decoding_options)?, + )) } } - -bitflags!{ +bitflags! { pub struct JsonDataSetMessageContentMask: i32 { const None = 0; const DataSetWriterId = 1; @@ -440,11 +439,12 @@ impl BinaryEncoder for JsonDataSetMessageContentM } fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { - Ok(JsonDataSetMessageContentMask::from_bits_truncate(i32::decode(stream, decoding_options)?)) + Ok(JsonDataSetMessageContentMask::from_bits_truncate( + i32::decode(stream, decoding_options)?, + )) } } - #[derive(Debug, Copy, Clone, PartialEq)] pub enum BrokerTransportQualityOfService { NotSpecified = 0, @@ -472,14 +472,16 @@ impl BinaryEncoder for BrokerTransportQualityOf 3 => Ok(Self::AtMostOnce), 4 => Ok(Self::ExactlyOnce), v => { - error!("Invalid value {} for enum BrokerTransportQualityOfService", v); + error!( + "Invalid value {} for enum BrokerTransportQualityOfService", + v + ); Err(StatusCode::BadUnexpectedError) } } } } - #[derive(Debug, Copy, Clone, PartialEq)] pub enum DiagnosticsLevel { Basic = 0, @@ -514,14 +516,15 @@ impl BinaryEncoder for DiagnosticsLevel { } } - #[derive(Debug, Copy, Clone, PartialEq)] pub enum PubSubDiagnosticsCounterClassification { Information = 0, Error = 1, } -impl BinaryEncoder for PubSubDiagnosticsCounterClassification { +impl BinaryEncoder + for PubSubDiagnosticsCounterClassification +{ fn byte_len(&self) -> usize { 4 } @@ -536,14 +539,16 @@ impl BinaryEncoder for PubSubDiagnostics 0 => Ok(Self::Information), 1 => Ok(Self::Error), v => { - error!("Invalid value {} for enum PubSubDiagnosticsCounterClassification", v); + error!( + "Invalid value {} for enum PubSubDiagnosticsCounterClassification", + v + ); Err(StatusCode::BadUnexpectedError) } } } } - #[derive(Debug, Copy, Clone, PartialEq)] pub enum IdType { Numeric = 0, @@ -576,7 +581,6 @@ impl BinaryEncoder for IdType { } } - #[derive(Debug, Copy, Clone, PartialEq)] pub enum NodeClass { Unspecified = 0, @@ -619,8 +623,7 @@ impl BinaryEncoder for NodeClass { } } - -bitflags!{ +bitflags! { pub struct PermissionType: i32 { const None = 0; const Browse = 1; @@ -653,12 +656,14 @@ impl BinaryEncoder for PermissionType { } fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { - Ok(PermissionType::from_bits_truncate(i32::decode(stream, decoding_options)?)) + Ok(PermissionType::from_bits_truncate(i32::decode( + stream, + decoding_options, + )?)) } } - -bitflags!{ +bitflags! { pub struct AccessLevelType: u8 { const None = 0; const CurrentRead = 1; @@ -681,12 +686,14 @@ impl BinaryEncoder for AccessLevelType { } fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { - Ok(AccessLevelType::from_bits_truncate(u8::decode(stream, decoding_options)?)) + Ok(AccessLevelType::from_bits_truncate(u8::decode( + stream, + decoding_options, + )?)) } } - -bitflags!{ +bitflags! { pub struct AccessLevelExType: i32 { const None = 0; const CurrentRead = 1; @@ -713,12 +720,14 @@ impl BinaryEncoder for AccessLevelExType { } fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { - Ok(AccessLevelExType::from_bits_truncate(i32::decode(stream, decoding_options)?)) + Ok(AccessLevelExType::from_bits_truncate(i32::decode( + stream, + decoding_options, + )?)) } } - -bitflags!{ +bitflags! { pub struct EventNotifierType: u8 { const None = 0; const SubscribeToEvents = 1; @@ -737,12 +746,14 @@ impl BinaryEncoder for EventNotifierType { } fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { - Ok(EventNotifierType::from_bits_truncate(u8::decode(stream, decoding_options)?)) + Ok(EventNotifierType::from_bits_truncate(u8::decode( + stream, + decoding_options, + )?)) } } - -bitflags!{ +bitflags! { pub struct AccessRestrictionType: i16 { const None = 0; const SigningRequired = 1; @@ -762,11 +773,13 @@ impl BinaryEncoder for AccessRestrictionType { } fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { - Ok(AccessRestrictionType::from_bits_truncate(i16::decode(stream, decoding_options)?)) + Ok(AccessRestrictionType::from_bits_truncate(i16::decode( + stream, + decoding_options, + )?)) } } - #[derive(Debug, Copy, Clone, PartialEq)] pub enum StructureType { Structure = 0, @@ -797,7 +810,6 @@ impl BinaryEncoder for StructureType { } } - #[derive(Debug, Copy, Clone, PartialEq)] pub enum ApplicationType { Server = 0, @@ -830,7 +842,6 @@ impl BinaryEncoder for ApplicationType { } } - #[derive(Debug, Copy, Clone, PartialEq)] pub enum MessageSecurityMode { Invalid = 0, @@ -863,7 +874,6 @@ impl BinaryEncoder for MessageSecurityMode { } } - #[derive(Debug, Copy, Clone, PartialEq)] pub enum UserTokenType { Anonymous = 0, @@ -896,7 +906,6 @@ impl BinaryEncoder for UserTokenType { } } - #[derive(Debug, Copy, Clone, PartialEq)] pub enum SecurityTokenRequestType { Issue = 0, @@ -925,7 +934,6 @@ impl BinaryEncoder for SecurityTokenRequestType { } } - #[derive(Debug, Copy, Clone, PartialEq)] pub enum NodeAttributesMask { None = 0, @@ -1020,8 +1028,7 @@ impl BinaryEncoder for NodeAttributesMask { } } - -bitflags!{ +bitflags! { pub struct AttributeWriteMask: i32 { const None = 0; const AccessLevel = 1; @@ -1063,11 +1070,13 @@ impl BinaryEncoder for AttributeWriteMask { } fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { - Ok(AttributeWriteMask::from_bits_truncate(i32::decode(stream, decoding_options)?)) + Ok(AttributeWriteMask::from_bits_truncate(i32::decode( + stream, + decoding_options, + )?)) } } - #[derive(Debug, Copy, Clone, PartialEq)] pub enum BrowseDirection { Forward = 0, @@ -1100,7 +1109,6 @@ impl BinaryEncoder for BrowseDirection { } } - #[derive(Debug, Copy, Clone, PartialEq)] pub enum BrowseResultMask { None = 0, @@ -1145,7 +1153,6 @@ impl BinaryEncoder for BrowseResultMask { } } - #[derive(Debug, Copy, Clone, PartialEq, Serialize)] pub enum FilterOperator { Equals = 0, @@ -1206,7 +1213,6 @@ impl BinaryEncoder for FilterOperator { } } - #[derive(Debug, Copy, Clone, PartialEq, Serialize)] pub enum TimestampsToReturn { Source = 0, @@ -1241,7 +1247,6 @@ impl BinaryEncoder for TimestampsToReturn { } } - #[derive(Debug, Copy, Clone, PartialEq)] pub enum HistoryUpdateType { Insert = 1, @@ -1274,7 +1279,6 @@ impl BinaryEncoder for HistoryUpdateType { } } - #[derive(Debug, Copy, Clone, PartialEq)] pub enum PerformUpdateType { Insert = 1, @@ -1307,7 +1311,6 @@ impl BinaryEncoder for PerformUpdateType { } } - #[derive(Debug, Copy, Clone, PartialEq, Serialize)] pub enum MonitoringMode { Disabled = 0, @@ -1338,7 +1341,6 @@ impl BinaryEncoder for MonitoringMode { } } - #[derive(Debug, Copy, Clone, PartialEq, Serialize)] pub enum DataChangeTrigger { Status = 0, @@ -1369,7 +1371,6 @@ impl BinaryEncoder for DataChangeTrigger { } } - #[derive(Debug, Copy, Clone, PartialEq)] pub enum DeadbandType { None = 0, @@ -1400,7 +1401,6 @@ impl BinaryEncoder for DeadbandType { } } - #[derive(Debug, Copy, Clone, PartialEq)] pub enum RedundancySupport { None = 0, @@ -1437,7 +1437,6 @@ impl BinaryEncoder for RedundancySupport { } } - #[derive(Debug, Copy, Clone, PartialEq)] pub enum ServerState { Running = 0, @@ -1478,7 +1477,6 @@ impl BinaryEncoder for ServerState { } } - #[derive(Debug, Copy, Clone, PartialEq)] pub enum ModelChangeStructureVerbMask { NodeAdded = 1, @@ -1513,7 +1511,6 @@ impl BinaryEncoder for ModelChangeStructureVerbMas } } - #[derive(Debug, Copy, Clone, PartialEq)] pub enum AxisScaleEnumeration { Linear = 0, @@ -1544,7 +1541,6 @@ impl BinaryEncoder for AxisScaleEnumeration { } } - #[derive(Debug, Copy, Clone, PartialEq)] pub enum ExceptionDeviationFormat { AbsoluteValue = 0, diff --git a/types/src/service_types/ephemeral_key_type.rs b/types/src/service_types/ephemeral_key_type.rs index 79ebe6952..5ecd0c07f 100644 --- a/types/src/service_types/ephemeral_key_type.rs +++ b/types/src/service_types/ephemeral_key_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,11 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, + basic_types::*, byte_string::ByteString, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo, - node_ids::ObjectId, - byte_string::ByteString, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/eu_information.rs b/types/src/service_types/eu_information.rs index 01b96d3ac..8347730d5 100644 --- a/types/src/service_types/eu_information.rs +++ b/types/src/service_types/eu_information.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - string::UAString, - localized_text::LocalizedText, + basic_types::*, encoding::*, localized_text::LocalizedText, node_ids::ObjectId, + service_types::impls::MessageInfo, string::UAString, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/event_field_list.rs b/types/src/service_types/event_field_list.rs index 08d3e95b0..145ea89f6 100644 --- a/types/src/service_types/event_field_list.rs +++ b/types/src/service_types/event_field_list.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,10 +10,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, + basic_types::*, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo, variant::Variant, }; diff --git a/types/src/service_types/event_filter.rs b/types/src/service_types/event_filter.rs index d87488c98..ff6d4c21e 100644 --- a/types/src/service_types/event_filter.rs +++ b/types/src/service_types/event_filter.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,10 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, + basic_types::*, encoding::*, service_types::ContentFilter, service_types::SimpleAttributeOperand, - service_types::ContentFilter, }; #[derive(Debug, Clone, PartialEq, Serialize)] @@ -40,7 +38,8 @@ impl BinaryEncoder for EventFilter { #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { - let select_clauses: Option> = read_array(stream, decoding_options)?; + let select_clauses: Option> = + read_array(stream, decoding_options)?; let where_clause = ContentFilter::decode(stream, decoding_options)?; Ok(EventFilter { select_clauses, diff --git a/types/src/service_types/event_filter_result.rs b/types/src/service_types/event_filter_result.rs index 05d33be40..afa842f2c 100644 --- a/types/src/service_types/event_filter_result.rs +++ b/types/src/service_types/event_filter_result.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,11 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - status_codes::StatusCode, - diagnostic_info::DiagnosticInfo, - service_types::ContentFilterResult, + basic_types::*, diagnostic_info::DiagnosticInfo, encoding::*, + service_types::ContentFilterResult, status_codes::StatusCode, }; #[derive(Debug, Clone, PartialEq)] @@ -45,7 +42,8 @@ impl BinaryEncoder for EventFilterResult { #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { let select_clause_results: Option> = read_array(stream, decoding_options)?; - let select_clause_diagnostic_infos: Option> = read_array(stream, decoding_options)?; + let select_clause_diagnostic_infos: Option> = + read_array(stream, decoding_options)?; let where_clause_result = ContentFilterResult::decode(stream, decoding_options)?; Ok(EventFilterResult { select_clause_results, diff --git a/types/src/service_types/event_notification_list.rs b/types/src/service_types/event_notification_list.rs index 457c642d2..c96ed1f16 100644 --- a/types/src/service_types/event_notification_list.rs +++ b/types/src/service_types/event_notification_list.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,11 +9,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - service_types::EventFieldList, -}; +use crate::{basic_types::*, encoding::*, service_types::EventFieldList}; #[derive(Debug, Clone, PartialEq)] pub struct EventNotificationList { @@ -37,8 +33,6 @@ impl BinaryEncoder for EventNotificationList { #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { let events: Option> = read_array(stream, decoding_options)?; - Ok(EventNotificationList { - events, - }) + Ok(EventNotificationList { events }) } } diff --git a/types/src/service_types/field_meta_data.rs b/types/src/service_types/field_meta_data.rs index a82739199..1630f571f 100644 --- a/types/src/service_types/field_meta_data.rs +++ b/types/src/service_types/field_meta_data.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,16 +10,9 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - string::UAString, - localized_text::LocalizedText, - service_types::enums::DataSetFieldFlags, - node_id::NodeId, - guid::Guid, - service_types::KeyValuePair, + basic_types::*, encoding::*, guid::Guid, localized_text::LocalizedText, node_id::NodeId, + node_ids::ObjectId, service_types::enums::DataSetFieldFlags, service_types::impls::MessageInfo, + service_types::KeyValuePair, string::UAString, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/field_target_data_type.rs b/types/src/service_types/field_target_data_type.rs index f63917547..849f68158 100644 --- a/types/src/service_types/field_target_data_type.rs +++ b/types/src/service_types/field_target_data_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,15 +10,9 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - guid::Guid, - string::UAString, - node_id::NodeId, - service_types::enums::OverrideValueHandling, - variant::Variant, + basic_types::*, encoding::*, guid::Guid, node_id::NodeId, node_ids::ObjectId, + service_types::enums::OverrideValueHandling, service_types::impls::MessageInfo, + string::UAString, variant::Variant, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/filter_operand.rs b/types/src/service_types/filter_operand.rs index 6fb170b57..057b974f3 100644 --- a/types/src/service_types/filter_operand.rs +++ b/types/src/service_types/filter_operand.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,16 +9,10 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, -}; +use crate::{basic_types::*, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo}; #[derive(Debug, Clone, PartialEq)] -pub struct FilterOperand { -} +pub struct FilterOperand {} impl MessageInfo for FilterOperand { fn object_id(&self) -> ObjectId { @@ -38,7 +32,6 @@ impl BinaryEncoder for FilterOperand { #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { - Ok(FilterOperand { - }) + Ok(FilterOperand {}) } } diff --git a/types/src/service_types/find_servers_on_network_request.rs b/types/src/service_types/find_servers_on_network_request.rs index 4bc5cc952..4cad01da2 100644 --- a/types/src/service_types/find_servers_on_network_request.rs +++ b/types/src/service_types/find_servers_on_network_request.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - request_header::RequestHeader, - string::UAString, + basic_types::*, encoding::*, node_ids::ObjectId, request_header::RequestHeader, + service_types::impls::MessageInfo, string::UAString, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/find_servers_on_network_response.rs b/types/src/service_types/find_servers_on_network_response.rs index af09e6e22..d2a0b6584 100644 --- a/types/src/service_types/find_servers_on_network_response.rs +++ b/types/src/service_types/find_servers_on_network_response.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - response_header::ResponseHeader, - date_time::DateTime, + basic_types::*, date_time::DateTime, encoding::*, node_ids::ObjectId, + response_header::ResponseHeader, service_types::impls::MessageInfo, service_types::ServerOnNetwork, }; diff --git a/types/src/service_types/find_servers_request.rs b/types/src/service_types/find_servers_request.rs index 4e87e190d..81c357990 100644 --- a/types/src/service_types/find_servers_request.rs +++ b/types/src/service_types/find_servers_request.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - request_header::RequestHeader, - string::UAString, + basic_types::*, encoding::*, node_ids::ObjectId, request_header::RequestHeader, + service_types::impls::MessageInfo, string::UAString, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/find_servers_response.rs b/types/src/service_types/find_servers_response.rs index 08a2cb6b8..395684563 100644 --- a/types/src/service_types/find_servers_response.rs +++ b/types/src/service_types/find_servers_response.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - response_header::ResponseHeader, - service_types::ApplicationDescription, + basic_types::*, encoding::*, node_ids::ObjectId, response_header::ResponseHeader, + service_types::impls::MessageInfo, service_types::ApplicationDescription, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/frame.rs b/types/src/service_types/frame.rs index f0d381364..93509ff92 100644 --- a/types/src/service_types/frame.rs +++ b/types/src/service_types/frame.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,16 +9,10 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, -}; +use crate::{basic_types::*, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo}; #[derive(Debug, Clone, PartialEq)] -pub struct Frame { -} +pub struct Frame {} impl MessageInfo for Frame { fn object_id(&self) -> ObjectId { @@ -38,7 +32,6 @@ impl BinaryEncoder for Frame { #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { - Ok(Frame { - }) + Ok(Frame {}) } } diff --git a/types/src/service_types/generic_attribute_value.rs b/types/src/service_types/generic_attribute_value.rs index a59f7dde2..1fb129f91 100644 --- a/types/src/service_types/generic_attribute_value.rs +++ b/types/src/service_types/generic_attribute_value.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,10 +10,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, + basic_types::*, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo, variant::Variant, }; diff --git a/types/src/service_types/generic_attributes.rs b/types/src/service_types/generic_attributes.rs index add1968f8..052e3961a 100644 --- a/types/src/service_types/generic_attributes.rs +++ b/types/src/service_types/generic_attributes.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,9 +10,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - localized_text::LocalizedText, + basic_types::*, encoding::*, localized_text::LocalizedText, service_types::GenericAttributeValue, }; @@ -57,7 +55,8 @@ impl BinaryEncoder for GenericAttributes { let description = LocalizedText::decode(stream, decoding_options)?; let write_mask = u32::decode(stream, decoding_options)?; let user_write_mask = u32::decode(stream, decoding_options)?; - let attribute_values: Option> = read_array(stream, decoding_options)?; + let attribute_values: Option> = + read_array(stream, decoding_options)?; Ok(GenericAttributes { specified_attributes, display_name, diff --git a/types/src/service_types/get_endpoints_request.rs b/types/src/service_types/get_endpoints_request.rs index c64b47765..21b686dd3 100644 --- a/types/src/service_types/get_endpoints_request.rs +++ b/types/src/service_types/get_endpoints_request.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - request_header::RequestHeader, - string::UAString, + basic_types::*, encoding::*, node_ids::ObjectId, request_header::RequestHeader, + service_types::impls::MessageInfo, string::UAString, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/get_endpoints_response.rs b/types/src/service_types/get_endpoints_response.rs index cddec2a9c..d3d6f017d 100644 --- a/types/src/service_types/get_endpoints_response.rs +++ b/types/src/service_types/get_endpoints_response.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - response_header::ResponseHeader, - service_types::EndpointDescription, + basic_types::*, encoding::*, node_ids::ObjectId, response_header::ResponseHeader, + service_types::impls::MessageInfo, service_types::EndpointDescription, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/history_data.rs b/types/src/service_types/history_data.rs index 6243218bb..2c919543f 100644 --- a/types/src/service_types/history_data.rs +++ b/types/src/service_types/history_data.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,11 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, + basic_types::*, data_value::DataValue, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo, - node_ids::ObjectId, - data_value::DataValue, }; #[derive(Debug, Clone, PartialEq)] @@ -45,8 +42,6 @@ impl BinaryEncoder for HistoryData { #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { let data_values: Option> = read_array(stream, decoding_options)?; - Ok(HistoryData { - data_values, - }) + Ok(HistoryData { data_values }) } } diff --git a/types/src/service_types/history_event.rs b/types/src/service_types/history_event.rs index a38f2eab1..d04fbcc39 100644 --- a/types/src/service_types/history_event.rs +++ b/types/src/service_types/history_event.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,10 +10,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, + basic_types::*, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo, service_types::HistoryEventFieldList, }; @@ -45,8 +42,6 @@ impl BinaryEncoder for HistoryEvent { #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { let events: Option> = read_array(stream, decoding_options)?; - Ok(HistoryEvent { - events, - }) + Ok(HistoryEvent { events }) } } diff --git a/types/src/service_types/history_event_field_list.rs b/types/src/service_types/history_event_field_list.rs index f3f17ee1b..0ccfb0c2a 100644 --- a/types/src/service_types/history_event_field_list.rs +++ b/types/src/service_types/history_event_field_list.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,10 +10,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, + basic_types::*, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo, variant::Variant, }; @@ -45,8 +42,6 @@ impl BinaryEncoder for HistoryEventFieldList { #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { let event_fields: Option> = read_array(stream, decoding_options)?; - Ok(HistoryEventFieldList { - event_fields, - }) + Ok(HistoryEventFieldList { event_fields }) } } diff --git a/types/src/service_types/history_modified_data.rs b/types/src/service_types/history_modified_data.rs index 0d458bac0..c2f179cae 100644 --- a/types/src/service_types/history_modified_data.rs +++ b/types/src/service_types/history_modified_data.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,12 +9,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - data_value::DataValue, - service_types::ModificationInfo, -}; +use crate::{basic_types::*, data_value::DataValue, encoding::*, service_types::ModificationInfo}; #[derive(Debug, Clone, PartialEq)] pub struct HistoryModifiedData { @@ -41,7 +36,8 @@ impl BinaryEncoder for HistoryModifiedData { #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { let data_values: Option> = read_array(stream, decoding_options)?; - let modification_infos: Option> = read_array(stream, decoding_options)?; + let modification_infos: Option> = + read_array(stream, decoding_options)?; Ok(HistoryModifiedData { data_values, modification_infos, diff --git a/types/src/service_types/history_read_details.rs b/types/src/service_types/history_read_details.rs index 7fc7193d7..f5664f462 100644 --- a/types/src/service_types/history_read_details.rs +++ b/types/src/service_types/history_read_details.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,16 +9,10 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, -}; +use crate::{basic_types::*, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo}; #[derive(Debug, Clone, PartialEq)] -pub struct HistoryReadDetails { -} +pub struct HistoryReadDetails {} impl MessageInfo for HistoryReadDetails { fn object_id(&self) -> ObjectId { @@ -38,7 +32,6 @@ impl BinaryEncoder for HistoryReadDetails { #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { - Ok(HistoryReadDetails { - }) + Ok(HistoryReadDetails {}) } } diff --git a/types/src/service_types/history_read_request.rs b/types/src/service_types/history_read_request.rs index 4742c36e0..41d1db1b1 100644 --- a/types/src/service_types/history_read_request.rs +++ b/types/src/service_types/history_read_request.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,14 +10,9 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - request_header::RequestHeader, - extension_object::ExtensionObject, - service_types::enums::TimestampsToReturn, - service_types::HistoryReadValueId, + basic_types::*, encoding::*, extension_object::ExtensionObject, node_ids::ObjectId, + request_header::RequestHeader, service_types::enums::TimestampsToReturn, + service_types::impls::MessageInfo, service_types::HistoryReadValueId, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/history_read_response.rs b/types/src/service_types/history_read_response.rs index 298a4eeba..d7511e55f 100644 --- a/types/src/service_types/history_read_response.rs +++ b/types/src/service_types/history_read_response.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - response_header::ResponseHeader, - diagnostic_info::DiagnosticInfo, + basic_types::*, diagnostic_info::DiagnosticInfo, encoding::*, node_ids::ObjectId, + response_header::ResponseHeader, service_types::impls::MessageInfo, service_types::HistoryReadResult, }; diff --git a/types/src/service_types/history_read_result.rs b/types/src/service_types/history_read_result.rs index c24034111..4b5bc68ef 100644 --- a/types/src/service_types/history_read_result.rs +++ b/types/src/service_types/history_read_result.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,13 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - status_codes::StatusCode, - byte_string::ByteString, - extension_object::ExtensionObject, + basic_types::*, byte_string::ByteString, encoding::*, extension_object::ExtensionObject, + node_ids::ObjectId, service_types::impls::MessageInfo, status_codes::StatusCode, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/history_read_value_id.rs b/types/src/service_types/history_read_value_id.rs index af8c76ea7..b31fad6e7 100644 --- a/types/src/service_types/history_read_value_id.rs +++ b/types/src/service_types/history_read_value_id.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,14 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - node_id::NodeId, - string::UAString, - qualified_name::QualifiedName, - byte_string::ByteString, + basic_types::*, byte_string::ByteString, encoding::*, node_id::NodeId, node_ids::ObjectId, + qualified_name::QualifiedName, service_types::impls::MessageInfo, string::UAString, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/history_update_details.rs b/types/src/service_types/history_update_details.rs index 5e8be4d47..66e9e9bec 100644 --- a/types/src/service_types/history_update_details.rs +++ b/types/src/service_types/history_update_details.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,11 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, + basic_types::*, encoding::*, node_id::NodeId, node_ids::ObjectId, service_types::impls::MessageInfo, - node_ids::ObjectId, - node_id::NodeId, }; #[derive(Debug, Clone, PartialEq)] @@ -45,8 +42,6 @@ impl BinaryEncoder for HistoryUpdateDetails { #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { let node_id = NodeId::decode(stream, decoding_options)?; - Ok(HistoryUpdateDetails { - node_id, - }) + Ok(HistoryUpdateDetails { node_id }) } } diff --git a/types/src/service_types/history_update_request.rs b/types/src/service_types/history_update_request.rs index 3ab9a1d84..9d45ade87 100644 --- a/types/src/service_types/history_update_request.rs +++ b/types/src/service_types/history_update_request.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - request_header::RequestHeader, - extension_object::ExtensionObject, + basic_types::*, encoding::*, extension_object::ExtensionObject, node_ids::ObjectId, + request_header::RequestHeader, service_types::impls::MessageInfo, }; #[derive(Debug, Clone, PartialEq)] @@ -49,7 +45,8 @@ impl BinaryEncoder for HistoryUpdateRequest { #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { let request_header = RequestHeader::decode(stream, decoding_options)?; - let history_update_details: Option> = read_array(stream, decoding_options)?; + let history_update_details: Option> = + read_array(stream, decoding_options)?; Ok(HistoryUpdateRequest { request_header, history_update_details, diff --git a/types/src/service_types/history_update_response.rs b/types/src/service_types/history_update_response.rs index 17b35b3f8..cbadc5e62 100644 --- a/types/src/service_types/history_update_response.rs +++ b/types/src/service_types/history_update_response.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - response_header::ResponseHeader, - diagnostic_info::DiagnosticInfo, + basic_types::*, diagnostic_info::DiagnosticInfo, encoding::*, node_ids::ObjectId, + response_header::ResponseHeader, service_types::impls::MessageInfo, service_types::HistoryUpdateResult, }; diff --git a/types/src/service_types/history_update_result.rs b/types/src/service_types/history_update_result.rs index 2bb70aea2..40dff2a06 100644 --- a/types/src/service_types/history_update_result.rs +++ b/types/src/service_types/history_update_result.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - status_codes::StatusCode, - diagnostic_info::DiagnosticInfo, + basic_types::*, diagnostic_info::DiagnosticInfo, encoding::*, node_ids::ObjectId, + service_types::impls::MessageInfo, status_codes::StatusCode, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/identity_mapping_rule_type.rs b/types/src/service_types/identity_mapping_rule_type.rs index 27f72a6ea..76f247349 100644 --- a/types/src/service_types/identity_mapping_rule_type.rs +++ b/types/src/service_types/identity_mapping_rule_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - service_types::enums::IdentityCriteriaType, - string::UAString, + basic_types::*, encoding::*, node_ids::ObjectId, service_types::enums::IdentityCriteriaType, + service_types::impls::MessageInfo, string::UAString, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/issued_identity_token.rs b/types/src/service_types/issued_identity_token.rs index bb0f78e86..94baec1a9 100644 --- a/types/src/service_types/issued_identity_token.rs +++ b/types/src/service_types/issued_identity_token.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,12 +9,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - string::UAString, - byte_string::ByteString, -}; +use crate::{basic_types::*, byte_string::ByteString, encoding::*, string::UAString}; #[derive(Debug, Clone, PartialEq)] pub struct IssuedIdentityToken { diff --git a/types/src/service_types/json_data_set_reader_message_data_type.rs b/types/src/service_types/json_data_set_reader_message_data_type.rs index 5c0abc342..fbe131905 100644 --- a/types/src/service_types/json_data_set_reader_message_data_type.rs +++ b/types/src/service_types/json_data_set_reader_message_data_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,10 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, + basic_types::*, encoding::*, service_types::enums::JsonDataSetMessageContentMask, service_types::enums::JsonNetworkMessageContentMask, - service_types::enums::JsonDataSetMessageContentMask, }; #[derive(Debug, Clone, PartialEq)] @@ -40,8 +38,10 @@ impl BinaryEncoder for JsonDataSetReaderMessag #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { - let network_message_content_mask = JsonNetworkMessageContentMask::decode(stream, decoding_options)?; - let data_set_message_content_mask = JsonDataSetMessageContentMask::decode(stream, decoding_options)?; + let network_message_content_mask = + JsonNetworkMessageContentMask::decode(stream, decoding_options)?; + let data_set_message_content_mask = + JsonDataSetMessageContentMask::decode(stream, decoding_options)?; Ok(JsonDataSetReaderMessageDataType { network_message_content_mask, data_set_message_content_mask, diff --git a/types/src/service_types/json_data_set_writer_message_data_type.rs b/types/src/service_types/json_data_set_writer_message_data_type.rs index 11bc22631..5ca823011 100644 --- a/types/src/service_types/json_data_set_writer_message_data_type.rs +++ b/types/src/service_types/json_data_set_writer_message_data_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,11 +9,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - service_types::enums::JsonDataSetMessageContentMask, -}; +use crate::{basic_types::*, encoding::*, service_types::enums::JsonDataSetMessageContentMask}; #[derive(Debug, Clone, PartialEq)] pub struct JsonDataSetWriterMessageDataType { @@ -36,7 +32,8 @@ impl BinaryEncoder for JsonDataSetWriterMessag #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { - let data_set_message_content_mask = JsonDataSetMessageContentMask::decode(stream, decoding_options)?; + let data_set_message_content_mask = + JsonDataSetMessageContentMask::decode(stream, decoding_options)?; Ok(JsonDataSetWriterMessageDataType { data_set_message_content_mask, }) diff --git a/types/src/service_types/json_writer_group_message_data_type.rs b/types/src/service_types/json_writer_group_message_data_type.rs index c5db63033..7708c23f9 100644 --- a/types/src/service_types/json_writer_group_message_data_type.rs +++ b/types/src/service_types/json_writer_group_message_data_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,11 +9,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - service_types::enums::JsonNetworkMessageContentMask, -}; +use crate::{basic_types::*, encoding::*, service_types::enums::JsonNetworkMessageContentMask}; #[derive(Debug, Clone, PartialEq)] pub struct JsonWriterGroupMessageDataType { @@ -36,7 +32,8 @@ impl BinaryEncoder for JsonWriterGroupMessageDat #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { - let network_message_content_mask = JsonNetworkMessageContentMask::decode(stream, decoding_options)?; + let network_message_content_mask = + JsonNetworkMessageContentMask::decode(stream, decoding_options)?; Ok(JsonWriterGroupMessageDataType { network_message_content_mask, }) diff --git a/types/src/service_types/key_value_pair.rs b/types/src/service_types/key_value_pair.rs index 4c4b2c2b8..357957846 100644 --- a/types/src/service_types/key_value_pair.rs +++ b/types/src/service_types/key_value_pair.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - qualified_name::QualifiedName, - variant::Variant, + basic_types::*, encoding::*, node_ids::ObjectId, qualified_name::QualifiedName, + service_types::impls::MessageInfo, variant::Variant, }; #[derive(Debug, Clone, PartialEq)] @@ -50,9 +46,6 @@ impl BinaryEncoder for KeyValuePair { fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { let key = QualifiedName::decode(stream, decoding_options)?; let value = Variant::decode(stream, decoding_options)?; - Ok(KeyValuePair { - key, - value, - }) + Ok(KeyValuePair { key, value }) } } diff --git a/types/src/service_types/literal_operand.rs b/types/src/service_types/literal_operand.rs index c69c962c0..dac99af30 100644 --- a/types/src/service_types/literal_operand.rs +++ b/types/src/service_types/literal_operand.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,11 +9,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - variant::Variant, -}; +use crate::{basic_types::*, encoding::*, variant::Variant}; #[derive(Debug, Clone, PartialEq)] pub struct LiteralOperand { @@ -37,8 +33,6 @@ impl BinaryEncoder for LiteralOperand { #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { let value = Variant::decode(stream, decoding_options)?; - Ok(LiteralOperand { - value, - }) + Ok(LiteralOperand { value }) } } diff --git a/types/src/service_types/mdns_discovery_configuration.rs b/types/src/service_types/mdns_discovery_configuration.rs index 9963f5806..187d5aa2f 100644 --- a/types/src/service_types/mdns_discovery_configuration.rs +++ b/types/src/service_types/mdns_discovery_configuration.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,11 +9,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - string::UAString, -}; +use crate::{basic_types::*, encoding::*, string::UAString}; #[derive(Debug, Clone, PartialEq)] pub struct MdnsDiscoveryConfiguration { diff --git a/types/src/service_types/method_attributes.rs b/types/src/service_types/method_attributes.rs index c852adb58..51722e5f3 100644 --- a/types/src/service_types/method_attributes.rs +++ b/types/src/service_types/method_attributes.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,11 +9,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - localized_text::LocalizedText, -}; +use crate::{basic_types::*, encoding::*, localized_text::LocalizedText}; #[derive(Debug, Clone, PartialEq)] pub struct MethodAttributes { diff --git a/types/src/service_types/mod.rs b/types/src/service_types/mod.rs index 192504954..2ac48137e 100644 --- a/types/src/service_types/mod.rs +++ b/types/src/service_types/mod.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -16,566 +16,566 @@ pub use self::impls::*; // All of the remaining are generated by script -mod key_value_pair; -mod additional_parameters_type; -mod ephemeral_key_type; -mod endpoint_type; -mod rational_number; -mod vector; -mod three_d_vector; -mod cartesian_coordinates; -mod three_d_cartesian_coordinates; -mod orientation; -mod three_d_orientation; -mod frame; -mod three_d_frame; -mod identity_mapping_rule_type; -mod currency_unit_type; -mod trust_list_data_type; -mod decimal_data_type; -mod data_type_schema_header; -mod data_type_description; -mod structure_description; -mod enum_description; -mod simple_type_description; -mod ua_binary_file_data_type; -mod data_set_meta_data_type; -mod field_meta_data; -mod configuration_version_data_type; -mod published_data_set_data_type; -mod published_data_set_source_data_type; -mod published_variable_data_type; -mod published_data_items_data_type; -mod published_events_data_type; -mod data_set_writer_data_type; -mod data_set_writer_transport_data_type; -mod data_set_writer_message_data_type; -mod pub_sub_group_data_type; -mod writer_group_data_type; -mod writer_group_transport_data_type; -mod writer_group_message_data_type; -mod pub_sub_connection_data_type; -mod connection_transport_data_type; -mod network_address_data_type; -mod network_address_url_data_type; -mod reader_group_data_type; -mod reader_group_transport_data_type; -mod reader_group_message_data_type; -mod data_set_reader_data_type; -mod data_set_reader_transport_data_type; -mod data_set_reader_message_data_type; -mod subscribed_data_set_data_type; -mod target_variables_data_type; -mod field_target_data_type; -mod subscribed_data_set_mirror_data_type; -mod pub_sub_configuration_data_type; -mod uadp_writer_group_message_data_type; -mod uadp_data_set_writer_message_data_type; -mod uadp_data_set_reader_message_data_type; -mod json_writer_group_message_data_type; -mod json_data_set_writer_message_data_type; -mod json_data_set_reader_message_data_type; -mod datagram_connection_transport_data_type; -mod datagram_writer_group_transport_data_type; -mod broker_connection_transport_data_type; -mod broker_writer_group_transport_data_type; -mod broker_data_set_writer_transport_data_type; -mod broker_data_set_reader_transport_data_type; -mod alias_name_data_type; -mod role_permission_type; -mod structure_field; -mod structure_definition; -mod enum_definition; -mod argument; -mod enum_value_type; -mod enum_field; -mod option_set; -mod time_zone_data_type; -mod application_description; -mod service_fault; -mod sessionless_invoke_request_type; -mod sessionless_invoke_response_type; -mod find_servers_request; -mod find_servers_response; -mod server_on_network; -mod find_servers_on_network_request; -mod find_servers_on_network_response; -mod user_token_policy; -mod endpoint_description; -mod get_endpoints_request; -mod get_endpoints_response; -mod registered_server; -mod register_server_request; -mod register_server_response; -mod discovery_configuration; -mod mdns_discovery_configuration; -mod register_server_2_request; -mod register_server_2_response; -mod channel_security_token; -mod open_secure_channel_request; -mod open_secure_channel_response; -mod close_secure_channel_request; -mod close_secure_channel_response; -mod signed_software_certificate; -mod signature_data; -mod create_session_request; -mod create_session_response; -mod user_identity_token; -mod anonymous_identity_token; -mod user_name_identity_token; -mod x_509_identity_token; -mod issued_identity_token; mod activate_session_request; mod activate_session_response; -mod close_session_request; -mod close_session_response; -mod cancel_request; -mod cancel_response; -mod node_attributes; -mod object_attributes; -mod variable_attributes; -mod method_attributes; -mod object_type_attributes; -mod variable_type_attributes; -mod reference_type_attributes; -mod data_type_attributes; -mod view_attributes; -mod generic_attribute_value; -mod generic_attributes; mod add_nodes_item; -mod add_nodes_result; mod add_nodes_request; mod add_nodes_response; +mod add_nodes_result; mod add_references_item; mod add_references_request; mod add_references_response; -mod delete_nodes_item; -mod delete_nodes_request; -mod delete_nodes_response; -mod delete_references_item; -mod delete_references_request; -mod delete_references_response; -mod view_description; +mod additional_parameters_type; +mod aggregate_configuration; +mod aggregate_filter; +mod aggregate_filter_result; +mod alias_name_data_type; +mod annotation; +mod anonymous_identity_token; +mod application_description; +mod argument; +mod attribute_operand; +mod axis_information; +mod broker_connection_transport_data_type; +mod broker_data_set_reader_transport_data_type; +mod broker_data_set_writer_transport_data_type; +mod broker_writer_group_transport_data_type; mod browse_description; -mod reference_description; -mod browse_result; -mod browse_request; -mod browse_response; mod browse_next_request; mod browse_next_response; -mod relative_path_element; -mod relative_path; mod browse_path; -mod browse_path_target; mod browse_path_result; -mod translate_browse_paths_to_node_ids_request; -mod translate_browse_paths_to_node_ids_response; -mod register_nodes_request; -mod register_nodes_response; -mod unregister_nodes_request; -mod unregister_nodes_response; -mod endpoint_configuration; -mod query_data_description; -mod node_type_description; -mod query_data_set; -mod node_reference; -mod content_filter_element; -mod content_filter; -mod filter_operand; -mod element_operand; -mod literal_operand; -mod attribute_operand; -mod simple_attribute_operand; -mod content_filter_element_result; -mod content_filter_result; -mod parsing_result; -mod query_first_request; -mod query_first_response; -mod query_next_request; -mod query_next_response; -mod read_value_id; -mod read_request; -mod read_response; -mod history_read_value_id; -mod history_read_result; -mod history_read_details; -mod read_event_details; -mod read_raw_modified_details; -mod read_processed_details; -mod read_at_time_details; -mod read_annotation_data_details; -mod history_data; -mod modification_info; -mod history_modified_data; -mod history_event; -mod history_read_request; -mod history_read_response; -mod write_value; -mod write_request; -mod write_response; -mod history_update_details; -mod update_data_details; -mod update_structure_data_details; -mod update_event_details; -mod delete_raw_modified_details; -mod delete_at_time_details; -mod delete_event_details; -mod history_update_result; -mod history_update_request; -mod history_update_response; +mod browse_path_target; +mod browse_request; +mod browse_response; +mod browse_result; +mod build_info; mod call_method_request; mod call_method_result; mod call_request; mod call_response; -mod monitoring_filter; -mod data_change_filter; -mod event_filter; -mod aggregate_configuration; -mod aggregate_filter; -mod monitoring_filter_result; -mod event_filter_result; -mod aggregate_filter_result; -mod monitoring_parameters; -mod monitored_item_create_request; -mod monitored_item_create_result; +mod cancel_request; +mod cancel_response; +mod cartesian_coordinates; +mod channel_security_token; +mod close_secure_channel_request; +mod close_secure_channel_response; +mod close_session_request; +mod close_session_response; +mod complex_number_type; +mod configuration_version_data_type; +mod connection_transport_data_type; +mod content_filter; +mod content_filter_element; +mod content_filter_element_result; +mod content_filter_result; mod create_monitored_items_request; mod create_monitored_items_response; -mod monitored_item_modify_request; -mod monitored_item_modify_result; -mod modify_monitored_items_request; -mod modify_monitored_items_response; -mod set_monitoring_mode_request; -mod set_monitoring_mode_response; -mod set_triggering_request; -mod set_triggering_response; -mod delete_monitored_items_request; -mod delete_monitored_items_response; +mod create_session_request; +mod create_session_response; mod create_subscription_request; mod create_subscription_response; -mod modify_subscription_request; -mod modify_subscription_response; -mod set_publishing_mode_request; -mod set_publishing_mode_response; -mod notification_message; -mod notification_data; +mod currency_unit_type; +mod data_change_filter; mod data_change_notification; -mod monitored_item_notification; -mod event_notification_list; +mod data_set_meta_data_type; +mod data_set_reader_data_type; +mod data_set_reader_message_data_type; +mod data_set_reader_transport_data_type; +mod data_set_writer_data_type; +mod data_set_writer_message_data_type; +mod data_set_writer_transport_data_type; +mod data_type_attributes; +mod data_type_description; +mod data_type_schema_header; +mod datagram_connection_transport_data_type; +mod datagram_writer_group_transport_data_type; +mod decimal_data_type; +mod delete_at_time_details; +mod delete_event_details; +mod delete_monitored_items_request; +mod delete_monitored_items_response; +mod delete_nodes_item; +mod delete_nodes_request; +mod delete_nodes_response; +mod delete_raw_modified_details; +mod delete_references_item; +mod delete_references_request; +mod delete_references_response; +mod delete_subscriptions_request; +mod delete_subscriptions_response; +mod discovery_configuration; +mod double_complex_number_type; +mod element_operand; +mod endpoint_configuration; +mod endpoint_description; +mod endpoint_type; +mod endpoint_url_list_data_type; +mod enum_definition; +mod enum_description; +mod enum_field; +mod enum_value_type; +mod ephemeral_key_type; +mod eu_information; mod event_field_list; +mod event_filter; +mod event_filter_result; +mod event_notification_list; +mod field_meta_data; +mod field_target_data_type; +mod filter_operand; +mod find_servers_on_network_request; +mod find_servers_on_network_response; +mod find_servers_request; +mod find_servers_response; +mod frame; +mod generic_attribute_value; +mod generic_attributes; +mod get_endpoints_request; +mod get_endpoints_response; +mod history_data; +mod history_event; mod history_event_field_list; -mod status_change_notification; -mod subscription_acknowledgement; +mod history_modified_data; +mod history_read_details; +mod history_read_request; +mod history_read_response; +mod history_read_result; +mod history_read_value_id; +mod history_update_details; +mod history_update_request; +mod history_update_response; +mod history_update_result; +mod identity_mapping_rule_type; +mod issued_identity_token; +mod json_data_set_reader_message_data_type; +mod json_data_set_writer_message_data_type; +mod json_writer_group_message_data_type; +mod key_value_pair; +mod literal_operand; +mod mdns_discovery_configuration; +mod method_attributes; +mod model_change_structure_data_type; +mod modification_info; +mod modify_monitored_items_request; +mod modify_monitored_items_response; +mod modify_subscription_request; +mod modify_subscription_response; +mod monitored_item_create_request; +mod monitored_item_create_result; +mod monitored_item_modify_request; +mod monitored_item_modify_result; +mod monitored_item_notification; +mod monitoring_filter; +mod monitoring_filter_result; +mod monitoring_parameters; +mod network_address_data_type; +mod network_address_url_data_type; +mod network_group_data_type; +mod node_attributes; +mod node_reference; +mod node_type_description; +mod notification_data; +mod notification_message; +mod object_attributes; +mod object_type_attributes; +mod open_secure_channel_request; +mod open_secure_channel_response; +mod option_set; +mod orientation; +mod parsing_result; +mod program_diagnostic_2_data_type; +mod program_diagnostic_data_type; +mod pub_sub_configuration_data_type; +mod pub_sub_connection_data_type; +mod pub_sub_group_data_type; mod publish_request; mod publish_response; +mod published_data_items_data_type; +mod published_data_set_data_type; +mod published_data_set_source_data_type; +mod published_events_data_type; +mod published_variable_data_type; +mod query_data_description; +mod query_data_set; +mod query_first_request; +mod query_first_response; +mod query_next_request; +mod query_next_response; +mod range; +mod rational_number; +mod read_annotation_data_details; +mod read_at_time_details; +mod read_event_details; +mod read_processed_details; +mod read_raw_modified_details; +mod read_request; +mod read_response; +mod read_value_id; +mod reader_group_data_type; +mod reader_group_message_data_type; +mod reader_group_transport_data_type; +mod redundant_server_data_type; +mod reference_description; +mod reference_type_attributes; +mod register_nodes_request; +mod register_nodes_response; +mod register_server_2_request; +mod register_server_2_response; +mod register_server_request; +mod register_server_response; +mod registered_server; +mod relative_path; +mod relative_path_element; mod republish_request; mod republish_response; -mod transfer_result; -mod transfer_subscriptions_request; -mod transfer_subscriptions_response; -mod delete_subscriptions_request; -mod delete_subscriptions_response; -mod build_info; -mod redundant_server_data_type; -mod endpoint_url_list_data_type; -mod network_group_data_type; +mod role_permission_type; mod sampling_interval_diagnostics_data_type; +mod semantic_change_structure_data_type; mod server_diagnostics_summary_data_type; +mod server_on_network; mod server_status_data_type; +mod service_counter_data_type; +mod service_fault; mod session_diagnostics_data_type; mod session_security_diagnostics_data_type; -mod service_counter_data_type; +mod sessionless_invoke_request_type; +mod sessionless_invoke_response_type; +mod set_monitoring_mode_request; +mod set_monitoring_mode_response; +mod set_publishing_mode_request; +mod set_publishing_mode_response; +mod set_triggering_request; +mod set_triggering_response; +mod signature_data; +mod signed_software_certificate; +mod simple_attribute_operand; +mod simple_type_description; +mod status_change_notification; mod status_result; +mod structure_definition; +mod structure_description; +mod structure_field; +mod subscribed_data_set_data_type; +mod subscribed_data_set_mirror_data_type; +mod subscription_acknowledgement; mod subscription_diagnostics_data_type; -mod model_change_structure_data_type; -mod semantic_change_structure_data_type; -mod range; -mod eu_information; -mod complex_number_type; -mod double_complex_number_type; -mod axis_information; +mod target_variables_data_type; +mod three_d_cartesian_coordinates; +mod three_d_frame; +mod three_d_orientation; +mod three_d_vector; +mod time_zone_data_type; +mod transfer_result; +mod transfer_subscriptions_request; +mod transfer_subscriptions_response; +mod translate_browse_paths_to_node_ids_request; +mod translate_browse_paths_to_node_ids_response; +mod trust_list_data_type; +mod ua_binary_file_data_type; +mod uadp_data_set_reader_message_data_type; +mod uadp_data_set_writer_message_data_type; +mod uadp_writer_group_message_data_type; +mod unregister_nodes_request; +mod unregister_nodes_response; +mod update_data_details; +mod update_event_details; +mod update_structure_data_details; +mod user_identity_token; +mod user_name_identity_token; +mod user_token_policy; +mod variable_attributes; +mod variable_type_attributes; +mod vector; +mod view_attributes; +mod view_description; +mod write_request; +mod write_response; +mod write_value; +mod writer_group_data_type; +mod writer_group_message_data_type; +mod writer_group_transport_data_type; +mod x_509_identity_token; mod xv_type; -mod program_diagnostic_data_type; -mod program_diagnostic_2_data_type; -mod annotation; -pub use self::key_value_pair::*; +pub use self::activate_session_request::*; +pub use self::activate_session_response::*; +pub use self::add_nodes_item::*; +pub use self::add_nodes_request::*; +pub use self::add_nodes_response::*; +pub use self::add_nodes_result::*; +pub use self::add_references_item::*; +pub use self::add_references_request::*; +pub use self::add_references_response::*; pub use self::additional_parameters_type::*; -pub use self::ephemeral_key_type::*; -pub use self::endpoint_type::*; -pub use self::rational_number::*; -pub use self::vector::*; -pub use self::three_d_vector::*; -pub use self::cartesian_coordinates::*; -pub use self::three_d_cartesian_coordinates::*; -pub use self::orientation::*; -pub use self::three_d_orientation::*; -pub use self::frame::*; -pub use self::three_d_frame::*; -pub use self::identity_mapping_rule_type::*; -pub use self::currency_unit_type::*; -pub use self::trust_list_data_type::*; -pub use self::decimal_data_type::*; -pub use self::data_type_schema_header::*; -pub use self::data_type_description::*; -pub use self::structure_description::*; -pub use self::enum_description::*; -pub use self::simple_type_description::*; -pub use self::ua_binary_file_data_type::*; -pub use self::data_set_meta_data_type::*; -pub use self::field_meta_data::*; -pub use self::configuration_version_data_type::*; -pub use self::published_data_set_data_type::*; -pub use self::published_data_set_source_data_type::*; -pub use self::published_variable_data_type::*; -pub use self::published_data_items_data_type::*; -pub use self::published_events_data_type::*; -pub use self::data_set_writer_data_type::*; -pub use self::data_set_writer_transport_data_type::*; -pub use self::data_set_writer_message_data_type::*; -pub use self::pub_sub_group_data_type::*; -pub use self::writer_group_data_type::*; -pub use self::writer_group_transport_data_type::*; -pub use self::writer_group_message_data_type::*; -pub use self::pub_sub_connection_data_type::*; -pub use self::connection_transport_data_type::*; -pub use self::network_address_data_type::*; -pub use self::network_address_url_data_type::*; -pub use self::reader_group_data_type::*; -pub use self::reader_group_transport_data_type::*; -pub use self::reader_group_message_data_type::*; -pub use self::data_set_reader_data_type::*; -pub use self::data_set_reader_transport_data_type::*; -pub use self::data_set_reader_message_data_type::*; -pub use self::subscribed_data_set_data_type::*; -pub use self::target_variables_data_type::*; -pub use self::field_target_data_type::*; -pub use self::subscribed_data_set_mirror_data_type::*; -pub use self::pub_sub_configuration_data_type::*; -pub use self::uadp_writer_group_message_data_type::*; -pub use self::uadp_data_set_writer_message_data_type::*; -pub use self::uadp_data_set_reader_message_data_type::*; -pub use self::json_writer_group_message_data_type::*; -pub use self::json_data_set_writer_message_data_type::*; -pub use self::json_data_set_reader_message_data_type::*; -pub use self::datagram_connection_transport_data_type::*; -pub use self::datagram_writer_group_transport_data_type::*; -pub use self::broker_connection_transport_data_type::*; -pub use self::broker_writer_group_transport_data_type::*; -pub use self::broker_data_set_writer_transport_data_type::*; -pub use self::broker_data_set_reader_transport_data_type::*; +pub use self::aggregate_configuration::*; +pub use self::aggregate_filter::*; +pub use self::aggregate_filter_result::*; pub use self::alias_name_data_type::*; -pub use self::role_permission_type::*; -pub use self::structure_field::*; -pub use self::structure_definition::*; -pub use self::enum_definition::*; -pub use self::argument::*; -pub use self::enum_value_type::*; -pub use self::enum_field::*; -pub use self::option_set::*; -pub use self::time_zone_data_type::*; +pub use self::annotation::*; +pub use self::anonymous_identity_token::*; pub use self::application_description::*; -pub use self::service_fault::*; -pub use self::sessionless_invoke_request_type::*; -pub use self::sessionless_invoke_response_type::*; -pub use self::find_servers_request::*; -pub use self::find_servers_response::*; -pub use self::server_on_network::*; -pub use self::find_servers_on_network_request::*; -pub use self::find_servers_on_network_response::*; -pub use self::user_token_policy::*; -pub use self::endpoint_description::*; -pub use self::get_endpoints_request::*; -pub use self::get_endpoints_response::*; -pub use self::registered_server::*; -pub use self::register_server_request::*; -pub use self::register_server_response::*; -pub use self::discovery_configuration::*; -pub use self::mdns_discovery_configuration::*; -pub use self::register_server_2_request::*; -pub use self::register_server_2_response::*; +pub use self::argument::*; +pub use self::attribute_operand::*; +pub use self::axis_information::*; +pub use self::broker_connection_transport_data_type::*; +pub use self::broker_data_set_reader_transport_data_type::*; +pub use self::broker_data_set_writer_transport_data_type::*; +pub use self::broker_writer_group_transport_data_type::*; +pub use self::browse_description::*; +pub use self::browse_next_request::*; +pub use self::browse_next_response::*; +pub use self::browse_path::*; +pub use self::browse_path_result::*; +pub use self::browse_path_target::*; +pub use self::browse_request::*; +pub use self::browse_response::*; +pub use self::browse_result::*; +pub use self::build_info::*; +pub use self::call_method_request::*; +pub use self::call_method_result::*; +pub use self::call_request::*; +pub use self::call_response::*; +pub use self::cancel_request::*; +pub use self::cancel_response::*; +pub use self::cartesian_coordinates::*; pub use self::channel_security_token::*; -pub use self::open_secure_channel_request::*; -pub use self::open_secure_channel_response::*; pub use self::close_secure_channel_request::*; pub use self::close_secure_channel_response::*; -pub use self::signed_software_certificate::*; -pub use self::signature_data::*; -pub use self::create_session_request::*; -pub use self::create_session_response::*; -pub use self::user_identity_token::*; -pub use self::anonymous_identity_token::*; -pub use self::user_name_identity_token::*; -pub use self::x_509_identity_token::*; -pub use self::issued_identity_token::*; -pub use self::activate_session_request::*; -pub use self::activate_session_response::*; pub use self::close_session_request::*; pub use self::close_session_response::*; -pub use self::cancel_request::*; -pub use self::cancel_response::*; -pub use self::node_attributes::*; -pub use self::object_attributes::*; -pub use self::variable_attributes::*; -pub use self::method_attributes::*; -pub use self::object_type_attributes::*; -pub use self::variable_type_attributes::*; -pub use self::reference_type_attributes::*; +pub use self::complex_number_type::*; +pub use self::configuration_version_data_type::*; +pub use self::connection_transport_data_type::*; +pub use self::content_filter::*; +pub use self::content_filter_element::*; +pub use self::content_filter_element_result::*; +pub use self::content_filter_result::*; +pub use self::create_monitored_items_request::*; +pub use self::create_monitored_items_response::*; +pub use self::create_session_request::*; +pub use self::create_session_response::*; +pub use self::create_subscription_request::*; +pub use self::create_subscription_response::*; +pub use self::currency_unit_type::*; +pub use self::data_change_filter::*; +pub use self::data_change_notification::*; +pub use self::data_set_meta_data_type::*; +pub use self::data_set_reader_data_type::*; +pub use self::data_set_reader_message_data_type::*; +pub use self::data_set_reader_transport_data_type::*; +pub use self::data_set_writer_data_type::*; +pub use self::data_set_writer_message_data_type::*; +pub use self::data_set_writer_transport_data_type::*; pub use self::data_type_attributes::*; -pub use self::view_attributes::*; -pub use self::generic_attribute_value::*; -pub use self::generic_attributes::*; -pub use self::add_nodes_item::*; -pub use self::add_nodes_result::*; -pub use self::add_nodes_request::*; -pub use self::add_nodes_response::*; -pub use self::add_references_item::*; -pub use self::add_references_request::*; -pub use self::add_references_response::*; +pub use self::data_type_description::*; +pub use self::data_type_schema_header::*; +pub use self::datagram_connection_transport_data_type::*; +pub use self::datagram_writer_group_transport_data_type::*; +pub use self::decimal_data_type::*; +pub use self::delete_at_time_details::*; +pub use self::delete_event_details::*; +pub use self::delete_monitored_items_request::*; +pub use self::delete_monitored_items_response::*; pub use self::delete_nodes_item::*; pub use self::delete_nodes_request::*; pub use self::delete_nodes_response::*; +pub use self::delete_raw_modified_details::*; pub use self::delete_references_item::*; pub use self::delete_references_request::*; pub use self::delete_references_response::*; -pub use self::view_description::*; -pub use self::browse_description::*; -pub use self::reference_description::*; -pub use self::browse_result::*; -pub use self::browse_request::*; -pub use self::browse_response::*; -pub use self::browse_next_request::*; -pub use self::browse_next_response::*; -pub use self::relative_path_element::*; -pub use self::relative_path::*; -pub use self::browse_path::*; -pub use self::browse_path_target::*; -pub use self::browse_path_result::*; -pub use self::translate_browse_paths_to_node_ids_request::*; -pub use self::translate_browse_paths_to_node_ids_response::*; -pub use self::register_nodes_request::*; -pub use self::register_nodes_response::*; -pub use self::unregister_nodes_request::*; -pub use self::unregister_nodes_response::*; -pub use self::endpoint_configuration::*; -pub use self::query_data_description::*; -pub use self::node_type_description::*; -pub use self::query_data_set::*; -pub use self::node_reference::*; -pub use self::content_filter_element::*; -pub use self::content_filter::*; -pub use self::filter_operand::*; +pub use self::delete_subscriptions_request::*; +pub use self::delete_subscriptions_response::*; +pub use self::discovery_configuration::*; +pub use self::double_complex_number_type::*; pub use self::element_operand::*; -pub use self::literal_operand::*; -pub use self::attribute_operand::*; -pub use self::simple_attribute_operand::*; -pub use self::content_filter_element_result::*; -pub use self::content_filter_result::*; -pub use self::parsing_result::*; -pub use self::query_first_request::*; -pub use self::query_first_response::*; -pub use self::query_next_request::*; -pub use self::query_next_response::*; -pub use self::read_value_id::*; -pub use self::read_request::*; -pub use self::read_response::*; -pub use self::history_read_value_id::*; -pub use self::history_read_result::*; -pub use self::history_read_details::*; -pub use self::read_event_details::*; -pub use self::read_raw_modified_details::*; -pub use self::read_processed_details::*; -pub use self::read_at_time_details::*; -pub use self::read_annotation_data_details::*; +pub use self::endpoint_configuration::*; +pub use self::endpoint_description::*; +pub use self::endpoint_type::*; +pub use self::endpoint_url_list_data_type::*; +pub use self::enum_definition::*; +pub use self::enum_description::*; +pub use self::enum_field::*; +pub use self::enum_value_type::*; +pub use self::ephemeral_key_type::*; +pub use self::eu_information::*; +pub use self::event_field_list::*; +pub use self::event_filter::*; +pub use self::event_filter_result::*; +pub use self::event_notification_list::*; +pub use self::field_meta_data::*; +pub use self::field_target_data_type::*; +pub use self::filter_operand::*; +pub use self::find_servers_on_network_request::*; +pub use self::find_servers_on_network_response::*; +pub use self::find_servers_request::*; +pub use self::find_servers_response::*; +pub use self::frame::*; +pub use self::generic_attribute_value::*; +pub use self::generic_attributes::*; +pub use self::get_endpoints_request::*; +pub use self::get_endpoints_response::*; pub use self::history_data::*; -pub use self::modification_info::*; -pub use self::history_modified_data::*; pub use self::history_event::*; +pub use self::history_event_field_list::*; +pub use self::history_modified_data::*; +pub use self::history_read_details::*; pub use self::history_read_request::*; pub use self::history_read_response::*; -pub use self::write_value::*; -pub use self::write_request::*; -pub use self::write_response::*; +pub use self::history_read_result::*; +pub use self::history_read_value_id::*; pub use self::history_update_details::*; -pub use self::update_data_details::*; -pub use self::update_structure_data_details::*; -pub use self::update_event_details::*; -pub use self::delete_raw_modified_details::*; -pub use self::delete_at_time_details::*; -pub use self::delete_event_details::*; -pub use self::history_update_result::*; pub use self::history_update_request::*; pub use self::history_update_response::*; -pub use self::call_method_request::*; -pub use self::call_method_result::*; -pub use self::call_request::*; -pub use self::call_response::*; -pub use self::monitoring_filter::*; -pub use self::data_change_filter::*; -pub use self::event_filter::*; -pub use self::aggregate_configuration::*; -pub use self::aggregate_filter::*; -pub use self::monitoring_filter_result::*; -pub use self::event_filter_result::*; -pub use self::aggregate_filter_result::*; -pub use self::monitoring_parameters::*; -pub use self::monitored_item_create_request::*; -pub use self::monitored_item_create_result::*; -pub use self::create_monitored_items_request::*; -pub use self::create_monitored_items_response::*; -pub use self::monitored_item_modify_request::*; -pub use self::monitored_item_modify_result::*; +pub use self::history_update_result::*; +pub use self::identity_mapping_rule_type::*; +pub use self::issued_identity_token::*; +pub use self::json_data_set_reader_message_data_type::*; +pub use self::json_data_set_writer_message_data_type::*; +pub use self::json_writer_group_message_data_type::*; +pub use self::key_value_pair::*; +pub use self::literal_operand::*; +pub use self::mdns_discovery_configuration::*; +pub use self::method_attributes::*; +pub use self::model_change_structure_data_type::*; +pub use self::modification_info::*; pub use self::modify_monitored_items_request::*; pub use self::modify_monitored_items_response::*; -pub use self::set_monitoring_mode_request::*; -pub use self::set_monitoring_mode_response::*; -pub use self::set_triggering_request::*; -pub use self::set_triggering_response::*; -pub use self::delete_monitored_items_request::*; -pub use self::delete_monitored_items_response::*; -pub use self::create_subscription_request::*; -pub use self::create_subscription_response::*; pub use self::modify_subscription_request::*; pub use self::modify_subscription_response::*; -pub use self::set_publishing_mode_request::*; -pub use self::set_publishing_mode_response::*; -pub use self::notification_message::*; -pub use self::notification_data::*; -pub use self::data_change_notification::*; +pub use self::monitored_item_create_request::*; +pub use self::monitored_item_create_result::*; +pub use self::monitored_item_modify_request::*; +pub use self::monitored_item_modify_result::*; pub use self::monitored_item_notification::*; -pub use self::event_notification_list::*; -pub use self::event_field_list::*; -pub use self::history_event_field_list::*; -pub use self::status_change_notification::*; -pub use self::subscription_acknowledgement::*; +pub use self::monitoring_filter::*; +pub use self::monitoring_filter_result::*; +pub use self::monitoring_parameters::*; +pub use self::network_address_data_type::*; +pub use self::network_address_url_data_type::*; +pub use self::network_group_data_type::*; +pub use self::node_attributes::*; +pub use self::node_reference::*; +pub use self::node_type_description::*; +pub use self::notification_data::*; +pub use self::notification_message::*; +pub use self::object_attributes::*; +pub use self::object_type_attributes::*; +pub use self::open_secure_channel_request::*; +pub use self::open_secure_channel_response::*; +pub use self::option_set::*; +pub use self::orientation::*; +pub use self::parsing_result::*; +pub use self::program_diagnostic_2_data_type::*; +pub use self::program_diagnostic_data_type::*; +pub use self::pub_sub_configuration_data_type::*; +pub use self::pub_sub_connection_data_type::*; +pub use self::pub_sub_group_data_type::*; pub use self::publish_request::*; pub use self::publish_response::*; +pub use self::published_data_items_data_type::*; +pub use self::published_data_set_data_type::*; +pub use self::published_data_set_source_data_type::*; +pub use self::published_events_data_type::*; +pub use self::published_variable_data_type::*; +pub use self::query_data_description::*; +pub use self::query_data_set::*; +pub use self::query_first_request::*; +pub use self::query_first_response::*; +pub use self::query_next_request::*; +pub use self::query_next_response::*; +pub use self::range::*; +pub use self::rational_number::*; +pub use self::read_annotation_data_details::*; +pub use self::read_at_time_details::*; +pub use self::read_event_details::*; +pub use self::read_processed_details::*; +pub use self::read_raw_modified_details::*; +pub use self::read_request::*; +pub use self::read_response::*; +pub use self::read_value_id::*; +pub use self::reader_group_data_type::*; +pub use self::reader_group_message_data_type::*; +pub use self::reader_group_transport_data_type::*; +pub use self::redundant_server_data_type::*; +pub use self::reference_description::*; +pub use self::reference_type_attributes::*; +pub use self::register_nodes_request::*; +pub use self::register_nodes_response::*; +pub use self::register_server_2_request::*; +pub use self::register_server_2_response::*; +pub use self::register_server_request::*; +pub use self::register_server_response::*; +pub use self::registered_server::*; +pub use self::relative_path::*; +pub use self::relative_path_element::*; pub use self::republish_request::*; pub use self::republish_response::*; -pub use self::transfer_result::*; -pub use self::transfer_subscriptions_request::*; -pub use self::transfer_subscriptions_response::*; -pub use self::delete_subscriptions_request::*; -pub use self::delete_subscriptions_response::*; -pub use self::build_info::*; -pub use self::redundant_server_data_type::*; -pub use self::endpoint_url_list_data_type::*; -pub use self::network_group_data_type::*; +pub use self::role_permission_type::*; pub use self::sampling_interval_diagnostics_data_type::*; +pub use self::semantic_change_structure_data_type::*; pub use self::server_diagnostics_summary_data_type::*; +pub use self::server_on_network::*; pub use self::server_status_data_type::*; +pub use self::service_counter_data_type::*; +pub use self::service_fault::*; pub use self::session_diagnostics_data_type::*; pub use self::session_security_diagnostics_data_type::*; -pub use self::service_counter_data_type::*; +pub use self::sessionless_invoke_request_type::*; +pub use self::sessionless_invoke_response_type::*; +pub use self::set_monitoring_mode_request::*; +pub use self::set_monitoring_mode_response::*; +pub use self::set_publishing_mode_request::*; +pub use self::set_publishing_mode_response::*; +pub use self::set_triggering_request::*; +pub use self::set_triggering_response::*; +pub use self::signature_data::*; +pub use self::signed_software_certificate::*; +pub use self::simple_attribute_operand::*; +pub use self::simple_type_description::*; +pub use self::status_change_notification::*; pub use self::status_result::*; +pub use self::structure_definition::*; +pub use self::structure_description::*; +pub use self::structure_field::*; +pub use self::subscribed_data_set_data_type::*; +pub use self::subscribed_data_set_mirror_data_type::*; +pub use self::subscription_acknowledgement::*; pub use self::subscription_diagnostics_data_type::*; -pub use self::model_change_structure_data_type::*; -pub use self::semantic_change_structure_data_type::*; -pub use self::range::*; -pub use self::eu_information::*; -pub use self::complex_number_type::*; -pub use self::double_complex_number_type::*; -pub use self::axis_information::*; +pub use self::target_variables_data_type::*; +pub use self::three_d_cartesian_coordinates::*; +pub use self::three_d_frame::*; +pub use self::three_d_orientation::*; +pub use self::three_d_vector::*; +pub use self::time_zone_data_type::*; +pub use self::transfer_result::*; +pub use self::transfer_subscriptions_request::*; +pub use self::transfer_subscriptions_response::*; +pub use self::translate_browse_paths_to_node_ids_request::*; +pub use self::translate_browse_paths_to_node_ids_response::*; +pub use self::trust_list_data_type::*; +pub use self::ua_binary_file_data_type::*; +pub use self::uadp_data_set_reader_message_data_type::*; +pub use self::uadp_data_set_writer_message_data_type::*; +pub use self::uadp_writer_group_message_data_type::*; +pub use self::unregister_nodes_request::*; +pub use self::unregister_nodes_response::*; +pub use self::update_data_details::*; +pub use self::update_event_details::*; +pub use self::update_structure_data_details::*; +pub use self::user_identity_token::*; +pub use self::user_name_identity_token::*; +pub use self::user_token_policy::*; +pub use self::variable_attributes::*; +pub use self::variable_type_attributes::*; +pub use self::vector::*; +pub use self::view_attributes::*; +pub use self::view_description::*; +pub use self::write_request::*; +pub use self::write_response::*; +pub use self::write_value::*; +pub use self::writer_group_data_type::*; +pub use self::writer_group_message_data_type::*; +pub use self::writer_group_transport_data_type::*; +pub use self::x_509_identity_token::*; pub use self::xv_type::*; -pub use self::program_diagnostic_data_type::*; -pub use self::program_diagnostic_2_data_type::*; -pub use self::annotation::*; diff --git a/types/src/service_types/model_change_structure_data_type.rs b/types/src/service_types/model_change_structure_data_type.rs index c3c760a43..13bd592aa 100644 --- a/types/src/service_types/model_change_structure_data_type.rs +++ b/types/src/service_types/model_change_structure_data_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,11 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, + basic_types::*, encoding::*, node_id::NodeId, node_ids::ObjectId, service_types::impls::MessageInfo, - node_ids::ObjectId, - node_id::NodeId, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/modification_info.rs b/types/src/service_types/modification_info.rs index 45a542258..c7fa8b452 100644 --- a/types/src/service_types/modification_info.rs +++ b/types/src/service_types/modification_info.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,13 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - date_time::DateTime, - service_types::enums::HistoryUpdateType, - string::UAString, + basic_types::*, date_time::DateTime, encoding::*, node_ids::ObjectId, + service_types::enums::HistoryUpdateType, service_types::impls::MessageInfo, string::UAString, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/modify_monitored_items_request.rs b/types/src/service_types/modify_monitored_items_request.rs index 17228a9e1..dd89b98b9 100644 --- a/types/src/service_types/modify_monitored_items_request.rs +++ b/types/src/service_types/modify_monitored_items_request.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - request_header::RequestHeader, - service_types::enums::TimestampsToReturn, + basic_types::*, encoding::*, node_ids::ObjectId, request_header::RequestHeader, + service_types::enums::TimestampsToReturn, service_types::impls::MessageInfo, service_types::MonitoredItemModifyRequest, }; @@ -58,7 +54,8 @@ impl BinaryEncoder for ModifyMonitoredItemsRequest let request_header = RequestHeader::decode(stream, decoding_options)?; let subscription_id = u32::decode(stream, decoding_options)?; let timestamps_to_return = TimestampsToReturn::decode(stream, decoding_options)?; - let items_to_modify: Option> = read_array(stream, decoding_options)?; + let items_to_modify: Option> = + read_array(stream, decoding_options)?; Ok(ModifyMonitoredItemsRequest { request_header, subscription_id, diff --git a/types/src/service_types/modify_monitored_items_response.rs b/types/src/service_types/modify_monitored_items_response.rs index 6f1f360b1..f00c6d2ca 100644 --- a/types/src/service_types/modify_monitored_items_response.rs +++ b/types/src/service_types/modify_monitored_items_response.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - response_header::ResponseHeader, - diagnostic_info::DiagnosticInfo, + basic_types::*, diagnostic_info::DiagnosticInfo, encoding::*, node_ids::ObjectId, + response_header::ResponseHeader, service_types::impls::MessageInfo, service_types::MonitoredItemModifyResult, }; diff --git a/types/src/service_types/modify_subscription_request.rs b/types/src/service_types/modify_subscription_request.rs index 96d8f889a..f5d5c66b9 100644 --- a/types/src/service_types/modify_subscription_request.rs +++ b/types/src/service_types/modify_subscription_request.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,11 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, + basic_types::*, encoding::*, node_ids::ObjectId, request_header::RequestHeader, service_types::impls::MessageInfo, - node_ids::ObjectId, - request_header::RequestHeader, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/modify_subscription_response.rs b/types/src/service_types/modify_subscription_response.rs index f9c23d7c4..f2409a25c 100644 --- a/types/src/service_types/modify_subscription_response.rs +++ b/types/src/service_types/modify_subscription_response.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,11 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, + basic_types::*, encoding::*, node_ids::ObjectId, response_header::ResponseHeader, service_types::impls::MessageInfo, - node_ids::ObjectId, - response_header::ResponseHeader, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/monitored_item_create_request.rs b/types/src/service_types/monitored_item_create_request.rs index da90d8663..67bb30a30 100644 --- a/types/src/service_types/monitored_item_create_request.rs +++ b/types/src/service_types/monitored_item_create_request.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,13 +10,9 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - service_types::enums::MonitoringMode, + basic_types::*, encoding::*, node_ids::ObjectId, service_types::enums::MonitoringMode, + service_types::impls::MessageInfo, service_types::MonitoringParameters, service_types::ReadValueId, - service_types::MonitoringParameters, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/monitored_item_create_result.rs b/types/src/service_types/monitored_item_create_result.rs index 19b0acfb9..15fa51d1d 100644 --- a/types/src/service_types/monitored_item_create_result.rs +++ b/types/src/service_types/monitored_item_create_result.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - status_codes::StatusCode, - extension_object::ExtensionObject, + basic_types::*, encoding::*, extension_object::ExtensionObject, node_ids::ObjectId, + service_types::impls::MessageInfo, status_codes::StatusCode, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/monitored_item_modify_request.rs b/types/src/service_types/monitored_item_modify_request.rs index 1a2c10b2d..0d763ed36 100644 --- a/types/src/service_types/monitored_item_modify_request.rs +++ b/types/src/service_types/monitored_item_modify_request.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,10 +10,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, + basic_types::*, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo, service_types::MonitoringParameters, }; diff --git a/types/src/service_types/monitored_item_modify_result.rs b/types/src/service_types/monitored_item_modify_result.rs index dd24843b5..5dac58d7a 100644 --- a/types/src/service_types/monitored_item_modify_result.rs +++ b/types/src/service_types/monitored_item_modify_result.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - status_codes::StatusCode, - extension_object::ExtensionObject, + basic_types::*, encoding::*, extension_object::ExtensionObject, node_ids::ObjectId, + service_types::impls::MessageInfo, status_codes::StatusCode, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/monitored_item_notification.rs b/types/src/service_types/monitored_item_notification.rs index fbedb6375..f9e9fda2f 100644 --- a/types/src/service_types/monitored_item_notification.rs +++ b/types/src/service_types/monitored_item_notification.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,11 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, + basic_types::*, data_value::DataValue, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo, - node_ids::ObjectId, - data_value::DataValue, }; #[derive(Debug, Clone, PartialEq, Serialize)] diff --git a/types/src/service_types/monitoring_filter.rs b/types/src/service_types/monitoring_filter.rs index 709ce45b3..54d16b18d 100644 --- a/types/src/service_types/monitoring_filter.rs +++ b/types/src/service_types/monitoring_filter.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,16 +9,10 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, -}; +use crate::{basic_types::*, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo}; #[derive(Debug, Clone, PartialEq)] -pub struct MonitoringFilter { -} +pub struct MonitoringFilter {} impl MessageInfo for MonitoringFilter { fn object_id(&self) -> ObjectId { @@ -38,7 +32,6 @@ impl BinaryEncoder for MonitoringFilter { #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { - Ok(MonitoringFilter { - }) + Ok(MonitoringFilter {}) } } diff --git a/types/src/service_types/monitoring_filter_result.rs b/types/src/service_types/monitoring_filter_result.rs index 943ca4443..c2c9237f5 100644 --- a/types/src/service_types/monitoring_filter_result.rs +++ b/types/src/service_types/monitoring_filter_result.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,16 +9,10 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, -}; +use crate::{basic_types::*, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo}; #[derive(Debug, Clone, PartialEq)] -pub struct MonitoringFilterResult { -} +pub struct MonitoringFilterResult {} impl MessageInfo for MonitoringFilterResult { fn object_id(&self) -> ObjectId { @@ -38,7 +32,6 @@ impl BinaryEncoder for MonitoringFilterResult { #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { - Ok(MonitoringFilterResult { - }) + Ok(MonitoringFilterResult {}) } } diff --git a/types/src/service_types/monitoring_parameters.rs b/types/src/service_types/monitoring_parameters.rs index d344ddb5a..ac002e430 100644 --- a/types/src/service_types/monitoring_parameters.rs +++ b/types/src/service_types/monitoring_parameters.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,11 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, + basic_types::*, encoding::*, extension_object::ExtensionObject, node_ids::ObjectId, service_types::impls::MessageInfo, - node_ids::ObjectId, - extension_object::ExtensionObject, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/network_address_data_type.rs b/types/src/service_types/network_address_data_type.rs index 24c5815c8..b87f0e27a 100644 --- a/types/src/service_types/network_address_data_type.rs +++ b/types/src/service_types/network_address_data_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,10 +10,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, + basic_types::*, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo, string::UAString, }; @@ -45,8 +42,6 @@ impl BinaryEncoder for NetworkAddressDataType { #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { let network_interface = UAString::decode(stream, decoding_options)?; - Ok(NetworkAddressDataType { - network_interface, - }) + Ok(NetworkAddressDataType { network_interface }) } } diff --git a/types/src/service_types/network_address_url_data_type.rs b/types/src/service_types/network_address_url_data_type.rs index 4a680bcd9..8bd33206c 100644 --- a/types/src/service_types/network_address_url_data_type.rs +++ b/types/src/service_types/network_address_url_data_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,11 +9,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - string::UAString, -}; +use crate::{basic_types::*, encoding::*, string::UAString}; #[derive(Debug, Clone, PartialEq)] pub struct NetworkAddressUrlDataType { diff --git a/types/src/service_types/network_group_data_type.rs b/types/src/service_types/network_group_data_type.rs index 7cba81b43..490221f1f 100644 --- a/types/src/service_types/network_group_data_type.rs +++ b/types/src/service_types/network_group_data_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - string::UAString, - service_types::EndpointUrlListDataType, + basic_types::*, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo, + service_types::EndpointUrlListDataType, string::UAString, }; #[derive(Debug, Clone, PartialEq)] @@ -49,7 +45,8 @@ impl BinaryEncoder for NetworkGroupDataType { #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { let server_uri = UAString::decode(stream, decoding_options)?; - let network_paths: Option> = read_array(stream, decoding_options)?; + let network_paths: Option> = + read_array(stream, decoding_options)?; Ok(NetworkGroupDataType { server_uri, network_paths, diff --git a/types/src/service_types/node_attributes.rs b/types/src/service_types/node_attributes.rs index f1e412c39..274252733 100644 --- a/types/src/service_types/node_attributes.rs +++ b/types/src/service_types/node_attributes.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,11 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, + basic_types::*, encoding::*, localized_text::LocalizedText, node_ids::ObjectId, service_types::impls::MessageInfo, - node_ids::ObjectId, - localized_text::LocalizedText, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/node_reference.rs b/types/src/service_types/node_reference.rs index 3d0745f64..930d95ab1 100644 --- a/types/src/service_types/node_reference.rs +++ b/types/src/service_types/node_reference.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,11 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, + basic_types::*, encoding::*, node_id::NodeId, node_ids::ObjectId, service_types::impls::MessageInfo, - node_ids::ObjectId, - node_id::NodeId, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/node_type_description.rs b/types/src/service_types/node_type_description.rs index dd876b551..2d93e4fb1 100644 --- a/types/src/service_types/node_type_description.rs +++ b/types/src/service_types/node_type_description.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - node_id::ExpandedNodeId, - service_types::QueryDataDescription, + basic_types::*, encoding::*, node_id::ExpandedNodeId, node_ids::ObjectId, + service_types::impls::MessageInfo, service_types::QueryDataDescription, }; #[derive(Debug, Clone, PartialEq)] @@ -53,7 +49,8 @@ impl BinaryEncoder for NodeTypeDescription { fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { let type_definition_node = ExpandedNodeId::decode(stream, decoding_options)?; let include_sub_types = bool::decode(stream, decoding_options)?; - let data_to_return: Option> = read_array(stream, decoding_options)?; + let data_to_return: Option> = + read_array(stream, decoding_options)?; Ok(NodeTypeDescription { type_definition_node, include_sub_types, diff --git a/types/src/service_types/notification_data.rs b/types/src/service_types/notification_data.rs index ac900f31b..fcea81a36 100644 --- a/types/src/service_types/notification_data.rs +++ b/types/src/service_types/notification_data.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,16 +9,10 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, -}; +use crate::{basic_types::*, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo}; #[derive(Debug, Clone, PartialEq)] -pub struct NotificationData { -} +pub struct NotificationData {} impl MessageInfo for NotificationData { fn object_id(&self) -> ObjectId { @@ -38,7 +32,6 @@ impl BinaryEncoder for NotificationData { #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { - Ok(NotificationData { - }) + Ok(NotificationData {}) } } diff --git a/types/src/service_types/notification_message.rs b/types/src/service_types/notification_message.rs index 7f2f7a13d..e8c3215d0 100644 --- a/types/src/service_types/notification_message.rs +++ b/types/src/service_types/notification_message.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - date_time::DateTime, - extension_object::ExtensionObject, + basic_types::*, date_time::DateTime, encoding::*, extension_object::ExtensionObject, + node_ids::ObjectId, service_types::impls::MessageInfo, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/object_attributes.rs b/types/src/service_types/object_attributes.rs index 03ed7e762..ba52363fd 100644 --- a/types/src/service_types/object_attributes.rs +++ b/types/src/service_types/object_attributes.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,11 +9,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - localized_text::LocalizedText, -}; +use crate::{basic_types::*, encoding::*, localized_text::LocalizedText}; #[derive(Debug, Clone, PartialEq)] pub struct ObjectAttributes { diff --git a/types/src/service_types/object_type_attributes.rs b/types/src/service_types/object_type_attributes.rs index 2171fdd88..07a7585b6 100644 --- a/types/src/service_types/object_type_attributes.rs +++ b/types/src/service_types/object_type_attributes.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,11 +9,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - localized_text::LocalizedText, -}; +use crate::{basic_types::*, encoding::*, localized_text::LocalizedText}; #[derive(Debug, Clone, PartialEq)] pub struct ObjectTypeAttributes { diff --git a/types/src/service_types/open_secure_channel_request.rs b/types/src/service_types/open_secure_channel_request.rs index 650f77502..c4284d45b 100644 --- a/types/src/service_types/open_secure_channel_request.rs +++ b/types/src/service_types/open_secure_channel_request.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,14 +10,9 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - request_header::RequestHeader, - service_types::enums::SecurityTokenRequestType, - service_types::enums::MessageSecurityMode, - byte_string::ByteString, + basic_types::*, byte_string::ByteString, encoding::*, node_ids::ObjectId, + request_header::RequestHeader, service_types::enums::MessageSecurityMode, + service_types::enums::SecurityTokenRequestType, service_types::impls::MessageInfo, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/open_secure_channel_response.rs b/types/src/service_types/open_secure_channel_response.rs index a373815f4..e334bae80 100644 --- a/types/src/service_types/open_secure_channel_response.rs +++ b/types/src/service_types/open_secure_channel_response.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - response_header::ResponseHeader, - byte_string::ByteString, + basic_types::*, byte_string::ByteString, encoding::*, node_ids::ObjectId, + response_header::ResponseHeader, service_types::impls::MessageInfo, service_types::ChannelSecurityToken, }; diff --git a/types/src/service_types/option_set.rs b/types/src/service_types/option_set.rs index 39720d218..6f4ffe72b 100644 --- a/types/src/service_types/option_set.rs +++ b/types/src/service_types/option_set.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,11 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, + basic_types::*, byte_string::ByteString, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo, - node_ids::ObjectId, - byte_string::ByteString, }; #[derive(Debug, Clone, PartialEq)] @@ -49,9 +46,6 @@ impl BinaryEncoder for OptionSet { fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { let value = ByteString::decode(stream, decoding_options)?; let valid_bits = ByteString::decode(stream, decoding_options)?; - Ok(OptionSet { - value, - valid_bits, - }) + Ok(OptionSet { value, valid_bits }) } } diff --git a/types/src/service_types/orientation.rs b/types/src/service_types/orientation.rs index 2eddf2fc5..9667dc9c0 100644 --- a/types/src/service_types/orientation.rs +++ b/types/src/service_types/orientation.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,16 +9,10 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, -}; +use crate::{basic_types::*, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo}; #[derive(Debug, Clone, PartialEq)] -pub struct Orientation { -} +pub struct Orientation {} impl MessageInfo for Orientation { fn object_id(&self) -> ObjectId { @@ -38,7 +32,6 @@ impl BinaryEncoder for Orientation { #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { - Ok(Orientation { - }) + Ok(Orientation {}) } } diff --git a/types/src/service_types/parsing_result.rs b/types/src/service_types/parsing_result.rs index 8d3c21fa3..afbcb488f 100644 --- a/types/src/service_types/parsing_result.rs +++ b/types/src/service_types/parsing_result.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - status_codes::StatusCode, - diagnostic_info::DiagnosticInfo, + basic_types::*, diagnostic_info::DiagnosticInfo, encoding::*, node_ids::ObjectId, + service_types::impls::MessageInfo, status_codes::StatusCode, }; #[derive(Debug, Clone, PartialEq)] @@ -53,7 +49,8 @@ impl BinaryEncoder for ParsingResult { fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { let status_code = StatusCode::decode(stream, decoding_options)?; let data_status_codes: Option> = read_array(stream, decoding_options)?; - let data_diagnostic_infos: Option> = read_array(stream, decoding_options)?; + let data_diagnostic_infos: Option> = + read_array(stream, decoding_options)?; Ok(ParsingResult { status_code, data_status_codes, diff --git a/types/src/service_types/program_diagnostic_2_data_type.rs b/types/src/service_types/program_diagnostic_2_data_type.rs index 65f3db1bf..12c3535f1 100644 --- a/types/src/service_types/program_diagnostic_2_data_type.rs +++ b/types/src/service_types/program_diagnostic_2_data_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,16 +10,9 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - node_id::NodeId, - string::UAString, - date_time::DateTime, - variant::Variant, - service_types::Argument, - service_types::StatusResult, + basic_types::*, date_time::DateTime, encoding::*, node_id::NodeId, node_ids::ObjectId, + service_types::impls::MessageInfo, service_types::Argument, service_types::StatusResult, + string::UAString, variant::Variant, }; #[derive(Debug, Clone, PartialEq)] @@ -88,8 +81,10 @@ impl BinaryEncoder for ProgramDiagnostic2DataType { let last_transition_time = DateTime::decode(stream, decoding_options)?; let last_method_call = UAString::decode(stream, decoding_options)?; let last_method_session_id = NodeId::decode(stream, decoding_options)?; - let last_method_input_arguments: Option> = read_array(stream, decoding_options)?; - let last_method_output_arguments: Option> = read_array(stream, decoding_options)?; + let last_method_input_arguments: Option> = + read_array(stream, decoding_options)?; + let last_method_output_arguments: Option> = + read_array(stream, decoding_options)?; let last_method_input_values: Option> = read_array(stream, decoding_options)?; let last_method_output_values: Option> = read_array(stream, decoding_options)?; let last_method_call_time = DateTime::decode(stream, decoding_options)?; diff --git a/types/src/service_types/program_diagnostic_data_type.rs b/types/src/service_types/program_diagnostic_data_type.rs index adf2bb2be..f446fdf99 100644 --- a/types/src/service_types/program_diagnostic_data_type.rs +++ b/types/src/service_types/program_diagnostic_data_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,15 +10,9 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - node_id::NodeId, + basic_types::*, date_time::DateTime, encoding::*, node_id::NodeId, node_ids::ObjectId, + service_types::impls::MessageInfo, service_types::Argument, service_types::StatusResult, string::UAString, - date_time::DateTime, - service_types::Argument, - service_types::StatusResult, }; #[derive(Debug, Clone, PartialEq)] @@ -81,8 +75,10 @@ impl BinaryEncoder for ProgramDiagnosticDataType { let last_transition_time = DateTime::decode(stream, decoding_options)?; let last_method_call = UAString::decode(stream, decoding_options)?; let last_method_session_id = NodeId::decode(stream, decoding_options)?; - let last_method_input_arguments: Option> = read_array(stream, decoding_options)?; - let last_method_output_arguments: Option> = read_array(stream, decoding_options)?; + let last_method_input_arguments: Option> = + read_array(stream, decoding_options)?; + let last_method_output_arguments: Option> = + read_array(stream, decoding_options)?; let last_method_call_time = DateTime::decode(stream, decoding_options)?; let last_method_return_status = StatusResult::decode(stream, decoding_options)?; Ok(ProgramDiagnosticDataType { diff --git a/types/src/service_types/pub_sub_configuration_data_type.rs b/types/src/service_types/pub_sub_configuration_data_type.rs index 58b0aae25..229d660e2 100644 --- a/types/src/service_types/pub_sub_configuration_data_type.rs +++ b/types/src/service_types/pub_sub_configuration_data_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - service_types::PublishedDataSetDataType, - service_types::PubSubConnectionDataType, + basic_types::*, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo, + service_types::PubSubConnectionDataType, service_types::PublishedDataSetDataType, }; #[derive(Debug, Clone, PartialEq)] @@ -51,8 +47,10 @@ impl BinaryEncoder for PubSubConfigurationDataType #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { - let published_data_sets: Option> = read_array(stream, decoding_options)?; - let connections: Option> = read_array(stream, decoding_options)?; + let published_data_sets: Option> = + read_array(stream, decoding_options)?; + let connections: Option> = + read_array(stream, decoding_options)?; let enabled = bool::decode(stream, decoding_options)?; Ok(PubSubConfigurationDataType { published_data_sets, diff --git a/types/src/service_types/pub_sub_connection_data_type.rs b/types/src/service_types/pub_sub_connection_data_type.rs index cb2f3d163..53dfa6e7e 100644 --- a/types/src/service_types/pub_sub_connection_data_type.rs +++ b/types/src/service_types/pub_sub_connection_data_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,16 +10,10 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - string::UAString, + basic_types::*, encoding::*, extension_object::ExtensionObject, node_ids::ObjectId, + service_types::impls::MessageInfo, service_types::KeyValuePair, + service_types::ReaderGroupDataType, service_types::WriterGroupDataType, string::UAString, variant::Variant, - extension_object::ExtensionObject, - service_types::KeyValuePair, - service_types::WriterGroupDataType, - service_types::ReaderGroupDataType, }; #[derive(Debug, Clone, PartialEq)] @@ -78,7 +72,8 @@ impl BinaryEncoder for PubSubConnectionDataType { let publisher_id = Variant::decode(stream, decoding_options)?; let transport_profile_uri = UAString::decode(stream, decoding_options)?; let address = ExtensionObject::decode(stream, decoding_options)?; - let connection_properties: Option> = read_array(stream, decoding_options)?; + let connection_properties: Option> = + read_array(stream, decoding_options)?; let transport_settings = ExtensionObject::decode(stream, decoding_options)?; let writer_groups: Option> = read_array(stream, decoding_options)?; let reader_groups: Option> = read_array(stream, decoding_options)?; diff --git a/types/src/service_types/pub_sub_group_data_type.rs b/types/src/service_types/pub_sub_group_data_type.rs index c2f0d2a2a..04ce72710 100644 --- a/types/src/service_types/pub_sub_group_data_type.rs +++ b/types/src/service_types/pub_sub_group_data_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,14 +10,9 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - string::UAString, - service_types::enums::MessageSecurityMode, - service_types::EndpointDescription, - service_types::KeyValuePair, + basic_types::*, encoding::*, node_ids::ObjectId, service_types::enums::MessageSecurityMode, + service_types::impls::MessageInfo, service_types::EndpointDescription, + service_types::KeyValuePair, string::UAString, }; #[derive(Debug, Clone, PartialEq)] @@ -69,7 +64,8 @@ impl BinaryEncoder for PubSubGroupDataType { let enabled = bool::decode(stream, decoding_options)?; let security_mode = MessageSecurityMode::decode(stream, decoding_options)?; let security_group_id = UAString::decode(stream, decoding_options)?; - let security_key_services: Option> = read_array(stream, decoding_options)?; + let security_key_services: Option> = + read_array(stream, decoding_options)?; let max_network_message_size = u32::decode(stream, decoding_options)?; let group_properties: Option> = read_array(stream, decoding_options)?; Ok(PubSubGroupDataType { diff --git a/types/src/service_types/publish_request.rs b/types/src/service_types/publish_request.rs index 9dd36a627..bf5ebe51f 100644 --- a/types/src/service_types/publish_request.rs +++ b/types/src/service_types/publish_request.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - request_header::RequestHeader, - service_types::SubscriptionAcknowledgement, + basic_types::*, encoding::*, node_ids::ObjectId, request_header::RequestHeader, + service_types::impls::MessageInfo, service_types::SubscriptionAcknowledgement, }; #[derive(Debug, Clone, PartialEq)] @@ -49,7 +45,8 @@ impl BinaryEncoder for PublishRequest { #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { let request_header = RequestHeader::decode(stream, decoding_options)?; - let subscription_acknowledgements: Option> = read_array(stream, decoding_options)?; + let subscription_acknowledgements: Option> = + read_array(stream, decoding_options)?; Ok(PublishRequest { request_header, subscription_acknowledgements, diff --git a/types/src/service_types/publish_response.rs b/types/src/service_types/publish_response.rs index fadff9889..5488cb625 100644 --- a/types/src/service_types/publish_response.rs +++ b/types/src/service_types/publish_response.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,14 +10,9 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - response_header::ResponseHeader, - status_codes::StatusCode, - diagnostic_info::DiagnosticInfo, - service_types::NotificationMessage, + basic_types::*, diagnostic_info::DiagnosticInfo, encoding::*, node_ids::ObjectId, + response_header::ResponseHeader, service_types::impls::MessageInfo, + service_types::NotificationMessage, status_codes::StatusCode, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/published_data_items_data_type.rs b/types/src/service_types/published_data_items_data_type.rs index be0f1edc6..41ddf7032 100644 --- a/types/src/service_types/published_data_items_data_type.rs +++ b/types/src/service_types/published_data_items_data_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,11 +9,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - service_types::PublishedVariableDataType, -}; +use crate::{basic_types::*, encoding::*, service_types::PublishedVariableDataType}; #[derive(Debug, Clone, PartialEq)] pub struct PublishedDataItemsDataType { @@ -36,9 +32,8 @@ impl BinaryEncoder for PublishedDataItemsDataType { #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { - let published_data: Option> = read_array(stream, decoding_options)?; - Ok(PublishedDataItemsDataType { - published_data, - }) + let published_data: Option> = + read_array(stream, decoding_options)?; + Ok(PublishedDataItemsDataType { published_data }) } } diff --git a/types/src/service_types/published_data_set_data_type.rs b/types/src/service_types/published_data_set_data_type.rs index 94ac9f0a1..d99bb87de 100644 --- a/types/src/service_types/published_data_set_data_type.rs +++ b/types/src/service_types/published_data_set_data_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,14 +10,9 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - string::UAString, - extension_object::ExtensionObject, - service_types::DataSetMetaDataType, - service_types::KeyValuePair, + basic_types::*, encoding::*, extension_object::ExtensionObject, node_ids::ObjectId, + service_types::impls::MessageInfo, service_types::DataSetMetaDataType, + service_types::KeyValuePair, string::UAString, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/published_data_set_source_data_type.rs b/types/src/service_types/published_data_set_source_data_type.rs index d55c7ac14..eff814ff9 100644 --- a/types/src/service_types/published_data_set_source_data_type.rs +++ b/types/src/service_types/published_data_set_source_data_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,16 +9,10 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, -}; +use crate::{basic_types::*, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo}; #[derive(Debug, Clone, PartialEq)] -pub struct PublishedDataSetSourceDataType { -} +pub struct PublishedDataSetSourceDataType {} impl MessageInfo for PublishedDataSetSourceDataType { fn object_id(&self) -> ObjectId { @@ -38,7 +32,6 @@ impl BinaryEncoder for PublishedDataSetSourceDat #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { - Ok(PublishedDataSetSourceDataType { - }) + Ok(PublishedDataSetSourceDataType {}) } } diff --git a/types/src/service_types/published_events_data_type.rs b/types/src/service_types/published_events_data_type.rs index 5bc11aab5..9c09192da 100644 --- a/types/src/service_types/published_events_data_type.rs +++ b/types/src/service_types/published_events_data_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,11 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - node_id::NodeId, + basic_types::*, encoding::*, node_id::NodeId, service_types::ContentFilter, service_types::SimpleAttributeOperand, - service_types::ContentFilter, }; #[derive(Debug, Clone, PartialEq)] @@ -45,7 +42,8 @@ impl BinaryEncoder for PublishedEventsDataType { #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { let event_notifier = NodeId::decode(stream, decoding_options)?; - let selected_fields: Option> = read_array(stream, decoding_options)?; + let selected_fields: Option> = + read_array(stream, decoding_options)?; let filter = ContentFilter::decode(stream, decoding_options)?; Ok(PublishedEventsDataType { event_notifier, diff --git a/types/src/service_types/published_variable_data_type.rs b/types/src/service_types/published_variable_data_type.rs index f9b6ba93c..f94f3daf8 100644 --- a/types/src/service_types/published_variable_data_type.rs +++ b/types/src/service_types/published_variable_data_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,14 +10,9 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - node_id::NodeId, - string::UAString, + basic_types::*, encoding::*, node_id::NodeId, node_ids::ObjectId, + qualified_name::QualifiedName, service_types::impls::MessageInfo, string::UAString, variant::Variant, - qualified_name::QualifiedName, }; #[derive(Debug, Clone, PartialEq)] @@ -75,7 +70,8 @@ impl BinaryEncoder for PublishedVariableDataType { let deadband_value = f64::decode(stream, decoding_options)?; let index_range = UAString::decode(stream, decoding_options)?; let substitute_value = Variant::decode(stream, decoding_options)?; - let meta_data_properties: Option> = read_array(stream, decoding_options)?; + let meta_data_properties: Option> = + read_array(stream, decoding_options)?; Ok(PublishedVariableDataType { published_variable, attribute_id, diff --git a/types/src/service_types/query_data_description.rs b/types/src/service_types/query_data_description.rs index c6db7514a..f2dd47b1a 100644 --- a/types/src/service_types/query_data_description.rs +++ b/types/src/service_types/query_data_description.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - string::UAString, - service_types::RelativePath, + basic_types::*, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo, + service_types::RelativePath, string::UAString, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/query_data_set.rs b/types/src/service_types/query_data_set.rs index 510538d73..78fdf5e78 100644 --- a/types/src/service_types/query_data_set.rs +++ b/types/src/service_types/query_data_set.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - node_id::ExpandedNodeId, - variant::Variant, + basic_types::*, encoding::*, node_id::ExpandedNodeId, node_ids::ObjectId, + service_types::impls::MessageInfo, variant::Variant, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/query_first_request.rs b/types/src/service_types/query_first_request.rs index 4018c1846..a3093590a 100644 --- a/types/src/service_types/query_first_request.rs +++ b/types/src/service_types/query_first_request.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,14 +10,9 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - request_header::RequestHeader, - service_types::ViewDescription, - service_types::NodeTypeDescription, - service_types::ContentFilter, + basic_types::*, encoding::*, node_ids::ObjectId, request_header::RequestHeader, + service_types::impls::MessageInfo, service_types::ContentFilter, + service_types::NodeTypeDescription, service_types::ViewDescription, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/query_first_response.rs b/types/src/service_types/query_first_response.rs index 7a2358a59..d39734178 100644 --- a/types/src/service_types/query_first_response.rs +++ b/types/src/service_types/query_first_response.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,16 +10,9 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - response_header::ResponseHeader, - byte_string::ByteString, - diagnostic_info::DiagnosticInfo, - service_types::QueryDataSet, - service_types::ParsingResult, - service_types::ContentFilterResult, + basic_types::*, byte_string::ByteString, diagnostic_info::DiagnosticInfo, encoding::*, + node_ids::ObjectId, response_header::ResponseHeader, service_types::impls::MessageInfo, + service_types::ContentFilterResult, service_types::ParsingResult, service_types::QueryDataSet, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/query_next_request.rs b/types/src/service_types/query_next_request.rs index 8f2bb53d5..0af79b611 100644 --- a/types/src/service_types/query_next_request.rs +++ b/types/src/service_types/query_next_request.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - request_header::RequestHeader, - byte_string::ByteString, + basic_types::*, byte_string::ByteString, encoding::*, node_ids::ObjectId, + request_header::RequestHeader, service_types::impls::MessageInfo, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/query_next_response.rs b/types/src/service_types/query_next_response.rs index f16d0d66c..5e29a03fd 100644 --- a/types/src/service_types/query_next_response.rs +++ b/types/src/service_types/query_next_response.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - response_header::ResponseHeader, - byte_string::ByteString, + basic_types::*, byte_string::ByteString, encoding::*, node_ids::ObjectId, + response_header::ResponseHeader, service_types::impls::MessageInfo, service_types::QueryDataSet, }; diff --git a/types/src/service_types/range.rs b/types/src/service_types/range.rs index 68058383b..6b6aa7fb1 100644 --- a/types/src/service_types/range.rs +++ b/types/src/service_types/range.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,12 +9,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, -}; +use crate::{basic_types::*, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo}; #[derive(Debug, Clone, PartialEq)] pub struct Range { @@ -48,9 +43,6 @@ impl BinaryEncoder for Range { fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { let low = f64::decode(stream, decoding_options)?; let high = f64::decode(stream, decoding_options)?; - Ok(Range { - low, - high, - }) + Ok(Range { low, high }) } } diff --git a/types/src/service_types/rational_number.rs b/types/src/service_types/rational_number.rs index b606470db..00653e931 100644 --- a/types/src/service_types/rational_number.rs +++ b/types/src/service_types/rational_number.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,12 +9,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, -}; +use crate::{basic_types::*, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo}; #[derive(Debug, Clone, PartialEq)] pub struct RationalNumber { diff --git a/types/src/service_types/read_annotation_data_details.rs b/types/src/service_types/read_annotation_data_details.rs index 8e7d7c432..ae7ae788e 100644 --- a/types/src/service_types/read_annotation_data_details.rs +++ b/types/src/service_types/read_annotation_data_details.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,11 +9,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - date_time::DateTime, -}; +use crate::{basic_types::*, date_time::DateTime, encoding::*}; #[derive(Debug, Clone, PartialEq)] pub struct ReadAnnotationDataDetails { @@ -37,8 +33,6 @@ impl BinaryEncoder for ReadAnnotationDataDetails { #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { let req_times: Option> = read_array(stream, decoding_options)?; - Ok(ReadAnnotationDataDetails { - req_times, - }) + Ok(ReadAnnotationDataDetails { req_times }) } } diff --git a/types/src/service_types/read_at_time_details.rs b/types/src/service_types/read_at_time_details.rs index 41534ea4a..2e2eddfe6 100644 --- a/types/src/service_types/read_at_time_details.rs +++ b/types/src/service_types/read_at_time_details.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,11 +9,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - date_time::DateTime, -}; +use crate::{basic_types::*, date_time::DateTime, encoding::*}; #[derive(Debug, Clone, PartialEq)] pub struct ReadAtTimeDetails { diff --git a/types/src/service_types/read_event_details.rs b/types/src/service_types/read_event_details.rs index 5f83c03f0..a237b7c77 100644 --- a/types/src/service_types/read_event_details.rs +++ b/types/src/service_types/read_event_details.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,12 +9,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - date_time::DateTime, - service_types::EventFilter, -}; +use crate::{basic_types::*, date_time::DateTime, encoding::*, service_types::EventFilter}; #[derive(Debug, Clone, PartialEq)] pub struct ReadEventDetails { diff --git a/types/src/service_types/read_processed_details.rs b/types/src/service_types/read_processed_details.rs index dc3f3555b..aa34a4894 100644 --- a/types/src/service_types/read_processed_details.rs +++ b/types/src/service_types/read_processed_details.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,10 +10,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - date_time::DateTime, - node_id::NodeId, + basic_types::*, date_time::DateTime, encoding::*, node_id::NodeId, service_types::AggregateConfiguration, }; diff --git a/types/src/service_types/read_raw_modified_details.rs b/types/src/service_types/read_raw_modified_details.rs index bbb247cd3..a8da5a13d 100644 --- a/types/src/service_types/read_raw_modified_details.rs +++ b/types/src/service_types/read_raw_modified_details.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,11 +9,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - date_time::DateTime, -}; +use crate::{basic_types::*, date_time::DateTime, encoding::*}; #[derive(Debug, Clone, PartialEq)] pub struct ReadRawModifiedDetails { diff --git a/types/src/service_types/read_request.rs b/types/src/service_types/read_request.rs index e522dd18a..315b8dc50 100644 --- a/types/src/service_types/read_request.rs +++ b/types/src/service_types/read_request.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - request_header::RequestHeader, - service_types::enums::TimestampsToReturn, + basic_types::*, encoding::*, node_ids::ObjectId, request_header::RequestHeader, + service_types::enums::TimestampsToReturn, service_types::impls::MessageInfo, service_types::ReadValueId, }; diff --git a/types/src/service_types/read_response.rs b/types/src/service_types/read_response.rs index 66d2d6c5a..be8c5e5e2 100644 --- a/types/src/service_types/read_response.rs +++ b/types/src/service_types/read_response.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,13 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - response_header::ResponseHeader, - data_value::DataValue, - diagnostic_info::DiagnosticInfo, + basic_types::*, data_value::DataValue, diagnostic_info::DiagnosticInfo, encoding::*, + node_ids::ObjectId, response_header::ResponseHeader, service_types::impls::MessageInfo, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/read_value_id.rs b/types/src/service_types/read_value_id.rs index 9c4c37677..43d12ebf5 100644 --- a/types/src/service_types/read_value_id.rs +++ b/types/src/service_types/read_value_id.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,13 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - node_id::NodeId, - string::UAString, - qualified_name::QualifiedName, + basic_types::*, encoding::*, node_id::NodeId, node_ids::ObjectId, + qualified_name::QualifiedName, service_types::impls::MessageInfo, string::UAString, }; #[derive(Debug, Clone, PartialEq, Serialize)] diff --git a/types/src/service_types/reader_group_data_type.rs b/types/src/service_types/reader_group_data_type.rs index 7ad83323b..0f8c04931 100644 --- a/types/src/service_types/reader_group_data_type.rs +++ b/types/src/service_types/reader_group_data_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,14 +10,9 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - string::UAString, - service_types::enums::MessageSecurityMode, - extension_object::ExtensionObject, - service_types::EndpointDescription, - service_types::KeyValuePair, - service_types::DataSetReaderDataType, + basic_types::*, encoding::*, extension_object::ExtensionObject, + service_types::enums::MessageSecurityMode, service_types::DataSetReaderDataType, + service_types::EndpointDescription, service_types::KeyValuePair, string::UAString, }; #[derive(Debug, Clone, PartialEq)] @@ -72,12 +67,14 @@ impl BinaryEncoder for ReaderGroupDataType { let enabled = bool::decode(stream, decoding_options)?; let security_mode = MessageSecurityMode::decode(stream, decoding_options)?; let security_group_id = UAString::decode(stream, decoding_options)?; - let security_key_services: Option> = read_array(stream, decoding_options)?; + let security_key_services: Option> = + read_array(stream, decoding_options)?; let max_network_message_size = u32::decode(stream, decoding_options)?; let group_properties: Option> = read_array(stream, decoding_options)?; let transport_settings = ExtensionObject::decode(stream, decoding_options)?; let message_settings = ExtensionObject::decode(stream, decoding_options)?; - let data_set_readers: Option> = read_array(stream, decoding_options)?; + let data_set_readers: Option> = + read_array(stream, decoding_options)?; Ok(ReaderGroupDataType { name, enabled, diff --git a/types/src/service_types/reader_group_message_data_type.rs b/types/src/service_types/reader_group_message_data_type.rs index 9058e4023..8a7eb2f3b 100644 --- a/types/src/service_types/reader_group_message_data_type.rs +++ b/types/src/service_types/reader_group_message_data_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,16 +9,10 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, -}; +use crate::{basic_types::*, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo}; #[derive(Debug, Clone, PartialEq)] -pub struct ReaderGroupMessageDataType { -} +pub struct ReaderGroupMessageDataType {} impl MessageInfo for ReaderGroupMessageDataType { fn object_id(&self) -> ObjectId { @@ -38,7 +32,6 @@ impl BinaryEncoder for ReaderGroupMessageDataType { #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { - Ok(ReaderGroupMessageDataType { - }) + Ok(ReaderGroupMessageDataType {}) } } diff --git a/types/src/service_types/reader_group_transport_data_type.rs b/types/src/service_types/reader_group_transport_data_type.rs index c330a34d1..3b15dcc18 100644 --- a/types/src/service_types/reader_group_transport_data_type.rs +++ b/types/src/service_types/reader_group_transport_data_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,16 +9,10 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, -}; +use crate::{basic_types::*, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo}; #[derive(Debug, Clone, PartialEq)] -pub struct ReaderGroupTransportDataType { -} +pub struct ReaderGroupTransportDataType {} impl MessageInfo for ReaderGroupTransportDataType { fn object_id(&self) -> ObjectId { @@ -38,7 +32,6 @@ impl BinaryEncoder for ReaderGroupTransportDataTyp #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { - Ok(ReaderGroupTransportDataType { - }) + Ok(ReaderGroupTransportDataType {}) } } diff --git a/types/src/service_types/redundant_server_data_type.rs b/types/src/service_types/redundant_server_data_type.rs index 74919eac8..dfe62572d 100644 --- a/types/src/service_types/redundant_server_data_type.rs +++ b/types/src/service_types/redundant_server_data_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - string::UAString, - service_types::enums::ServerState, + basic_types::*, encoding::*, node_ids::ObjectId, service_types::enums::ServerState, + service_types::impls::MessageInfo, string::UAString, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/reference_description.rs b/types/src/service_types/reference_description.rs index 6326c57f7..ed12e6f28 100644 --- a/types/src/service_types/reference_description.rs +++ b/types/src/service_types/reference_description.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,15 +10,9 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - node_id::NodeId, - node_id::ExpandedNodeId, - qualified_name::QualifiedName, - localized_text::LocalizedText, - service_types::enums::NodeClass, + basic_types::*, encoding::*, localized_text::LocalizedText, node_id::ExpandedNodeId, + node_id::NodeId, node_ids::ObjectId, qualified_name::QualifiedName, + service_types::enums::NodeClass, service_types::impls::MessageInfo, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/reference_type_attributes.rs b/types/src/service_types/reference_type_attributes.rs index 0f1214563..d93698b18 100644 --- a/types/src/service_types/reference_type_attributes.rs +++ b/types/src/service_types/reference_type_attributes.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,11 +9,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - localized_text::LocalizedText, -}; +use crate::{basic_types::*, encoding::*, localized_text::LocalizedText}; #[derive(Debug, Clone, PartialEq)] pub struct ReferenceTypeAttributes { diff --git a/types/src/service_types/register_nodes_request.rs b/types/src/service_types/register_nodes_request.rs index 651ddf169..615ebfea5 100644 --- a/types/src/service_types/register_nodes_request.rs +++ b/types/src/service_types/register_nodes_request.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - request_header::RequestHeader, - node_id::NodeId, + basic_types::*, encoding::*, node_id::NodeId, node_ids::ObjectId, + request_header::RequestHeader, service_types::impls::MessageInfo, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/register_nodes_response.rs b/types/src/service_types/register_nodes_response.rs index 28e278bba..255338bc0 100644 --- a/types/src/service_types/register_nodes_response.rs +++ b/types/src/service_types/register_nodes_response.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - response_header::ResponseHeader, - node_id::NodeId, + basic_types::*, encoding::*, node_id::NodeId, node_ids::ObjectId, + response_header::ResponseHeader, service_types::impls::MessageInfo, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/register_server_2_request.rs b/types/src/service_types/register_server_2_request.rs index 8737ce858..e99f1c934 100644 --- a/types/src/service_types/register_server_2_request.rs +++ b/types/src/service_types/register_server_2_request.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - request_header::RequestHeader, - extension_object::ExtensionObject, + basic_types::*, encoding::*, extension_object::ExtensionObject, node_ids::ObjectId, + request_header::RequestHeader, service_types::impls::MessageInfo, service_types::RegisteredServer, }; @@ -54,7 +50,8 @@ impl BinaryEncoder for RegisterServer2Request { fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { let request_header = RequestHeader::decode(stream, decoding_options)?; let server = RegisteredServer::decode(stream, decoding_options)?; - let discovery_configuration: Option> = read_array(stream, decoding_options)?; + let discovery_configuration: Option> = + read_array(stream, decoding_options)?; Ok(RegisterServer2Request { request_header, server, diff --git a/types/src/service_types/register_server_2_response.rs b/types/src/service_types/register_server_2_response.rs index 3d2b438c3..8f72d1798 100644 --- a/types/src/service_types/register_server_2_response.rs +++ b/types/src/service_types/register_server_2_response.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,13 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - response_header::ResponseHeader, - status_codes::StatusCode, - diagnostic_info::DiagnosticInfo, + basic_types::*, diagnostic_info::DiagnosticInfo, encoding::*, node_ids::ObjectId, + response_header::ResponseHeader, service_types::impls::MessageInfo, status_codes::StatusCode, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/register_server_request.rs b/types/src/service_types/register_server_request.rs index 76cd24b0a..5e6e30939 100644 --- a/types/src/service_types/register_server_request.rs +++ b/types/src/service_types/register_server_request.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - request_header::RequestHeader, - service_types::RegisteredServer, + basic_types::*, encoding::*, node_ids::ObjectId, request_header::RequestHeader, + service_types::impls::MessageInfo, service_types::RegisteredServer, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/register_server_response.rs b/types/src/service_types/register_server_response.rs index 0f8042200..7c788f4cc 100644 --- a/types/src/service_types/register_server_response.rs +++ b/types/src/service_types/register_server_response.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,11 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, + basic_types::*, encoding::*, node_ids::ObjectId, response_header::ResponseHeader, service_types::impls::MessageInfo, - node_ids::ObjectId, - response_header::ResponseHeader, }; #[derive(Debug, Clone, PartialEq)] @@ -45,8 +42,6 @@ impl BinaryEncoder for RegisterServerResponse { #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { let response_header = ResponseHeader::decode(stream, decoding_options)?; - Ok(RegisterServerResponse { - response_header, - }) + Ok(RegisterServerResponse { response_header }) } } diff --git a/types/src/service_types/registered_server.rs b/types/src/service_types/registered_server.rs index a8fe53b20..36422fae7 100644 --- a/types/src/service_types/registered_server.rs +++ b/types/src/service_types/registered_server.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,13 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - string::UAString, - localized_text::LocalizedText, - service_types::enums::ApplicationType, + basic_types::*, encoding::*, localized_text::LocalizedText, node_ids::ObjectId, + service_types::enums::ApplicationType, service_types::impls::MessageInfo, string::UAString, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/relative_path.rs b/types/src/service_types/relative_path.rs index 03fb0c857..74340f3f8 100644 --- a/types/src/service_types/relative_path.rs +++ b/types/src/service_types/relative_path.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,10 +10,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, + basic_types::*, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo, service_types::RelativePathElement, }; @@ -45,8 +42,6 @@ impl BinaryEncoder for RelativePath { #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { let elements: Option> = read_array(stream, decoding_options)?; - Ok(RelativePath { - elements, - }) + Ok(RelativePath { elements }) } } diff --git a/types/src/service_types/relative_path_element.rs b/types/src/service_types/relative_path_element.rs index 71da49450..ee1bb6f2f 100644 --- a/types/src/service_types/relative_path_element.rs +++ b/types/src/service_types/relative_path_element.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - node_id::NodeId, - qualified_name::QualifiedName, + basic_types::*, encoding::*, node_id::NodeId, node_ids::ObjectId, + qualified_name::QualifiedName, service_types::impls::MessageInfo, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/republish_request.rs b/types/src/service_types/republish_request.rs index 3c4376791..2f46416e4 100644 --- a/types/src/service_types/republish_request.rs +++ b/types/src/service_types/republish_request.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,11 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, + basic_types::*, encoding::*, node_ids::ObjectId, request_header::RequestHeader, service_types::impls::MessageInfo, - node_ids::ObjectId, - request_header::RequestHeader, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/republish_response.rs b/types/src/service_types/republish_response.rs index 03c646792..7b9cd9793 100644 --- a/types/src/service_types/republish_response.rs +++ b/types/src/service_types/republish_response.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - response_header::ResponseHeader, - service_types::NotificationMessage, + basic_types::*, encoding::*, node_ids::ObjectId, response_header::ResponseHeader, + service_types::impls::MessageInfo, service_types::NotificationMessage, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/role_permission_type.rs b/types/src/service_types/role_permission_type.rs index 152f4324f..9d40f4dca 100644 --- a/types/src/service_types/role_permission_type.rs +++ b/types/src/service_types/role_permission_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - node_id::NodeId, - service_types::enums::PermissionType, + basic_types::*, encoding::*, node_id::NodeId, node_ids::ObjectId, + service_types::enums::PermissionType, service_types::impls::MessageInfo, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/sampling_interval_diagnostics_data_type.rs b/types/src/service_types/sampling_interval_diagnostics_data_type.rs index 2414e9dde..b125574e6 100644 --- a/types/src/service_types/sampling_interval_diagnostics_data_type.rs +++ b/types/src/service_types/sampling_interval_diagnostics_data_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,12 +9,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, -}; +use crate::{basic_types::*, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo}; #[derive(Debug, Clone, PartialEq)] pub struct SamplingIntervalDiagnosticsDataType { diff --git a/types/src/service_types/semantic_change_structure_data_type.rs b/types/src/service_types/semantic_change_structure_data_type.rs index 60ddf9cbf..0ae04648a 100644 --- a/types/src/service_types/semantic_change_structure_data_type.rs +++ b/types/src/service_types/semantic_change_structure_data_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,11 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, + basic_types::*, encoding::*, node_id::NodeId, node_ids::ObjectId, service_types::impls::MessageInfo, - node_ids::ObjectId, - node_id::NodeId, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/server_diagnostics_summary_data_type.rs b/types/src/service_types/server_diagnostics_summary_data_type.rs index 0b49eba3c..95d08a8e9 100644 --- a/types/src/service_types/server_diagnostics_summary_data_type.rs +++ b/types/src/service_types/server_diagnostics_summary_data_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,12 +9,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, -}; +use crate::{basic_types::*, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo}; #[derive(Debug, Clone, PartialEq, Serialize)] pub struct ServerDiagnosticsSummaryDataType { diff --git a/types/src/service_types/server_on_network.rs b/types/src/service_types/server_on_network.rs index 1d07d76f6..a84bbb4c0 100644 --- a/types/src/service_types/server_on_network.rs +++ b/types/src/service_types/server_on_network.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,10 +10,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, + basic_types::*, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo, string::UAString, }; diff --git a/types/src/service_types/server_status_data_type.rs b/types/src/service_types/server_status_data_type.rs index 0c9c0bcbe..d5b6f130d 100644 --- a/types/src/service_types/server_status_data_type.rs +++ b/types/src/service_types/server_status_data_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,13 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - date_time::DateTime, - service_types::enums::ServerState, - localized_text::LocalizedText, + basic_types::*, date_time::DateTime, encoding::*, localized_text::LocalizedText, + node_ids::ObjectId, service_types::enums::ServerState, service_types::impls::MessageInfo, service_types::BuildInfo, }; diff --git a/types/src/service_types/service_counter_data_type.rs b/types/src/service_types/service_counter_data_type.rs index ab56db3fa..1ac40dea0 100644 --- a/types/src/service_types/service_counter_data_type.rs +++ b/types/src/service_types/service_counter_data_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,12 +9,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, -}; +use crate::{basic_types::*, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo}; #[derive(Debug, Clone, PartialEq)] pub struct ServiceCounterDataType { diff --git a/types/src/service_types/service_fault.rs b/types/src/service_types/service_fault.rs index 4b85d39f2..43848d5d6 100644 --- a/types/src/service_types/service_fault.rs +++ b/types/src/service_types/service_fault.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,11 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, + basic_types::*, encoding::*, node_ids::ObjectId, response_header::ResponseHeader, service_types::impls::MessageInfo, - node_ids::ObjectId, - response_header::ResponseHeader, }; #[derive(Debug, Clone, PartialEq)] @@ -45,8 +42,6 @@ impl BinaryEncoder for ServiceFault { #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { let response_header = ResponseHeader::decode(stream, decoding_options)?; - Ok(ServiceFault { - response_header, - }) + Ok(ServiceFault { response_header }) } } diff --git a/types/src/service_types/session_diagnostics_data_type.rs b/types/src/service_types/session_diagnostics_data_type.rs index bb5d3aac9..ba5156c01 100644 --- a/types/src/service_types/session_diagnostics_data_type.rs +++ b/types/src/service_types/session_diagnostics_data_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,15 +10,9 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - node_id::NodeId, - string::UAString, - date_time::DateTime, - service_types::ApplicationDescription, - service_types::ServiceCounterDataType, + basic_types::*, date_time::DateTime, encoding::*, node_id::NodeId, node_ids::ObjectId, + service_types::impls::MessageInfo, service_types::ApplicationDescription, + service_types::ServiceCounterDataType, string::UAString, }; #[derive(Debug, Clone, PartialEq)] @@ -164,7 +158,9 @@ impl BinaryEncoder for SessionDiagnosticsDataType { size += self.delete_references_count.encode(stream)?; size += self.browse_count.encode(stream)?; size += self.browse_next_count.encode(stream)?; - size += self.translate_browse_paths_to_node_ids_count.encode(stream)?; + size += self + .translate_browse_paths_to_node_ids_count + .encode(stream)?; size += self.query_first_count.encode(stream)?; size += self.query_next_count.encode(stream)?; size += self.register_nodes_count.encode(stream)?; @@ -194,17 +190,21 @@ impl BinaryEncoder for SessionDiagnosticsDataType { let write_count = ServiceCounterDataType::decode(stream, decoding_options)?; let history_update_count = ServiceCounterDataType::decode(stream, decoding_options)?; let call_count = ServiceCounterDataType::decode(stream, decoding_options)?; - let create_monitored_items_count = ServiceCounterDataType::decode(stream, decoding_options)?; - let modify_monitored_items_count = ServiceCounterDataType::decode(stream, decoding_options)?; + let create_monitored_items_count = + ServiceCounterDataType::decode(stream, decoding_options)?; + let modify_monitored_items_count = + ServiceCounterDataType::decode(stream, decoding_options)?; let set_monitoring_mode_count = ServiceCounterDataType::decode(stream, decoding_options)?; let set_triggering_count = ServiceCounterDataType::decode(stream, decoding_options)?; - let delete_monitored_items_count = ServiceCounterDataType::decode(stream, decoding_options)?; + let delete_monitored_items_count = + ServiceCounterDataType::decode(stream, decoding_options)?; let create_subscription_count = ServiceCounterDataType::decode(stream, decoding_options)?; let modify_subscription_count = ServiceCounterDataType::decode(stream, decoding_options)?; let set_publishing_mode_count = ServiceCounterDataType::decode(stream, decoding_options)?; let publish_count = ServiceCounterDataType::decode(stream, decoding_options)?; let republish_count = ServiceCounterDataType::decode(stream, decoding_options)?; - let transfer_subscriptions_count = ServiceCounterDataType::decode(stream, decoding_options)?; + let transfer_subscriptions_count = + ServiceCounterDataType::decode(stream, decoding_options)?; let delete_subscriptions_count = ServiceCounterDataType::decode(stream, decoding_options)?; let add_nodes_count = ServiceCounterDataType::decode(stream, decoding_options)?; let add_references_count = ServiceCounterDataType::decode(stream, decoding_options)?; @@ -212,7 +212,8 @@ impl BinaryEncoder for SessionDiagnosticsDataType { let delete_references_count = ServiceCounterDataType::decode(stream, decoding_options)?; let browse_count = ServiceCounterDataType::decode(stream, decoding_options)?; let browse_next_count = ServiceCounterDataType::decode(stream, decoding_options)?; - let translate_browse_paths_to_node_ids_count = ServiceCounterDataType::decode(stream, decoding_options)?; + let translate_browse_paths_to_node_ids_count = + ServiceCounterDataType::decode(stream, decoding_options)?; let query_first_count = ServiceCounterDataType::decode(stream, decoding_options)?; let query_next_count = ServiceCounterDataType::decode(stream, decoding_options)?; let register_nodes_count = ServiceCounterDataType::decode(stream, decoding_options)?; diff --git a/types/src/service_types/session_security_diagnostics_data_type.rs b/types/src/service_types/session_security_diagnostics_data_type.rs index c914f23b1..d859fa27b 100644 --- a/types/src/service_types/session_security_diagnostics_data_type.rs +++ b/types/src/service_types/session_security_diagnostics_data_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,14 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - node_id::NodeId, - string::UAString, - service_types::enums::MessageSecurityMode, - byte_string::ByteString, + basic_types::*, byte_string::ByteString, encoding::*, node_id::NodeId, node_ids::ObjectId, + service_types::enums::MessageSecurityMode, service_types::impls::MessageInfo, string::UAString, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/sessionless_invoke_request_type.rs b/types/src/service_types/sessionless_invoke_request_type.rs index 870c91dc8..b0f0bbf24 100644 --- a/types/src/service_types/sessionless_invoke_request_type.rs +++ b/types/src/service_types/sessionless_invoke_request_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,10 +10,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, + basic_types::*, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo, string::UAString, }; diff --git a/types/src/service_types/sessionless_invoke_response_type.rs b/types/src/service_types/sessionless_invoke_response_type.rs index 9e339066b..32794ff3b 100644 --- a/types/src/service_types/sessionless_invoke_response_type.rs +++ b/types/src/service_types/sessionless_invoke_response_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,10 +10,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, + basic_types::*, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo, string::UAString, }; diff --git a/types/src/service_types/set_monitoring_mode_request.rs b/types/src/service_types/set_monitoring_mode_request.rs index 918417155..316a3535c 100644 --- a/types/src/service_types/set_monitoring_mode_request.rs +++ b/types/src/service_types/set_monitoring_mode_request.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - request_header::RequestHeader, - service_types::enums::MonitoringMode, + basic_types::*, encoding::*, node_ids::ObjectId, request_header::RequestHeader, + service_types::enums::MonitoringMode, service_types::impls::MessageInfo, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/set_monitoring_mode_response.rs b/types/src/service_types/set_monitoring_mode_response.rs index 9c04566b4..4c877c284 100644 --- a/types/src/service_types/set_monitoring_mode_response.rs +++ b/types/src/service_types/set_monitoring_mode_response.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,13 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - response_header::ResponseHeader, - status_codes::StatusCode, - diagnostic_info::DiagnosticInfo, + basic_types::*, diagnostic_info::DiagnosticInfo, encoding::*, node_ids::ObjectId, + response_header::ResponseHeader, service_types::impls::MessageInfo, status_codes::StatusCode, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/set_publishing_mode_request.rs b/types/src/service_types/set_publishing_mode_request.rs index 50bf4ce5b..dcf258a0b 100644 --- a/types/src/service_types/set_publishing_mode_request.rs +++ b/types/src/service_types/set_publishing_mode_request.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,11 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, + basic_types::*, encoding::*, node_ids::ObjectId, request_header::RequestHeader, service_types::impls::MessageInfo, - node_ids::ObjectId, - request_header::RequestHeader, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/set_publishing_mode_response.rs b/types/src/service_types/set_publishing_mode_response.rs index 53cd5c8f9..5900b79c2 100644 --- a/types/src/service_types/set_publishing_mode_response.rs +++ b/types/src/service_types/set_publishing_mode_response.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,13 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - response_header::ResponseHeader, - status_codes::StatusCode, - diagnostic_info::DiagnosticInfo, + basic_types::*, diagnostic_info::DiagnosticInfo, encoding::*, node_ids::ObjectId, + response_header::ResponseHeader, service_types::impls::MessageInfo, status_codes::StatusCode, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/set_triggering_request.rs b/types/src/service_types/set_triggering_request.rs index 3f7597656..83455cfd6 100644 --- a/types/src/service_types/set_triggering_request.rs +++ b/types/src/service_types/set_triggering_request.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,11 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, + basic_types::*, encoding::*, node_ids::ObjectId, request_header::RequestHeader, service_types::impls::MessageInfo, - node_ids::ObjectId, - request_header::RequestHeader, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/set_triggering_response.rs b/types/src/service_types/set_triggering_response.rs index 647dca9dc..974db3807 100644 --- a/types/src/service_types/set_triggering_response.rs +++ b/types/src/service_types/set_triggering_response.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,13 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - response_header::ResponseHeader, - status_codes::StatusCode, - diagnostic_info::DiagnosticInfo, + basic_types::*, diagnostic_info::DiagnosticInfo, encoding::*, node_ids::ObjectId, + response_header::ResponseHeader, service_types::impls::MessageInfo, status_codes::StatusCode, }; #[derive(Debug, Clone, PartialEq)] @@ -60,9 +55,11 @@ impl BinaryEncoder for SetTriggeringResponse { fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { let response_header = ResponseHeader::decode(stream, decoding_options)?; let add_results: Option> = read_array(stream, decoding_options)?; - let add_diagnostic_infos: Option> = read_array(stream, decoding_options)?; + let add_diagnostic_infos: Option> = + read_array(stream, decoding_options)?; let remove_results: Option> = read_array(stream, decoding_options)?; - let remove_diagnostic_infos: Option> = read_array(stream, decoding_options)?; + let remove_diagnostic_infos: Option> = + read_array(stream, decoding_options)?; Ok(SetTriggeringResponse { response_header, add_results, diff --git a/types/src/service_types/signature_data.rs b/types/src/service_types/signature_data.rs index 53adb99d3..9108ed116 100644 --- a/types/src/service_types/signature_data.rs +++ b/types/src/service_types/signature_data.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - string::UAString, - byte_string::ByteString, + basic_types::*, byte_string::ByteString, encoding::*, node_ids::ObjectId, + service_types::impls::MessageInfo, string::UAString, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/signed_software_certificate.rs b/types/src/service_types/signed_software_certificate.rs index c798967a1..7ee20704b 100644 --- a/types/src/service_types/signed_software_certificate.rs +++ b/types/src/service_types/signed_software_certificate.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,11 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, + basic_types::*, byte_string::ByteString, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo, - node_ids::ObjectId, - byte_string::ByteString, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/simple_attribute_operand.rs b/types/src/service_types/simple_attribute_operand.rs index 0e91a9d1c..4111389f6 100644 --- a/types/src/service_types/simple_attribute_operand.rs +++ b/types/src/service_types/simple_attribute_operand.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,11 +10,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - node_id::NodeId, - qualified_name::QualifiedName, - string::UAString, + basic_types::*, encoding::*, node_id::NodeId, qualified_name::QualifiedName, string::UAString, }; #[derive(Debug, Clone, PartialEq, Serialize)] diff --git a/types/src/service_types/simple_type_description.rs b/types/src/service_types/simple_type_description.rs index d54262732..353984685 100644 --- a/types/src/service_types/simple_type_description.rs +++ b/types/src/service_types/simple_type_description.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,12 +9,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - node_id::NodeId, - qualified_name::QualifiedName, -}; +use crate::{basic_types::*, encoding::*, node_id::NodeId, qualified_name::QualifiedName}; #[derive(Debug, Clone, PartialEq)] pub struct SimpleTypeDescription { diff --git a/types/src/service_types/status_change_notification.rs b/types/src/service_types/status_change_notification.rs index 58216bc62..7e588f5f1 100644 --- a/types/src/service_types/status_change_notification.rs +++ b/types/src/service_types/status_change_notification.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,10 +10,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - status_codes::StatusCode, - diagnostic_info::DiagnosticInfo, + basic_types::*, diagnostic_info::DiagnosticInfo, encoding::*, status_codes::StatusCode, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/status_result.rs b/types/src/service_types/status_result.rs index e46b7beca..18d6214e7 100644 --- a/types/src/service_types/status_result.rs +++ b/types/src/service_types/status_result.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - status_codes::StatusCode, - diagnostic_info::DiagnosticInfo, + basic_types::*, diagnostic_info::DiagnosticInfo, encoding::*, node_ids::ObjectId, + service_types::impls::MessageInfo, status_codes::StatusCode, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/structure_definition.rs b/types/src/service_types/structure_definition.rs index b016357df..d2f149691 100644 --- a/types/src/service_types/structure_definition.rs +++ b/types/src/service_types/structure_definition.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,10 +10,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - node_id::NodeId, - service_types::enums::StructureType, + basic_types::*, encoding::*, node_id::NodeId, service_types::enums::StructureType, service_types::StructureField, }; diff --git a/types/src/service_types/structure_description.rs b/types/src/service_types/structure_description.rs index 34c7a68ec..f7af807bd 100644 --- a/types/src/service_types/structure_description.rs +++ b/types/src/service_types/structure_description.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,10 +10,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - node_id::NodeId, - qualified_name::QualifiedName, + basic_types::*, encoding::*, node_id::NodeId, qualified_name::QualifiedName, service_types::StructureDefinition, }; diff --git a/types/src/service_types/structure_field.rs b/types/src/service_types/structure_field.rs index 2c4c36466..ec7c83434 100644 --- a/types/src/service_types/structure_field.rs +++ b/types/src/service_types/structure_field.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,13 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - string::UAString, - localized_text::LocalizedText, - node_id::NodeId, + basic_types::*, encoding::*, localized_text::LocalizedText, node_id::NodeId, + node_ids::ObjectId, service_types::impls::MessageInfo, string::UAString, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/subscribed_data_set_data_type.rs b/types/src/service_types/subscribed_data_set_data_type.rs index 38ba6fc15..06bfffae3 100644 --- a/types/src/service_types/subscribed_data_set_data_type.rs +++ b/types/src/service_types/subscribed_data_set_data_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,16 +9,10 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, -}; +use crate::{basic_types::*, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo}; #[derive(Debug, Clone, PartialEq)] -pub struct SubscribedDataSetDataType { -} +pub struct SubscribedDataSetDataType {} impl MessageInfo for SubscribedDataSetDataType { fn object_id(&self) -> ObjectId { @@ -38,7 +32,6 @@ impl BinaryEncoder for SubscribedDataSetDataType { #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { - Ok(SubscribedDataSetDataType { - }) + Ok(SubscribedDataSetDataType {}) } } diff --git a/types/src/service_types/subscribed_data_set_mirror_data_type.rs b/types/src/service_types/subscribed_data_set_mirror_data_type.rs index 5b6e630df..46e366466 100644 --- a/types/src/service_types/subscribed_data_set_mirror_data_type.rs +++ b/types/src/service_types/subscribed_data_set_mirror_data_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,12 +9,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - string::UAString, - service_types::RolePermissionType, -}; +use crate::{basic_types::*, encoding::*, service_types::RolePermissionType, string::UAString}; #[derive(Debug, Clone, PartialEq)] pub struct SubscribedDataSetMirrorDataType { @@ -41,7 +36,8 @@ impl BinaryEncoder for SubscribedDataSetMirrorD #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { let parent_node_name = UAString::decode(stream, decoding_options)?; - let role_permissions: Option> = read_array(stream, decoding_options)?; + let role_permissions: Option> = + read_array(stream, decoding_options)?; Ok(SubscribedDataSetMirrorDataType { parent_node_name, role_permissions, diff --git a/types/src/service_types/subscription_acknowledgement.rs b/types/src/service_types/subscription_acknowledgement.rs index 76f427b2c..930ba71a8 100644 --- a/types/src/service_types/subscription_acknowledgement.rs +++ b/types/src/service_types/subscription_acknowledgement.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,12 +9,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, -}; +use crate::{basic_types::*, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo}; #[derive(Debug, Clone, PartialEq)] pub struct SubscriptionAcknowledgement { diff --git a/types/src/service_types/subscription_diagnostics_data_type.rs b/types/src/service_types/subscription_diagnostics_data_type.rs index e88f18d82..53c44d1f4 100644 --- a/types/src/service_types/subscription_diagnostics_data_type.rs +++ b/types/src/service_types/subscription_diagnostics_data_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,11 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, + basic_types::*, encoding::*, node_id::NodeId, node_ids::ObjectId, service_types::impls::MessageInfo, - node_ids::ObjectId, - node_id::NodeId, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/target_variables_data_type.rs b/types/src/service_types/target_variables_data_type.rs index f81c3db70..93a085712 100644 --- a/types/src/service_types/target_variables_data_type.rs +++ b/types/src/service_types/target_variables_data_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,11 +9,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - service_types::FieldTargetDataType, -}; +use crate::{basic_types::*, encoding::*, service_types::FieldTargetDataType}; #[derive(Debug, Clone, PartialEq)] pub struct TargetVariablesDataType { @@ -36,9 +32,8 @@ impl BinaryEncoder for TargetVariablesDataType { #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { - let target_variables: Option> = read_array(stream, decoding_options)?; - Ok(TargetVariablesDataType { - target_variables, - }) + let target_variables: Option> = + read_array(stream, decoding_options)?; + Ok(TargetVariablesDataType { target_variables }) } } diff --git a/types/src/service_types/three_d_cartesian_coordinates.rs b/types/src/service_types/three_d_cartesian_coordinates.rs index fe4b29edc..54e48e5eb 100644 --- a/types/src/service_types/three_d_cartesian_coordinates.rs +++ b/types/src/service_types/three_d_cartesian_coordinates.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,10 +9,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, -}; +use crate::{basic_types::*, encoding::*}; #[derive(Debug, Clone, PartialEq)] pub struct ThreeDCartesianCoordinates { @@ -44,10 +41,6 @@ impl BinaryEncoder for ThreeDCartesianCoordinates { let x = f64::decode(stream, decoding_options)?; let y = f64::decode(stream, decoding_options)?; let z = f64::decode(stream, decoding_options)?; - Ok(ThreeDCartesianCoordinates { - x, - y, - z, - }) + Ok(ThreeDCartesianCoordinates { x, y, z }) } } diff --git a/types/src/service_types/three_d_frame.rs b/types/src/service_types/three_d_frame.rs index 816fdd0cb..8eddbfd92 100644 --- a/types/src/service_types/three_d_frame.rs +++ b/types/src/service_types/three_d_frame.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,9 +10,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::ThreeDCartesianCoordinates, + basic_types::*, encoding::*, service_types::ThreeDCartesianCoordinates, service_types::ThreeDOrientation, }; diff --git a/types/src/service_types/three_d_orientation.rs b/types/src/service_types/three_d_orientation.rs index c5b592fdf..8bcef3065 100644 --- a/types/src/service_types/three_d_orientation.rs +++ b/types/src/service_types/three_d_orientation.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,10 +9,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, -}; +use crate::{basic_types::*, encoding::*}; #[derive(Debug, Clone, PartialEq)] pub struct ThreeDOrientation { @@ -44,10 +41,6 @@ impl BinaryEncoder for ThreeDOrientation { let a = f64::decode(stream, decoding_options)?; let b = f64::decode(stream, decoding_options)?; let c = f64::decode(stream, decoding_options)?; - Ok(ThreeDOrientation { - a, - b, - c, - }) + Ok(ThreeDOrientation { a, b, c }) } } diff --git a/types/src/service_types/three_d_vector.rs b/types/src/service_types/three_d_vector.rs index c40a6bf76..c6e9746a6 100644 --- a/types/src/service_types/three_d_vector.rs +++ b/types/src/service_types/three_d_vector.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,10 +9,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, -}; +use crate::{basic_types::*, encoding::*}; #[derive(Debug, Clone, PartialEq)] pub struct ThreeDVector { @@ -44,10 +41,6 @@ impl BinaryEncoder for ThreeDVector { let x = f64::decode(stream, decoding_options)?; let y = f64::decode(stream, decoding_options)?; let z = f64::decode(stream, decoding_options)?; - Ok(ThreeDVector { - x, - y, - z, - }) + Ok(ThreeDVector { x, y, z }) } } diff --git a/types/src/service_types/time_zone_data_type.rs b/types/src/service_types/time_zone_data_type.rs index 2a638037e..156053198 100644 --- a/types/src/service_types/time_zone_data_type.rs +++ b/types/src/service_types/time_zone_data_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,12 +9,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, -}; +use crate::{basic_types::*, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo}; #[derive(Debug, Clone, PartialEq)] pub struct TimeZoneDataType { diff --git a/types/src/service_types/transfer_result.rs b/types/src/service_types/transfer_result.rs index 8b6eece23..b06a3b6f0 100644 --- a/types/src/service_types/transfer_result.rs +++ b/types/src/service_types/transfer_result.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,10 +10,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, + basic_types::*, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo, status_codes::StatusCode, }; diff --git a/types/src/service_types/transfer_subscriptions_request.rs b/types/src/service_types/transfer_subscriptions_request.rs index 12f9200f1..42a1c4c49 100644 --- a/types/src/service_types/transfer_subscriptions_request.rs +++ b/types/src/service_types/transfer_subscriptions_request.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,11 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, + basic_types::*, encoding::*, node_ids::ObjectId, request_header::RequestHeader, service_types::impls::MessageInfo, - node_ids::ObjectId, - request_header::RequestHeader, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/transfer_subscriptions_response.rs b/types/src/service_types/transfer_subscriptions_response.rs index 4751863f6..56781c53c 100644 --- a/types/src/service_types/transfer_subscriptions_response.rs +++ b/types/src/service_types/transfer_subscriptions_response.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - response_header::ResponseHeader, - diagnostic_info::DiagnosticInfo, + basic_types::*, diagnostic_info::DiagnosticInfo, encoding::*, node_ids::ObjectId, + response_header::ResponseHeader, service_types::impls::MessageInfo, service_types::TransferResult, }; diff --git a/types/src/service_types/translate_browse_paths_to_node_ids_request.rs b/types/src/service_types/translate_browse_paths_to_node_ids_request.rs index b231879e5..1b5f734be 100644 --- a/types/src/service_types/translate_browse_paths_to_node_ids_request.rs +++ b/types/src/service_types/translate_browse_paths_to_node_ids_request.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - request_header::RequestHeader, - service_types::BrowsePath, + basic_types::*, encoding::*, node_ids::ObjectId, request_header::RequestHeader, + service_types::impls::MessageInfo, service_types::BrowsePath, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/translate_browse_paths_to_node_ids_response.rs b/types/src/service_types/translate_browse_paths_to_node_ids_response.rs index ccad93431..ca8231b0f 100644 --- a/types/src/service_types/translate_browse_paths_to_node_ids_response.rs +++ b/types/src/service_types/translate_browse_paths_to_node_ids_response.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - response_header::ResponseHeader, - diagnostic_info::DiagnosticInfo, + basic_types::*, diagnostic_info::DiagnosticInfo, encoding::*, node_ids::ObjectId, + response_header::ResponseHeader, service_types::impls::MessageInfo, service_types::BrowsePathResult, }; @@ -32,7 +28,9 @@ impl MessageInfo for TranslateBrowsePathsToNodeIdsResponse { } } -impl BinaryEncoder for TranslateBrowsePathsToNodeIdsResponse { +impl BinaryEncoder + for TranslateBrowsePathsToNodeIdsResponse +{ fn byte_len(&self) -> usize { let mut size = 0; size += self.response_header.byte_len(); diff --git a/types/src/service_types/trust_list_data_type.rs b/types/src/service_types/trust_list_data_type.rs index ad0e15173..c12a84960 100644 --- a/types/src/service_types/trust_list_data_type.rs +++ b/types/src/service_types/trust_list_data_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,11 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, + basic_types::*, byte_string::ByteString, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo, - node_ids::ObjectId, - byte_string::ByteString, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/ua_binary_file_data_type.rs b/types/src/service_types/ua_binary_file_data_type.rs index 980fc9af8..b8181152e 100644 --- a/types/src/service_types/ua_binary_file_data_type.rs +++ b/types/src/service_types/ua_binary_file_data_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,14 +10,9 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - string::UAString, + basic_types::*, encoding::*, service_types::EnumDescription, service_types::KeyValuePair, + service_types::SimpleTypeDescription, service_types::StructureDescription, string::UAString, variant::Variant, - service_types::StructureDescription, - service_types::EnumDescription, - service_types::SimpleTypeDescription, - service_types::KeyValuePair, }; #[derive(Debug, Clone, PartialEq)] @@ -60,9 +55,11 @@ impl BinaryEncoder for UABinaryFileDataType { #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { let namespaces: Option> = read_array(stream, decoding_options)?; - let structure_data_types: Option> = read_array(stream, decoding_options)?; + let structure_data_types: Option> = + read_array(stream, decoding_options)?; let enum_data_types: Option> = read_array(stream, decoding_options)?; - let simple_data_types: Option> = read_array(stream, decoding_options)?; + let simple_data_types: Option> = + read_array(stream, decoding_options)?; let schema_location = UAString::decode(stream, decoding_options)?; let file_header: Option> = read_array(stream, decoding_options)?; let body = Variant::decode(stream, decoding_options)?; diff --git a/types/src/service_types/uadp_data_set_reader_message_data_type.rs b/types/src/service_types/uadp_data_set_reader_message_data_type.rs index 0296fc240..d8c4cb249 100644 --- a/types/src/service_types/uadp_data_set_reader_message_data_type.rs +++ b/types/src/service_types/uadp_data_set_reader_message_data_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,11 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - guid::Guid, + basic_types::*, encoding::*, guid::Guid, service_types::enums::UadpDataSetMessageContentMask, service_types::enums::UadpNetworkMessageContentMask, - service_types::enums::UadpDataSetMessageContentMask, }; #[derive(Debug, Clone, PartialEq)] @@ -66,8 +63,10 @@ impl BinaryEncoder for UadpDataSetReaderMessag let network_message_number = u16::decode(stream, decoding_options)?; let data_set_offset = u16::decode(stream, decoding_options)?; let data_set_class_id = Guid::decode(stream, decoding_options)?; - let network_message_content_mask = UadpNetworkMessageContentMask::decode(stream, decoding_options)?; - let data_set_message_content_mask = UadpDataSetMessageContentMask::decode(stream, decoding_options)?; + let network_message_content_mask = + UadpNetworkMessageContentMask::decode(stream, decoding_options)?; + let data_set_message_content_mask = + UadpDataSetMessageContentMask::decode(stream, decoding_options)?; let publishing_interval = f64::decode(stream, decoding_options)?; let receive_offset = f64::decode(stream, decoding_options)?; let processing_offset = f64::decode(stream, decoding_options)?; diff --git a/types/src/service_types/uadp_data_set_writer_message_data_type.rs b/types/src/service_types/uadp_data_set_writer_message_data_type.rs index 076c32c52..cd2c49b61 100644 --- a/types/src/service_types/uadp_data_set_writer_message_data_type.rs +++ b/types/src/service_types/uadp_data_set_writer_message_data_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,11 +9,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - service_types::enums::UadpDataSetMessageContentMask, -}; +use crate::{basic_types::*, encoding::*, service_types::enums::UadpDataSetMessageContentMask}; #[derive(Debug, Clone, PartialEq)] pub struct UadpDataSetWriterMessageDataType { @@ -45,7 +41,8 @@ impl BinaryEncoder for UadpDataSetWriterMessag #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { - let data_set_message_content_mask = UadpDataSetMessageContentMask::decode(stream, decoding_options)?; + let data_set_message_content_mask = + UadpDataSetMessageContentMask::decode(stream, decoding_options)?; let configured_size = u16::decode(stream, decoding_options)?; let network_message_number = u16::decode(stream, decoding_options)?; let data_set_offset = u16::decode(stream, decoding_options)?; diff --git a/types/src/service_types/uadp_writer_group_message_data_type.rs b/types/src/service_types/uadp_writer_group_message_data_type.rs index 5647060a6..78daa8f85 100644 --- a/types/src/service_types/uadp_writer_group_message_data_type.rs +++ b/types/src/service_types/uadp_writer_group_message_data_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,9 +10,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::enums::DataSetOrderingType, + basic_types::*, encoding::*, service_types::enums::DataSetOrderingType, service_types::enums::UadpNetworkMessageContentMask, }; @@ -51,7 +49,8 @@ impl BinaryEncoder for UadpWriterGroupMessageDat fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { let group_version = u32::decode(stream, decoding_options)?; let data_set_ordering = DataSetOrderingType::decode(stream, decoding_options)?; - let network_message_content_mask = UadpNetworkMessageContentMask::decode(stream, decoding_options)?; + let network_message_content_mask = + UadpNetworkMessageContentMask::decode(stream, decoding_options)?; let sampling_offset = f64::decode(stream, decoding_options)?; let publishing_offset: Option> = read_array(stream, decoding_options)?; Ok(UadpWriterGroupMessageDataType { diff --git a/types/src/service_types/unregister_nodes_request.rs b/types/src/service_types/unregister_nodes_request.rs index 903cd699f..24a414731 100644 --- a/types/src/service_types/unregister_nodes_request.rs +++ b/types/src/service_types/unregister_nodes_request.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - request_header::RequestHeader, - node_id::NodeId, + basic_types::*, encoding::*, node_id::NodeId, node_ids::ObjectId, + request_header::RequestHeader, service_types::impls::MessageInfo, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/unregister_nodes_response.rs b/types/src/service_types/unregister_nodes_response.rs index c3d688ea7..4cbf2393c 100644 --- a/types/src/service_types/unregister_nodes_response.rs +++ b/types/src/service_types/unregister_nodes_response.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,11 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, + basic_types::*, encoding::*, node_ids::ObjectId, response_header::ResponseHeader, service_types::impls::MessageInfo, - node_ids::ObjectId, - response_header::ResponseHeader, }; #[derive(Debug, Clone, PartialEq)] @@ -45,8 +42,6 @@ impl BinaryEncoder for UnregisterNodesResponse { #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { let response_header = ResponseHeader::decode(stream, decoding_options)?; - Ok(UnregisterNodesResponse { - response_header, - }) + Ok(UnregisterNodesResponse { response_header }) } } diff --git a/types/src/service_types/update_data_details.rs b/types/src/service_types/update_data_details.rs index d835c1f98..771c377fb 100644 --- a/types/src/service_types/update_data_details.rs +++ b/types/src/service_types/update_data_details.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,11 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - node_id::NodeId, + basic_types::*, data_value::DataValue, encoding::*, node_id::NodeId, service_types::enums::PerformUpdateType, - data_value::DataValue, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/update_event_details.rs b/types/src/service_types/update_event_details.rs index c996a9c03..ca671feba 100644 --- a/types/src/service_types/update_event_details.rs +++ b/types/src/service_types/update_event_details.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - node_id::NodeId, - service_types::enums::PerformUpdateType, - service_types::EventFilter, - service_types::HistoryEventFieldList, + basic_types::*, encoding::*, node_id::NodeId, service_types::enums::PerformUpdateType, + service_types::EventFilter, service_types::HistoryEventFieldList, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/update_structure_data_details.rs b/types/src/service_types/update_structure_data_details.rs index c22653400..859b90001 100644 --- a/types/src/service_types/update_structure_data_details.rs +++ b/types/src/service_types/update_structure_data_details.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,11 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - node_id::NodeId, + basic_types::*, data_value::DataValue, encoding::*, node_id::NodeId, service_types::enums::PerformUpdateType, - data_value::DataValue, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/user_identity_token.rs b/types/src/service_types/user_identity_token.rs index 68a1ef8de..227595ef1 100644 --- a/types/src/service_types/user_identity_token.rs +++ b/types/src/service_types/user_identity_token.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,10 +10,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, + basic_types::*, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo, string::UAString, }; @@ -45,8 +42,6 @@ impl BinaryEncoder for UserIdentityToken { #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { let policy_id = UAString::decode(stream, decoding_options)?; - Ok(UserIdentityToken { - policy_id, - }) + Ok(UserIdentityToken { policy_id }) } } diff --git a/types/src/service_types/user_name_identity_token.rs b/types/src/service_types/user_name_identity_token.rs index 2dd3c7fb9..7c5cd885a 100644 --- a/types/src/service_types/user_name_identity_token.rs +++ b/types/src/service_types/user_name_identity_token.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,12 +9,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - string::UAString, - byte_string::ByteString, -}; +use crate::{basic_types::*, byte_string::ByteString, encoding::*, string::UAString}; #[derive(Debug, Clone, PartialEq)] pub struct UserNameIdentityToken { diff --git a/types/src/service_types/user_token_policy.rs b/types/src/service_types/user_token_policy.rs index e5d0ad997..9bdddecce 100644 --- a/types/src/service_types/user_token_policy.rs +++ b/types/src/service_types/user_token_policy.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - string::UAString, - service_types::enums::UserTokenType, + basic_types::*, encoding::*, node_ids::ObjectId, service_types::enums::UserTokenType, + service_types::impls::MessageInfo, string::UAString, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/variable_attributes.rs b/types/src/service_types/variable_attributes.rs index 7fe2743b7..990f151d4 100644 --- a/types/src/service_types/variable_attributes.rs +++ b/types/src/service_types/variable_attributes.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,11 +10,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - localized_text::LocalizedText, - variant::Variant, - node_id::NodeId, + basic_types::*, encoding::*, localized_text::LocalizedText, node_id::NodeId, variant::Variant, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/variable_type_attributes.rs b/types/src/service_types/variable_type_attributes.rs index d9b18530f..541b998ba 100644 --- a/types/src/service_types/variable_type_attributes.rs +++ b/types/src/service_types/variable_type_attributes.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,11 +10,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - localized_text::LocalizedText, - variant::Variant, - node_id::NodeId, + basic_types::*, encoding::*, localized_text::LocalizedText, node_id::NodeId, variant::Variant, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/vector.rs b/types/src/service_types/vector.rs index eb4888d4e..bb10a25be 100644 --- a/types/src/service_types/vector.rs +++ b/types/src/service_types/vector.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,16 +9,10 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, -}; +use crate::{basic_types::*, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo}; #[derive(Debug, Clone, PartialEq)] -pub struct Vector { -} +pub struct Vector {} impl MessageInfo for Vector { fn object_id(&self) -> ObjectId { @@ -38,7 +32,6 @@ impl BinaryEncoder for Vector { #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { - Ok(Vector { - }) + Ok(Vector {}) } } diff --git a/types/src/service_types/view_attributes.rs b/types/src/service_types/view_attributes.rs index 008b07a15..6872057a9 100644 --- a/types/src/service_types/view_attributes.rs +++ b/types/src/service_types/view_attributes.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,11 +9,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - localized_text::LocalizedText, -}; +use crate::{basic_types::*, encoding::*, localized_text::LocalizedText}; #[derive(Debug, Clone, PartialEq)] pub struct ViewAttributes { diff --git a/types/src/service_types/view_description.rs b/types/src/service_types/view_description.rs index df4ae20a0..aae9f10e8 100644 --- a/types/src/service_types/view_description.rs +++ b/types/src/service_types/view_description.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, + basic_types::*, date_time::DateTime, encoding::*, node_id::NodeId, node_ids::ObjectId, service_types::impls::MessageInfo, - node_ids::ObjectId, - node_id::NodeId, - date_time::DateTime, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/write_request.rs b/types/src/service_types/write_request.rs index d66c0e5ef..4285a55a8 100644 --- a/types/src/service_types/write_request.rs +++ b/types/src/service_types/write_request.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,12 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - request_header::RequestHeader, - service_types::WriteValue, + basic_types::*, encoding::*, node_ids::ObjectId, request_header::RequestHeader, + service_types::impls::MessageInfo, service_types::WriteValue, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/write_response.rs b/types/src/service_types/write_response.rs index 89a598096..1176f3286 100644 --- a/types/src/service_types/write_response.rs +++ b/types/src/service_types/write_response.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,13 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - response_header::ResponseHeader, - status_codes::StatusCode, - diagnostic_info::DiagnosticInfo, + basic_types::*, diagnostic_info::DiagnosticInfo, encoding::*, node_ids::ObjectId, + response_header::ResponseHeader, service_types::impls::MessageInfo, status_codes::StatusCode, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/write_value.rs b/types/src/service_types/write_value.rs index 9333cf660..26c24549d 100644 --- a/types/src/service_types/write_value.rs +++ b/types/src/service_types/write_value.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,13 +10,8 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, - node_id::NodeId, - string::UAString, - data_value::DataValue, + basic_types::*, data_value::DataValue, encoding::*, node_id::NodeId, node_ids::ObjectId, + service_types::impls::MessageInfo, string::UAString, }; #[derive(Debug, Clone, PartialEq)] diff --git a/types/src/service_types/writer_group_data_type.rs b/types/src/service_types/writer_group_data_type.rs index c70e0f32f..e7f3c5780 100644 --- a/types/src/service_types/writer_group_data_type.rs +++ b/types/src/service_types/writer_group_data_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -10,14 +10,9 @@ use std::io::{Read, Write}; #[allow(unused_imports)] use crate::{ - encoding::*, - basic_types::*, - string::UAString, - service_types::enums::MessageSecurityMode, - extension_object::ExtensionObject, - service_types::EndpointDescription, - service_types::KeyValuePair, - service_types::DataSetWriterDataType, + basic_types::*, encoding::*, extension_object::ExtensionObject, + service_types::enums::MessageSecurityMode, service_types::DataSetWriterDataType, + service_types::EndpointDescription, service_types::KeyValuePair, string::UAString, }; #[derive(Debug, Clone, PartialEq)] @@ -90,7 +85,8 @@ impl BinaryEncoder for WriterGroupDataType { let enabled = bool::decode(stream, decoding_options)?; let security_mode = MessageSecurityMode::decode(stream, decoding_options)?; let security_group_id = UAString::decode(stream, decoding_options)?; - let security_key_services: Option> = read_array(stream, decoding_options)?; + let security_key_services: Option> = + read_array(stream, decoding_options)?; let max_network_message_size = u32::decode(stream, decoding_options)?; let group_properties: Option> = read_array(stream, decoding_options)?; let writer_group_id = u16::decode(stream, decoding_options)?; @@ -101,7 +97,8 @@ impl BinaryEncoder for WriterGroupDataType { let header_layout_uri = UAString::decode(stream, decoding_options)?; let transport_settings = ExtensionObject::decode(stream, decoding_options)?; let message_settings = ExtensionObject::decode(stream, decoding_options)?; - let data_set_writers: Option> = read_array(stream, decoding_options)?; + let data_set_writers: Option> = + read_array(stream, decoding_options)?; Ok(WriterGroupDataType { name, enabled, diff --git a/types/src/service_types/writer_group_message_data_type.rs b/types/src/service_types/writer_group_message_data_type.rs index 157f5c561..023a3945c 100644 --- a/types/src/service_types/writer_group_message_data_type.rs +++ b/types/src/service_types/writer_group_message_data_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,16 +9,10 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, -}; +use crate::{basic_types::*, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo}; #[derive(Debug, Clone, PartialEq)] -pub struct WriterGroupMessageDataType { -} +pub struct WriterGroupMessageDataType {} impl MessageInfo for WriterGroupMessageDataType { fn object_id(&self) -> ObjectId { @@ -38,7 +32,6 @@ impl BinaryEncoder for WriterGroupMessageDataType { #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { - Ok(WriterGroupMessageDataType { - }) + Ok(WriterGroupMessageDataType {}) } } diff --git a/types/src/service_types/writer_group_transport_data_type.rs b/types/src/service_types/writer_group_transport_data_type.rs index cea11624e..ae13f6b7e 100644 --- a/types/src/service_types/writer_group_transport_data_type.rs +++ b/types/src/service_types/writer_group_transport_data_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,16 +9,10 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, -}; +use crate::{basic_types::*, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo}; #[derive(Debug, Clone, PartialEq)] -pub struct WriterGroupTransportDataType { -} +pub struct WriterGroupTransportDataType {} impl MessageInfo for WriterGroupTransportDataType { fn object_id(&self) -> ObjectId { @@ -38,7 +32,6 @@ impl BinaryEncoder for WriterGroupTransportDataTyp #[allow(unused_variables)] fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { - Ok(WriterGroupTransportDataType { - }) + Ok(WriterGroupTransportDataType {}) } } diff --git a/types/src/service_types/x_509_identity_token.rs b/types/src/service_types/x_509_identity_token.rs index 89b1fc8d1..863999c51 100644 --- a/types/src/service_types/x_509_identity_token.rs +++ b/types/src/service_types/x_509_identity_token.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,12 +9,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - string::UAString, - byte_string::ByteString, -}; +use crate::{basic_types::*, byte_string::ByteString, encoding::*, string::UAString}; #[derive(Debug, Clone, PartialEq)] pub struct X509IdentityToken { diff --git a/types/src/service_types/xv_type.rs b/types/src/service_types/xv_type.rs index 77e6ea1bb..419105b9e 100644 --- a/types/src/service_types/xv_type.rs +++ b/types/src/service_types/xv_type.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.Types.bsd.xml by tools/schema/gen_types.js // DO NOT EDIT THIS FILE @@ -9,12 +9,7 @@ use std::io::{Read, Write}; #[allow(unused_imports)] -use crate::{ - encoding::*, - basic_types::*, - service_types::impls::MessageInfo, - node_ids::ObjectId, -}; +use crate::{basic_types::*, encoding::*, node_ids::ObjectId, service_types::impls::MessageInfo}; #[derive(Debug, Clone, PartialEq)] pub struct XVType { @@ -48,9 +43,6 @@ impl BinaryEncoder for XVType { fn decode(stream: &mut S, decoding_options: &DecodingOptions) -> EncodingResult { let x = f64::decode(stream, decoding_options)?; let value = f32::decode(stream, decoding_options)?; - Ok(XVType { - x, - value, - }) + Ok(XVType { x, value }) } } diff --git a/types/src/status_code.rs b/types/src/status_code.rs index f2fe7c49c..971135a70 100644 --- a/types/src/status_code.rs +++ b/types/src/status_code.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! Contains the hand implemented part of the StatusCode type. The other file, `status_codes.rs` contains //! the machine generated part. diff --git a/types/src/status_codes.rs b/types/src/status_codes.rs index 34258bfd1..2d4b88a61 100644 --- a/types/src/status_codes.rs +++ b/types/src/status_codes.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock // This file was autogenerated from Opc.Ua.StatusCodes.csv by tools/schema/gen_status_codes.js // DO NOT EDIT THIS FILE @@ -296,7 +296,6 @@ bitflags! { } impl StatusCode { - /// Returns the descriptive name for the status code, e.g. to put a meaningful code in a log file pub fn name(self) -> &'static str { match self.status() { @@ -321,9 +320,13 @@ impl StatusCode { StatusCode::GoodDependentValueChanged => "GoodDependentValueChanged", StatusCode::GoodEdited_DependentValueChanged => "GoodEdited_DependentValueChanged", StatusCode::GoodEdited_DominantValueChanged => "GoodEdited_DominantValueChanged", - StatusCode::GoodEdited_DominantValueChanged_DependentValueChanged => "GoodEdited_DominantValueChanged_DependentValueChanged", + StatusCode::GoodEdited_DominantValueChanged_DependentValueChanged => { + "GoodEdited_DominantValueChanged_DependentValueChanged" + } StatusCode::UncertainReferenceOutOfServer => "UncertainReferenceOutOfServer", - StatusCode::UncertainNoCommunicationLastUsableValue => "UncertainNoCommunicationLastUsableValue", + StatusCode::UncertainNoCommunicationLastUsableValue => { + "UncertainNoCommunicationLastUsableValue" + } StatusCode::UncertainLastUsableValue => "UncertainLastUsableValue", StatusCode::UncertainSubstituteValue => "UncertainSubstituteValue", StatusCode::UncertainInitialValue => "UncertainInitialValue", @@ -362,7 +365,9 @@ impl StatusCode { StatusCode::BadCertificateIssuerUseNotAllowed => "BadCertificateIssuerUseNotAllowed", StatusCode::BadCertificateUntrusted => "BadCertificateUntrusted", StatusCode::BadCertificateRevocationUnknown => "BadCertificateRevocationUnknown", - StatusCode::BadCertificateIssuerRevocationUnknown => "BadCertificateIssuerRevocationUnknown", + StatusCode::BadCertificateIssuerRevocationUnknown => { + "BadCertificateIssuerRevocationUnknown" + } StatusCode::BadCertificateRevoked => "BadCertificateRevoked", StatusCode::BadCertificateIssuerRevoked => "BadCertificateIssuerRevoked", StatusCode::BadUserAccessDenied => "BadUserAccessDenied", @@ -542,9 +547,15 @@ impl StatusCode { StatusCode::BadEdited_OutOfRange => "BadEdited_OutOfRange", StatusCode::BadInitialValue_OutOfRange => "BadInitialValue_OutOfRange", StatusCode::BadOutOfRange_DominantValueChanged => "BadOutOfRange_DominantValueChanged", - StatusCode::BadEdited_OutOfRange_DominantValueChanged => "BadEdited_OutOfRange_DominantValueChanged", - StatusCode::BadOutOfRange_DominantValueChanged_DependentValueChanged => "BadOutOfRange_DominantValueChanged_DependentValueChanged", - StatusCode::BadEdited_OutOfRange_DominantValueChanged_DependentValueChanged => "BadEdited_OutOfRange_DominantValueChanged_DependentValueChanged", + StatusCode::BadEdited_OutOfRange_DominantValueChanged => { + "BadEdited_OutOfRange_DominantValueChanged" + } + StatusCode::BadOutOfRange_DominantValueChanged_DependentValueChanged => { + "BadOutOfRange_DominantValueChanged_DependentValueChanged" + } + StatusCode::BadEdited_OutOfRange_DominantValueChanged_DependentValueChanged => { + "BadEdited_OutOfRange_DominantValueChanged_DependentValueChanged" + } _ => "Unrecognized status code", } } @@ -808,7 +819,6 @@ impl StatusCode { } } - impl FromStr for StatusCode { type Err = (); @@ -835,14 +845,20 @@ impl FromStr for StatusCode { "GoodDependentValueChanged" => Ok(StatusCode::GoodDependentValueChanged), "GoodEdited_DependentValueChanged" => Ok(StatusCode::GoodEdited_DependentValueChanged), "GoodEdited_DominantValueChanged" => Ok(StatusCode::GoodEdited_DominantValueChanged), - "GoodEdited_DominantValueChanged_DependentValueChanged" => Ok(StatusCode::GoodEdited_DominantValueChanged_DependentValueChanged), + "GoodEdited_DominantValueChanged_DependentValueChanged" => { + Ok(StatusCode::GoodEdited_DominantValueChanged_DependentValueChanged) + } "UncertainReferenceOutOfServer" => Ok(StatusCode::UncertainReferenceOutOfServer), - "UncertainNoCommunicationLastUsableValue" => Ok(StatusCode::UncertainNoCommunicationLastUsableValue), + "UncertainNoCommunicationLastUsableValue" => { + Ok(StatusCode::UncertainNoCommunicationLastUsableValue) + } "UncertainLastUsableValue" => Ok(StatusCode::UncertainLastUsableValue), "UncertainSubstituteValue" => Ok(StatusCode::UncertainSubstituteValue), "UncertainInitialValue" => Ok(StatusCode::UncertainInitialValue), "UncertainSensorNotAccurate" => Ok(StatusCode::UncertainSensorNotAccurate), - "UncertainEngineeringUnitsExceeded" => Ok(StatusCode::UncertainEngineeringUnitsExceeded), + "UncertainEngineeringUnitsExceeded" => { + Ok(StatusCode::UncertainEngineeringUnitsExceeded) + } "UncertainSubNormal" => Ok(StatusCode::UncertainSubNormal), "UncertainDataSubNormal" => Ok(StatusCode::UncertainDataSubNormal), "UncertainReferenceNotDeleted" => Ok(StatusCode::UncertainReferenceNotDeleted), @@ -873,10 +889,14 @@ impl FromStr for StatusCode { "BadCertificateHostNameInvalid" => Ok(StatusCode::BadCertificateHostNameInvalid), "BadCertificateUriInvalid" => Ok(StatusCode::BadCertificateUriInvalid), "BadCertificateUseNotAllowed" => Ok(StatusCode::BadCertificateUseNotAllowed), - "BadCertificateIssuerUseNotAllowed" => Ok(StatusCode::BadCertificateIssuerUseNotAllowed), + "BadCertificateIssuerUseNotAllowed" => { + Ok(StatusCode::BadCertificateIssuerUseNotAllowed) + } "BadCertificateUntrusted" => Ok(StatusCode::BadCertificateUntrusted), "BadCertificateRevocationUnknown" => Ok(StatusCode::BadCertificateRevocationUnknown), - "BadCertificateIssuerRevocationUnknown" => Ok(StatusCode::BadCertificateIssuerRevocationUnknown), + "BadCertificateIssuerRevocationUnknown" => { + Ok(StatusCode::BadCertificateIssuerRevocationUnknown) + } "BadCertificateRevoked" => Ok(StatusCode::BadCertificateRevoked), "BadCertificateIssuerRevoked" => Ok(StatusCode::BadCertificateIssuerRevoked), "BadUserAccessDenied" => Ok(StatusCode::BadUserAccessDenied), @@ -911,7 +931,9 @@ impl FromStr for StatusCode { "BadMonitoringModeInvalid" => Ok(StatusCode::BadMonitoringModeInvalid), "BadMonitoredItemIdInvalid" => Ok(StatusCode::BadMonitoredItemIdInvalid), "BadMonitoredItemFilterInvalid" => Ok(StatusCode::BadMonitoredItemFilterInvalid), - "BadMonitoredItemFilterUnsupported" => Ok(StatusCode::BadMonitoredItemFilterUnsupported), + "BadMonitoredItemFilterUnsupported" => { + Ok(StatusCode::BadMonitoredItemFilterUnsupported) + } "BadFilterNotAllowed" => Ok(StatusCode::BadFilterNotAllowed), "BadStructureMissing" => Ok(StatusCode::BadStructureMissing), "BadEventFilterInvalid" => Ok(StatusCode::BadEventFilterInvalid), @@ -1028,7 +1050,9 @@ impl FromStr for StatusCode { "BadDialogNotActive" => Ok(StatusCode::BadDialogNotActive), "BadDialogResponseInvalid" => Ok(StatusCode::BadDialogResponseInvalid), "BadConditionBranchAlreadyAcked" => Ok(StatusCode::BadConditionBranchAlreadyAcked), - "BadConditionBranchAlreadyConfirmed" => Ok(StatusCode::BadConditionBranchAlreadyConfirmed), + "BadConditionBranchAlreadyConfirmed" => { + Ok(StatusCode::BadConditionBranchAlreadyConfirmed) + } "BadConditionAlreadyShelved" => Ok(StatusCode::BadConditionAlreadyShelved), "BadConditionNotShelved" => Ok(StatusCode::BadConditionNotShelved), "BadShelvingTimeOutOfRange" => Ok(StatusCode::BadShelvingTimeOutOfRange), @@ -1037,7 +1061,9 @@ impl FromStr for StatusCode { "BadAggregateInvalidInputs" => Ok(StatusCode::BadAggregateInvalidInputs), "BadBoundNotFound" => Ok(StatusCode::BadBoundNotFound), "BadBoundNotSupported" => Ok(StatusCode::BadBoundNotSupported), - "BadAggregateConfigurationRejected" => Ok(StatusCode::BadAggregateConfigurationRejected), + "BadAggregateConfigurationRejected" => { + Ok(StatusCode::BadAggregateConfigurationRejected) + } "BadTooManyMonitoredItems" => Ok(StatusCode::BadTooManyMonitoredItems), "BadDominantValueChanged" => Ok(StatusCode::BadDominantValueChanged), "BadDependentValueChanged" => Ok(StatusCode::BadDependentValueChanged), @@ -1055,12 +1081,19 @@ impl FromStr for StatusCode { "BadAlreadyExists" => Ok(StatusCode::BadAlreadyExists), "BadEdited_OutOfRange" => Ok(StatusCode::BadEdited_OutOfRange), "BadInitialValue_OutOfRange" => Ok(StatusCode::BadInitialValue_OutOfRange), - "BadOutOfRange_DominantValueChanged" => Ok(StatusCode::BadOutOfRange_DominantValueChanged), - "BadEdited_OutOfRange_DominantValueChanged" => Ok(StatusCode::BadEdited_OutOfRange_DominantValueChanged), - "BadOutOfRange_DominantValueChanged_DependentValueChanged" => Ok(StatusCode::BadOutOfRange_DominantValueChanged_DependentValueChanged), - "BadEdited_OutOfRange_DominantValueChanged_DependentValueChanged" => Ok(StatusCode::BadEdited_OutOfRange_DominantValueChanged_DependentValueChanged), - _ => Err(()) + "BadOutOfRange_DominantValueChanged" => { + Ok(StatusCode::BadOutOfRange_DominantValueChanged) + } + "BadEdited_OutOfRange_DominantValueChanged" => { + Ok(StatusCode::BadEdited_OutOfRange_DominantValueChanged) + } + "BadOutOfRange_DominantValueChanged_DependentValueChanged" => { + Ok(StatusCode::BadOutOfRange_DominantValueChanged_DependentValueChanged) + } + "BadEdited_OutOfRange_DominantValueChanged_DependentValueChanged" => { + Ok(StatusCode::BadEdited_OutOfRange_DominantValueChanged_DependentValueChanged) + } + _ => Err(()), } } } - diff --git a/types/src/string.rs b/types/src/string.rs index 15db321ea..375dffef7 100644 --- a/types/src/string.rs +++ b/types/src/string.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! Contains the implementation of `UAString`. diff --git a/types/src/variant.rs b/types/src/variant.rs index a314086a0..ffc6cb670 100644 --- a/types/src/variant.rs +++ b/types/src/variant.rs @@ -1,6 +1,6 @@ // OPCUA for Rust // SPDX-License-Identifier: MPL-2.0 -// Copyright (C) 2017-2020 Adam Lock +// Copyright (C) 2017-2022 Adam Lock //! Contains the implementation of `Variant`. @@ -718,10 +718,11 @@ impl BinaryEncoder for Variant { let array_length = i32::decode(stream, decoding_options)?; // null array of type if array_length == -1 { - return Ok(Variant::Array(Box::new(Array{ + return Ok(Variant::Array(Box::new(Array { value_type: VariantTypeId::from_encoding_mask(element_encoding_mask), values: Vec::new(), - dimensions: Vec::new()}))) + dimensions: Vec::new(), + }))); } if array_length <= 0 { error!("Invalid array_length {}", array_length);