pub struct Variable {
pub ty: VariableSourceType,
pub index: u32,
pub storage: i64,
}Expand description
Variables exist within functions at Medium Level IL or higher.
As such, they are to be used within the context of a Function.
See Function::variable_name as an example of how to interact with variables.
Fields§
§ty: VariableSourceType§index: u32§storage: i64