We can't find the internet
Attempting to reconnect
Something went wrong!
Attempting to reconnect
Trait Objects practice problems in Rust
Difficulty:
Category:
Tag:
Showing 9 of 9
| Status | Title | Difficulty | Category | Tags |
|---|---|---|---|---|
| Box<dyn Trait>: trait objects, DSTs and dynamic dispatch | Medium | Primitives |
|
|
| Boxed errors and downcasting | Medium | Primitives |
|
|
| Closures 101: build a pipeline of boxed closures | Easy | Primitives |
|
|
| Dispatch through Rc: Rc<dyn Trait> and shared behaviour | Medium | Primitives |
|
|
| Dyn compatibility: the actual rules | Hard | Primitives |
|
|
| move: when the closure must own its captures | Medium | Primitives |
|
|
| Static vs dynamic dispatch, measured | Hard | End-to-End |
|
|
| Trait objects and lifetimes: Box<dyn Trait + 'a> | Hard | Primitives |
|
|
| `T: 'static` in practice — a type-erased handler registry | Hard | End-to-End |
|