Preguntas con la etiqueta [borrow-checker]

Lista borrow-checker preguntas

fn main() { let mut name = String::from("Charlie"); let x = &mut name; let y = x; // x has been moved say_hello(y); say_hello(y); // but y has not been