oberblastmeister
Resultados
1
preguntas formuladas por
oberblastmeister
¿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