kFYatek
Resultados
1
preguntas formuladas por
kFYatek
¿Por qué Rust no admite la actualización de objetos de rasgos?
0
respuestas
85
votos
22.1k
vistas
Dado este código: trait Base { fn a(&self); fn b(&self); fn c(&self); fn d(&self); } trait Derived : Base { fn e(&self); fn f(&self); fn g(&self); } struct S; impl