feat(encoders) Implement ToString instead of From<…> for String.

This commit is contained in:
Ivan Enderlin
2020-02-13 14:19:31 +01:00
parent 276478d1ed
commit ed06fc0482
2 changed files with 124 additions and 127 deletions

View File

@ -192,7 +192,7 @@ where
let executable_instructions = instructions
.iter()
.map(|instruction| {
let instruction_name: String = instruction.into();
let instruction_name = instruction.to_string();
match instruction {
Instruction::ArgumentGet { index } => {