Class: Wasmtime::Component::Variant
- Inherits:
-
Object
- Object
- Wasmtime::Component::Variant
- Defined in:
- lib/wasmtime/component.rb
Overview
Represents a value for component model’s variant case. A variant case has a name that uniquely identify the case within the variant and optionally a value.
Instance Attribute Summary collapse
-
#name ⇒ String
readonly
The name of the variant case.
-
#value ⇒ Object
readonly
The optional payload of the variant case.
Instance Method Summary collapse
- #==(other) ⇒ Object
- #eql?(other) ⇒ Boolean
- #hash ⇒ Object
-
#initialize(name, value = nil) ⇒ Variant
constructor
A new instance of Variant.
Constructor Details
#initialize(name, value = nil) ⇒ Variant
Returns a new instance of Variant.
111 112 113 114 |
# File 'lib/wasmtime/component.rb', line 111 def initialize(name, value = nil) @name = name @value = value end |
Instance Attribute Details
#name ⇒ String (readonly)
The name of the variant case
103 104 105 |
# File 'lib/wasmtime/component.rb', line 103 def name @name end |
#value ⇒ Object (readonly)
The optional payload of the variant case
107 108 109 |
# File 'lib/wasmtime/component.rb', line 107 def value @value end |
Instance Method Details
#==(other) ⇒ Object
[View source]
116 117 118 |
# File 'lib/wasmtime/component.rb', line 116 def ==(other) eql?(other) end |
#eql?(other) ⇒ Boolean
120 121 122 123 124 |
# File 'lib/wasmtime/component.rb', line 120 def eql?(other) self.class == other.class && name == other.name && value == other.value end |
#hash ⇒ Object
[View source]
126 127 128 |
# File 'lib/wasmtime/component.rb', line 126 def hash [self.class, @name, @value].hash end |