mirror of
https://github.com/fluencelabs/interface-types
synced 2025-06-25 04:31:36 +00:00
feat(encoders) Implement ToString
instead of From<…> for String
.
This commit is contained in:
@ -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 } => {
|
||||
|
Reference in New Issue
Block a user