Trait Export

Source
pub trait Export<T> {
    // Required method
    fn export<S: Into<String>>(&mut self, name: S, index: T) -> ExportIndex;
}

Required Methods§

Source

fn export<S: Into<String>>(&mut self, name: S, index: T) -> ExportIndex

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§