Values.NodeSourceA general abstraction of a signal. A node can be specified as an actuator, attribute, branch, or sensor.
type nonrec t = {branch : Branch.t option;Information about a node specified as a branch. A group of signals that are defined in a hierarchical structure.
*)sensor : Sensor.t option;actuator : Actuator.t option;Information about a node specified as an actuator. An actuator is a digital representation of a vehicle device.
*)attribute : Attribute.t option;Information about a node specified as an attribute. An attribute represents static information about a vehicle.
*)struct_ : CustomStruct.t option;Represents a complex or higher-order data structure.
*)property : CustomProperty.t option;Represents a member of the complex data structure. The datatype of the property can be either primitive or another struct.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Structure of
(string
* [> `Double of Double.t
| `Enum of string
| `List of [> `String of string ] list
| `String of BranchFullyQualifiedNameString.t ])
list ])
list ]