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

Required methods

Implementors