You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/lifetimes.md

13 lines
202 B

10 years ago
% 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
*