async-opcua-types 0.19.0

OPC UA data types
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Tools for working with structs whose structure is not known at compile time,
//! using [`crate::DataTypeDefinition`] to encode and decode values.

mod custom_struct;
#[cfg(feature = "json")]
mod json;
mod type_tree;
#[cfg(feature = "xml")]
mod xml;

pub use custom_struct::{DynamicStructure, DynamicTypeLoader};
pub use type_tree::{
    DataTypeTree, DataTypeVariant, EncodingIds, EnumTypeInfo, GenericTypeInfo, ParentIds,
    ParsedStructureField, StructTypeInfo, TypeInfo, TypeInfoRef,
};