pub enum UANode {
Object(UAObject),
Variable(UAVariable),
Method(UAMethod),
View(UAView),
ObjectType(UAObjectType),
VariableType(UAVariableType),
DataType(UADataType),
ReferenceType(UAReferenceType),
}Expand description
A NodeSet2 node.
Variants§
Object(UAObject)
Object
Variable(UAVariable)
Variable, can have value.
Method(UAMethod)
Method.
View(UAView)
View
ObjectType(UAObjectType)
Object type.
VariableType(UAVariableType)
Variable type, can have value.
DataType(UADataType)
Data type
ReferenceType(UAReferenceType)
Reference type.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for UANode
impl RefUnwindSafe for UANode
impl Send for UANode
impl Sync for UANode
impl Unpin for UANode
impl UnwindSafe for UANode
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more