- [The Rust Programming Language] (http://killercup.github.io/trpl-ebook/)
- [Rust for C++ programmers] (http://alvalea.gitbooks.io/rust-for-cpp/content/index.html)
- [The Advanced Rust Programming Language] (http://cglab.ca/~abeinges/blah/turpl/_book/)
- [Rust for Rubyists] (http://www.rustforrubyists.com/book/index.html)
- [Abstraction without overhead: traits in Rust] (http://blog.rust-lang.org/2015/05/11/traits.html)
- [Lifetime in Rust Book] (https://doc.rust-lang.org/book/lifetimes.html)
- [Understanding Pointers, Ownership, and Lifetimes in Rust] (http://paulkoerbitz.de/posts/Understanding-Pointers-Ownership-and-Lifetimes-in-Rust.html)
- http://alvalea.gitbooks.io/rust-for-cpp/content/lifetimes.html
- [Understanding Lifetime in Rust – Part I] (https://mobiarch.wordpress.com/2015/06/29/understanding-lifetime-in-rust-part-i/)
- [Understanding Lifetime in Rust – Part II] (https://mobiarch.wordpress.com/2015/07/08/understanding-lifetime-in-rust-part-ii-3/)
- [Object Safety] (http://huonw.github.io/blog/2015/01/object-safety/)
- [Where Self Meets Sized: Revisiting Object Safety] (http://huonw.github.io/blog/2015/05/where-self-meets-sized-revisiting-object-safety/)
- [The Sized Trait] (http://huonw.github.io/blog/2015/01/the-sized-trait/)
- [Foreign Function Interface - Rust Book] (https://doc.rust-lang.org/book/ffi.html)
- [C types in Rust] (http://doc.rust-lang.org/1.0.0-beta.2/libc/types/os/arch/c95/)
- [Rust FFI C string handling] (http://stackoverflow.com/questions/24145823/rust-ffi-c-string-handling)
- [How do I get a *mut c_char from a Str?] (http://stackoverflow.com/questions/28094636/how-do-i-get-a-mut-c-char-from-a-str)
- [Rust Once, Run Everywhere] (http://blog.rust-lang.org/2015/04/24/Rust-Once-Run-Everywhere.html)
- [FFI in Rust - writing bindings for libcpuid] (http://siciarz.net/ffi-rust-writing-bindings-libcpuid/)
- [24 days of Rust - calling Rust from other languages] (http://siciarz.net/24-days-of-rust-calling-rust-from-other-languages/)
- A Pythonist getting Rusty these days... [Part 1] (http://wafflespeanut.github.io/blog/2015/07/05/a-pythonist-getting-rusty-these-days-dot/), [Part 2] (http://wafflespeanut.github.io/blog/2015/07/08/a-pythonist-getting-rusty-these-days-dot-dot-dot-part-2/)
- [Effectively Using Iterators In Rust] (http://hermanradtke.com/2015/06/22/effectively-using-iterators-in-rust.html)
- [A Journey into Iterators] (http://hoverbear.org/2015/05/02/a-journey-into-iterators/)
- [How can I zip more than two iterators?] (http://stackoverflow.com/questions/29669287/how-can-i-zip-more-than-two-iterators)
- [Correct way to return an Iterator?] (http://stackoverflow.com/questions/27535289/correct-way-to-return-an-iterator)
- [Destructuring and Pattern Matching] (http://pzol.github.io/getting_rusty/posts/20140417_destructuring_in_rust/)
- [Mixing matching, mutation, and moves in Rust] (http://blog.rust-lang.org/2015/04/17/Enums-match-mutation-and-moves.html)
- [Rust error stacktraces] (http://phildawes.net/blog/2015/06/17/rust-stacktrace/)
- [Practicality With Rust: Error Handling] (http://www.hydrocodedesign.com/2014/05/28/practicality-with-rust-error-handling/)
- [Build Script Support - Cargo Documentation] (http://doc.crates.io/build-script.html)
- [gcc-rs] (https://github.com/alexcrichton/gcc-rs)
- [llvm-sys.rs/build.rs] (https://github.com/tari/llvm-sys.rs/blob/master/build.rs)
- [Virtual Structs Part 1: Where Rust’s Enum Shines] (http://smallcultfollowing.com/babysteps/blog/2015/05/05/where-rusts-enum-shines/)
- [Modeling Graphs in Rust Using Vector Indices] (http://smallcultfollowing.com/babysteps/blog/2015/04/06/modeling-graphs-in-rust-using-vector-indices/)
- [String vs &str in Rust functions] (http://hermanradtke.com/2015/05/03/string-vs-str-in-rust-functions.html)
- [Creating a Rust function that accepts String or &str] (http://hermanradtke.com/2015/05/06/creating-a-rust-function-that-accepts-string-or-str.html)
- [Creating a Rust function that returns a &str or String] (http://hermanradtke.com/2015/05/29/creating-a-rust-function-that-returns-string-or-str.html)
- [Learning Rust With Entirely Too Many Linked Lists] (http://cglab.ca/~abeinges/blah/too-many-lists/book/)
- [Rust's Built-in Traits, the When, How & Why] (https://llogiq.github.io/2015/07/30/traits.html)
- [Strategies for solving 'cannot move out of' borrowing errors in Rust] (http://hermanradtke.com/2015/06/09/strategies-for-solving-cannot-move-out-of-borrowing-errors-in-rust.html)
- [API Documentation] (http://rustdoc.s3-website-us-east-1.amazonaws.com/mio/v0.4.x/mio/index.html)
- [mio book] (https://wycats.gitbooks.io/mio-book/content/)
- [Getting Acquainted with MIO] (http://hoverbear.org/2015/03/03/getting-acquainted-with-mio/)
- [mio source code] (https://github.com/carllerche/mio)
- [Creating A Multi-echo Server using Rust and mio] (http://hermanradtke.com/2015/07/22/creating-a-multi-echo-server-using-rust-and-mio.html)
- [Accumulating echo server using Rust's mio] (https://github.com/hjr3/mob/tree/protocol-blog-post)
- [Awesome Rust] (https://github.com/kud1ing/awesome-rust)
- [Rust in Detail: Writing Scalable Chat Service from Scratch] (http://nbaksalyar.github.io/2015/07/10/writing-chat-in-rust.html)
- [Building an iOS App in Rust, Part 1: Getting Started with Rust] (https://www.bignerdranch.com/blog/building-an-ios-app-in-rust-part-1/)
- [Creating A Multi-echo Server using Rust and mio] (http://hermanradtke.com/2015/07/22/creating-a-multi-echo-server-using-rust-and-mio.html)
- [Parallelization in Rust with fork-join and friends] (http://publications.lib.chalmers.se/records/fulltext/219016/219016.pdf)
- [Blog: Profiling Rust applications] (https://llogiq.github.io/2015/07/15/profiling.html) ([comments] (https://www.reddit.com/r/rust/comments/3dcquc/blog_profiling_rust_applications/))