2022-03-29 14:02:35 +01:00
|
|
|
// move_semantics6.rs
|
2023-05-29 18:39:08 +01:00
|
|
|
//
|
2022-07-12 14:43:26 +01:00
|
|
|
// You can't change anything except adding or removing references.
|
2023-05-29 18:39:08 +01:00
|
|
|
//
|
|
|
|
// Execute `rustlings hint move_semantics6` or use the `hint` watch subcommand
|
|
|
|
// for a hint.
|
2022-03-29 14:02:35 +01:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let data = "Rust is great!".to_string();
|
|
|
|
|
2023-12-23 10:31:31 +00:00
|
|
|
get_char(&data);
|
2022-03-29 14:02:35 +01:00
|
|
|
|
2023-12-23 10:31:31 +00:00
|
|
|
string_uppercase(data);
|
2022-03-29 14:02:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Should not take ownership
|
2023-12-23 10:31:31 +00:00
|
|
|
fn get_char(data: &String) -> char {
|
2022-03-29 14:02:35 +01:00
|
|
|
data.chars().last().unwrap()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Should take ownership
|
2023-12-23 10:31:31 +00:00
|
|
|
fn string_uppercase(mut data: String) {
|
|
|
|
data = data.to_uppercase();
|
2022-03-29 14:02:35 +01:00
|
|
|
|
|
|
|
println!("{}", data);
|
|
|
|
}
|