pub type Variable = PropertyType;
Aliased Type§
struct Variable {
pub name: String,
pub description: String,
pub data_type: DataType,
pub socket_type: SocketType,
pub mutability: Mutability,
pub extensions: Vec<Extension>,
/* private fields */
}
Fields§
§name: String
The name of the property.
description: String
Textual description of the property.
data_type: DataType
Specifies the data type of the property.
socket_type: SocketType
Specifies the type of socket - either input socket or output socket or none.
mutability: Mutability
Specifies if the property is mutable.
extensions: Vec<Extension>
Property specific extensions.