We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
wasmtime::runtime::vm::Instance::exports
1 parent d79844a commit e9a6defCopy full SHA for e9a6def
1 file changed
crates/wasmtime/src/runtime/vm/instance.rs
@@ -715,15 +715,6 @@ impl Instance {
715
crate::Tag::from_raw(StoreInstanceId::new(store, id), def_index)
716
}
717
718
- /// Return an iterator over the exports of this instance.
719
- ///
720
- /// Specifically, it provides access to the key-value pairs, where the keys
721
- /// are export names, and the values are export declarations which can be
722
- /// resolved `lookup_by_declaration`.
723
- pub fn exports(&self) -> wasmparser::collections::index_map::Iter<'_, String, EntityIndex> {
724
- self.env_module().exports.iter()
725
- }
726
-
727
/// Grow memory by the specified amount of pages.
728
///
729
/// Returns `None` if memory can't be grown by the specified amount
0 commit comments