feat(interface-types) Remove the 'input lifetime on Instruction.

This commit is contained in:
Ivan Enderlin
2020-03-10 10:37:09 +01:00
parent 47b63bc9c6
commit 8bd3345a79
6 changed files with 12 additions and 13 deletions

View File

@ -174,8 +174,7 @@ where
}
/// Transforms a `Vec<Instruction>` into an `Interpreter`.
impl<'binary_input, Instance, Export, LocalImport, Memory, MemoryView>
TryFrom<&Vec<Instruction<'binary_input>>>
impl<Instance, Export, LocalImport, Memory, MemoryView> TryFrom<&Vec<Instruction>>
for Interpreter<Instance, Export, LocalImport, Memory, MemoryView>
where
Export: wasm::structures::Export,