13 lines
202 B
Markdown
13 lines
202 B
Markdown
|
% Advanced Lifetimes
|
||
|
|
||
|
Lifetimes are the breakout feature of Rust.
|
||
|
|
||
|
# Safe Rust
|
||
|
|
||
|
* no aliasing of &mut
|
||
|
|
||
|
# Unsafe Rust
|
||
|
|
||
|
* Splitting lifetimes into disjoint regions
|
||
|
* Creating lifetimes from raw pointers
|
||
|
*
|