We can't find the internet
Attempting to reconnect
Something went wrong!
Attempting to reconnect
Raw Pointers practice problems in Rust
Difficulty:
Category:
Tag:
Showing 8 of 8
| Status | Title | Difficulty | Category | Tags |
|---|---|---|---|---|
| C strings, ownership across the boundary, and FFI-safe types | Medium | Framework |
|
|
| Pointer arithmetic: `offset`, `add`, `sub`, `wrapping_*` | Medium | Primitives |
|
|
| Provenance: a pointer is not an integer | Hard | Primitives |
|
|
| `ptr::read`, `write`, `copy`, `copy_nonoverlapping`, `drop_in_place` | Medium | Primitives |
|
|
| `&raw const` / `&raw mut`: a pointer without a reference | Medium | Primitives |
|
|
| Raw pointers: `*const T` and `*mut T` | Easy | Primitives |
|
|
| The five superpowers — and the four myths | Easy | Primitives |
|
|
| unsafe impl Send, and the disjoint-capture trap | Hard | Framework |
|