pub type Variable = PropertyType;Aliased Type§
pub 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: StringThe name of the property.
description: StringTextual description of the property.
data_type: DataTypeSpecifies the data type of the property.
socket_type: SocketTypeSpecifies the type of socket - either input socket or output socket or none.
mutability: MutabilitySpecifies if the property is mutable.
extensions: Vec<Extension>Property specific extensions.