We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d3d48a commit ccc80c1Copy full SHA for ccc80c1
crates/wasmi/src/error.rs
@@ -129,6 +129,7 @@ impl Error {
129
}
130
131
/// Returns `true` if the [`Error`] represents an out-of-fuel error.
132
+ #[expect(unused)] // TODO: resolve unused API - used in resumable function calling
133
pub(crate) fn is_out_of_fuel(&self) -> bool {
134
matches!(
135
self.kind(),
crates/wasmi/src/lib.rs
@@ -124,15 +124,13 @@ mod core {
124
Memory as CoreMemory,
125
MemoryType as CoreMemoryType,
126
MemoryTypeBuilder as CoreMemoryTypeBuilder,
127
- ReadAs,
128
ResourceLimiterRef,
Table as CoreTable,
TableType as CoreTableType,
Typed,
TypedVal,
UntypedError,
UntypedVal,
- WriteAs,
136
};
137
138
0 commit comments