pub trait ExternFilterable<T> {
// Required methods
fn funcs(self) -> impl Iterator<Item = T>;
fn tables(self) -> impl Iterator<Item = T>;
fn mems(self) -> impl Iterator<Item = T>;
fn globals(self) -> impl Iterator<Item = T>;
}
Expand description
common convention functions defined for lists of ExternVals, ExternTypes, Exports https://webassembly.github.io/spec/core/exec/runtime.html#conventions https://webassembly.github.io/spec/core/syntax/types.html#id3 https://webassembly.github.io/spec/core/syntax/modules.html?highlight=convention#id1
Required Methods§
fn funcs(self) -> impl Iterator<Item = T>
fn tables(self) -> impl Iterator<Item = T>
fn mems(self) -> impl Iterator<Item = T>
fn globals(self) -> impl Iterator<Item = T>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.