// some simple string concatenation methods let mut a = String::from("str"); let b = String::from("my str"); a.push_str(b.as_str()); println!("{}", a);