Preguntas con la etiqueta [borrow-checker]
Lista
borrow-checker preguntas
¿Las referencias mutables tienen semántica de movimiento?
0
respuestas
36
votos
4.3k
vistas
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