For questions related to Trait Objects (dynamically-dispatched objects) in Rust
Trait objects are the dynamically dispatched objects in Rust. They are unsized, so they are used behind some kind of reference (Box
, for example).
For questions related to Trait Objects (dynamically-dispatched objects) in Rust
Trait objects are the dynamically dispatched objects in Rust. They are unsized, so they are used behind some kind of reference (Box
, for example).