Trait ExternFilterable

Source
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

Required Methods§

Source

fn funcs(self) -> impl Iterator<Item = T>

Source

fn tables(self) -> impl Iterator<Item = T>

Source

fn mems(self) -> impl Iterator<Item = T>

Source

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.

Implementors§

Source§

impl<'a, I> ExternFilterable<usize> for I
where I: Iterator<Item = &'a ExternVal>,