标签: rust actix-web
有没有一种方法可以在下面的代码中返回不涉及克隆的城市?
let lines = ["Hi","Bye","Gone"]; let match = false; for(line in lines){ if(line === "Bye"){ match = true; } } console.log(match);