The Dark Arts of Advanced and Unsafe Rust Programming
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.
Go to file
Alexis Beingessner 70ab1bf88a
fix definition
8 years ago
.gitignore blurp 8 years ago
FiraSans-Medium.woff rustbook support 8 years ago
FiraSans-Regular.woff rustbook support 8 years ago
Heuristica-Italic.woff rustbook support 8 years ago
LICENSE-APACHE first commit 8 years ago
LICENSE-MIT first commit 8 years ago
README.md rewrite intro 8 years ago
SUMMARY.md rewrite intro 8 years ago
SourceCodePro-Regular.woff rustbook support 8 years ago
SourceCodePro-Semibold.woff rustbook support 8 years ago
SourceSerifPro-Bold.woff rustbook support 8 years ago
SourceSerifPro-Regular.woff rustbook support 8 years ago
arc-and-mutex.md new chapter for reals 8 years ago
atomics.md clarify atomics 8 years ago
casts.md SHARD ALL THE CHAPTERS 8 years ago
checked-uninit.md split out and rework drop flags section 8 years ago
coercions.md SHARD ALL THE CHAPTERS 8 years ago
concurrency.md improve joke 8 years ago
constructors.md expand on ctors 8 years ago
conversions.md SHARD ALL THE CHAPTERS 8 years ago
data.md SHARD ALL THE CHAPTERS 8 years ago
destructors.md SHARD ALL THE CHAPTERS 8 years ago
dot-operator.md SHARD ALL THE CHAPTERS 8 years ago
drop-flags.md split out and rework drop flags section 8 years ago
exotic-sizes.md void types 8 years ago
hrtb.md SHARD ALL THE CHAPTERS 8 years ago
leaking.md SHARD ALL THE CHAPTERS 8 years ago
lifetime-elision.md SHARD ALL THE CHAPTERS 8 years ago
lifetime-misc.md SHARD ALL THE CHAPTERS 8 years ago
lifetime-mismatch.md SHARD ALL THE CHAPTERS 8 years ago
lifetimes.md SHARD ALL THE CHAPTERS 8 years ago
meet-safe-and-unsafe.md rewrite intro 8 years ago
other-reprs.md SHARD ALL THE CHAPTERS 8 years ago
ownership.md SHARD ALL THE CHAPTERS 8 years ago
races.md shard out concurrency 8 years ago
raii.md SHARD ALL THE CHAPTERS 8 years ago
references.md fix definition 8 years ago
repr-rust.md SHARD ALL THE CHAPTERS 8 years ago
rust.css rustbook support 8 years ago
safe-unsafe-meaning.md fix 8 years ago
send-and-sync.md shard out concurrency 8 years ago
subtyping.md cleanup 8 years ago
transmutes.md SHARD ALL THE CHAPTERS 8 years ago
unbounded-lifetimes.md SHARD ALL THE CHAPTERS 8 years ago
unchecked-uninit.md SHARD ALL THE CHAPTERS 8 years ago
uninitialized.md SHARD ALL THE CHAPTERS 8 years ago
unwinding.md cleanup 8 years ago
vec-alloc.md SHARD ALL THE CHAPTERS 8 years ago
vec-dealloc.md SHARD ALL THE CHAPTERS 8 years ago
vec-deref.md SHARD ALL THE CHAPTERS 8 years ago
vec-drain.md SHARD ALL THE CHAPTERS 8 years ago
vec-final.md SHARD ALL THE CHAPTERS 8 years ago
vec-insert-remove.md SHARD ALL THE CHAPTERS 8 years ago
vec-into-iter.md SHARD ALL THE CHAPTERS 8 years ago
vec-layout.md SHARD ALL THE CHAPTERS 8 years ago
vec-push-pop.md SHARD ALL THE CHAPTERS 8 years ago
vec.md SHARD ALL THE CHAPTERS 8 years ago
working-with-unsafe.md fix definition 8 years ago

README.md

% The Advanced Rust Programming Language

NOTE: This is a draft document, and may contain serious errors

So you've played around with Rust a bit. You've written a few simple programs and you think you grok the basics. Maybe you've even read through The Rust Programming Language. Now you want to get neck-deep in all the nitty-gritty details of the language. You want to know those weird corner-cases. You want to know what the heck unsafe really means, and how to properly use it. This is the book for you.

To be clear, this book goes into serious detail. We're going to dig into exception-safety and pointer aliasing. We're going to talk about memory models. We're even going to do some type-theory. This is stuff that you absolutely don't need to know to write fast and safe Rust programs. You could probably close this book right now and still have a productive and happy career in Rust.

However if you intend to write unsafe code -- or just really want to dig into the guts of the language -- this book contains invaluable information.

Unlike The Rust Programming Language we will be assuming considerable prior knowledge. In particular, you should be comfortable with:

Due to the nature of advanced Rust programming, we will be spending a lot of time talking about safety and guarantees. In particular, a significant portion of the book will be dedicated to correctly writing and understanding Unsafe Rust.