]> git.proxmox.com Git - rustc.git/blob - src/doc/nomicon/src/SUMMARY.md
New upstream version 1.19.0+dfsg1
[rustc.git] / src / doc / nomicon / src / SUMMARY.md
1 # Summary
2
3 [Introduction](README.md)
4
5 * [Meet Safe and Unsafe](meet-safe-and-unsafe.md)
6 * [How Safe and Unsafe Interact](safe-unsafe-meaning.md)
7 * [Working with Unsafe](working-with-unsafe.md)
8 * [Data Layout](data.md)
9 * [repr(Rust)](repr-rust.md)
10 * [Exotically Sized Types](exotic-sizes.md)
11 * [Other reprs](other-reprs.md)
12 * [Ownership](ownership.md)
13 * [References](references.md)
14 * [Lifetimes](lifetimes.md)
15 * [Limits of Lifetimes](lifetime-mismatch.md)
16 * [Lifetime Elision](lifetime-elision.md)
17 * [Unbounded Lifetimes](unbounded-lifetimes.md)
18 * [Higher-Rank Trait Bounds](hrtb.md)
19 * [Subtyping and Variance](subtyping.md)
20 * [Drop Check](dropck.md)
21 * [PhantomData](phantom-data.md)
22 * [Splitting Borrows](borrow-splitting.md)
23 * [Type Conversions](conversions.md)
24 * [Coercions](coercions.md)
25 * [The Dot Operator](dot-operator.md)
26 * [Casts](casts.md)
27 * [Transmutes](transmutes.md)
28 * [Uninitialized Memory](uninitialized.md)
29 * [Checked](checked-uninit.md)
30 * [Drop Flags](drop-flags.md)
31 * [Unchecked](unchecked-uninit.md)
32 * [Ownership Based Resource Management](obrm.md)
33 * [Constructors](constructors.md)
34 * [Destructors](destructors.md)
35 * [Leaking](leaking.md)
36 * [Unwinding](unwinding.md)
37 * [Exception Safety](exception-safety.md)
38 * [Poisoning](poisoning.md)
39 * [Concurrency](concurrency.md)
40 * [Races](races.md)
41 * [Send and Sync](send-and-sync.md)
42 * [Atomics](atomics.md)
43 * [Implementing Vec](vec.md)
44 * [Layout](vec-layout.md)
45 * [Allocating](vec-alloc.md)
46 * [Push and Pop](vec-push-pop.md)
47 * [Deallocating](vec-dealloc.md)
48 * [Deref](vec-deref.md)
49 * [Insert and Remove](vec-insert-remove.md)
50 * [IntoIter](vec-into-iter.md)
51 * [RawVec](vec-raw.md)
52 * [Drain](vec-drain.md)
53 * [Handling Zero-Sized Types](vec-zsts.md)
54 * [Final Code](vec-final.md)
55 * [Implementing Arc and Mutex](arc-and-mutex.md)
56 * [FFI](ffi.md)