This website requires JavaScript.
Explore
Help
Register
Sign In
mikros
/
rust
Watch
1
Star
0
Fork
0
You've already forked rust
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
987a8687db
rust
/
SUMMARY.md
Alexis Beingessner
987a8687db
split out and rework drop flags section
2015-07-07 09:33:20 -07:00
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
Drop Flags
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