using System; namespace Wasmtime { /// /// Represents the possible kinds of WebAssembly values. /// public enum ValueKind : byte { /// /// The value is a 32-bit integer. /// Int32, /// /// The value is a 64-bit integer. /// Int64, /// /// The value is a 32-bit floating point number. /// Float32, /// /// The value is a 64-bit floating point number. /// Float64, /// /// The value is a reference. /// AnyRef = 128, /// /// The value is a function reference. /// FuncRef, } }