&str → String

fn str_to_string(word: &str) -> String {
		word.chars().collect::<String>()
		// String::from(word)
}