I have tried using the to_string method on the char but this returns a &str when I need a String.
to_string
&str
String
Using String::push method is the easiest method:
let mut str = String::from("Hello World"); str.push('!');