diff --git a/src/runner/instance.rs b/src/runner/instance.rs index ac5aa6d..d17d86e 100644 --- a/src/runner/instance.rs +++ b/src/runner/instance.rs @@ -104,11 +104,11 @@ impl Instance{ Ok(instance.name.clone()) }) }); - fields.add_field_method_set("Name",|lua,this,val:String|{ - dom(lua,move|dom|{ + fields.add_field_method_set("Name",|lua,this,val:mlua::String|{ + dom(lua,|dom|{ let instance=this.get_mut(dom)?; //Why does this need to be cloned? - instance.name=val.clone(); + instance.name=val.to_str()?.to_owned(); Ok(()) }) });