enum

Wasmer::ExternKind

Inherits Enum / Comparable / Value / Object

Represents the kind of an Extern

Constants

Func = 0_u8
Global = 1_u8
Table = 2_u8
Memory = 3_u8

Instance methods

func?

Returns true if this enum value equals Func

Source
global?

Returns true if this enum value equals Global

Source
memory?

Returns true if this enum value equals Memory

Source
table?

Returns true if this enum value equals Table

Source
to_s(io : IO)

Appends a String representation of this enum member to the given io.

See also: to_s.

Source