Module variable

Module variable 

Source
Expand description

Variable types used for data exchange between plugins and host.

This module defines the Variable and VariableType enums that represent the data types that can be passed between plugins and the host application.

Enums§

Variable
Represents a dynamically typed value that can be passed between plugins.
VariableFloatType
Represents floating point types of various sizes.
VariableIntType
Represents integer types with size and signedness information.
VariableSignedIntType
Represents signed integer types of various sizes.
VariableType
Represents the type of a variable in the plugin system.
VariableUnsignedIntType
Represents unsigned integer types of various sizes.

Traits§

FromVariable
Trait for converting Variables to specific Rust types.