Class: Wasmtime::Component::Result
- Inherits:
-
Object
- Object
- Wasmtime::Component::Result
- Defined in:
- lib/wasmtime/component.rb
Overview
Represents a component model’s result<O, E> type.
Defined Under Namespace
Classes: UncheckedResult
Class Method Summary collapse
-
.error(error) ⇒ Result
Construct an error result.
-
.ok(ok) ⇒ Result
Construct an ok result.
Instance Method Summary collapse
- #==(other) ⇒ Object
- #eql?(other) ⇒ Boolean
-
#error ⇒ Object
Returns the error value of this Result if it is #error?, otherwise raises.
-
#error? ⇒ Boolean
Whether the result is an error.
- #hash ⇒ Object
-
#ok ⇒ Object
Returns the ok value of this Result if it is #ok?, otherwise raises.
-
#ok? ⇒ Boolean
Whether the result is ok.
Class Method Details
.error(error) ⇒ Result
Construct an error result.
19 20 21 |
# File 'lib/wasmtime/component.rb', line 19 def error(error) new(false, error) end |
.ok(ok) ⇒ Result
Construct an ok result.
12 13 14 |
# File 'lib/wasmtime/component.rb', line 12 def ok(ok) new(true, ok) end |
Instance Method Details
#==(other) ⇒ Object
[View source]
54 55 56 |
# File 'lib/wasmtime/component.rb', line 54 def ==(other) eql?(other) end |
#eql?(other) ⇒ Boolean
58 59 60 61 62 63 64 65 66 67 |
# File 'lib/wasmtime/component.rb', line 58 def eql?(other) return false unless self.class == other.class return false unless ok? == other.ok? if ok? ok == other.ok else error == other.error end end |
#error ⇒ Object
Returns the error value of this Result if it is #error?, otherwise raises.
38 39 40 41 42 |
# File 'lib/wasmtime/component.rb', line 38 def error raise UncheckedResult, "expected error, was ok" unless error? @value end |
#error? ⇒ Boolean
Returns Whether the result is an error.
50 51 52 |
# File 'lib/wasmtime/component.rb', line 50 def error? !@ok end |
#hash ⇒ Object
[View source]
69 70 71 |
# File 'lib/wasmtime/component.rb', line 69 def hash [self.class, @ok, @value].hash end |
#ok ⇒ Object
Returns the ok value of this Result if it is #ok?, otherwise raises.
29 30 31 32 33 |
# File 'lib/wasmtime/component.rb', line 29 def ok raise UncheckedResult, "expected ok, was error" unless ok? @value end |
#ok? ⇒ Boolean
Returns Whether the result is ok.
45 46 47 |
# File 'lib/wasmtime/component.rb', line 45 def ok? @ok end |