rust/lifetimes.md

13 lines
202 B
Markdown
Raw Normal View History

2015-06-08 09:41:58 -07:00
% 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
*