This website works better with JavaScript.
Explore
Help
Register
Sign In
rust
/
nomicon
mirror of
https://github.com/rust-lang/nomicon
Watch
1
Star
0
Fork
You've already forked nomicon
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
fd601550db
nomicon
/
SUMMARY.md
1.4 KiB
Raw
Blame
History
Summary
Meet Safe and Unsafe
What Do Safe and Unsafe Mean
Working with Unsafe
Data Layout
repr(Rust)
Exotically Sized Types
Other reprs
Ownership
References
Lifetimes
Limits of lifetimes
Lifetime Elision
Unbounded Lifetimes
Higher-Rank Trait Bounds
Subtyping and Variance
Misc
Type Conversions
Coercions
The Dot Operator
Casts
Transmutes
Uninitialized Memory
Checked
Unchecked
Ownership-Oriented Resource Management
Constructors
Destructors
Leaking
Unwinding
Concurrency
Example: Implementing Vec
Layout
Allocating
Push and Pop
Deallocating
Deref
Insert and Remove
IntoIter
Drain
Final Code