refactoring: uniform string conversion
- Prefer using
"str".into()since it's briefer. - Preserve
"str".to_owned()if type inference can't help.
Edited by Alexey Protsenko
"str".into() since it's briefer."str".to_owned() if type inference can't help.