by Jim Blandy, Jason Orendorff
ISBN: 1491927283
Buy on Amazon
Found in 9 comments on Hacker News
sn9 · 2023-07-11 · Original thread
There's a bit of network programming in Programming Rust. You can check the table of contents to see if it's what you're looking for.

https://www.amazon.com/Programming-Rust-Fast-Systems-Develop...

Boulth · 2020-05-22 · Original thread
Yep. Although in my opinion Programming Rust [0] is better even though dated. The word goes that the 2nd edition will be out by the end of the year.

[0]: https://www.amazon.com/Programming-Rust-Fast-Systems-Develop...

tracker1 · 2019-05-31 · Original thread
Somewhat agreed... If I hadn't started with the O'Reily book[1], would probably order. If the eBook were half the price, would get it anyway.

Edit: looks like it's a few bucks less on Amazon

[1] https://www.amazon.com/Programming-Rust-Fast-Systems-Develop... [2] https://www.amazon.com/Rust-Programming-Language-Steve-Klabn...

manaskarekar · 2019-02-10 · Original thread
>the borrowing/ownership semantics of rust (at the time I looked at it) felt needlessly over complicated.

Taking a wild guess here, but it sounds like you maybe referring to issues addressed by Non-Lexical Lifetimes (NLL)?

Reference: https://github.com/rust-lang/rfcs/blob/master/text/2094-nll....

NLL are a part of Rust 2018 Edition.

Three complementary books are the best resources:

- The Official book: https://doc.rust-lang.org/book/

- The Rust By Example book : https://doc.rust-lang.org/rust-by-example/

- Programming Rust (O'Reilly) : https://www.amazon.com/Programming-Rust-Fast-Systems-Develop...

AlexeyBrin · 2018-03-15 · Original thread
There are two books with similar titles and I'm under the impression that you don't talk about the one the OP had in mind:

https://www.amazon.com/Rust-Programming-Language-Steve-Klabn...

https://www.amazon.com/Programming-Rust-Fast-Systems-Develop...

I think both are good books, I already have the second one and preordered the first.

gcp · 2017-02-06 · Original thread
There's several external books. I started from this one (via Safari):

https://www.amazon.com/Programming-Rust-Fast-Systems-Develop...

aturon · 2015-08-14 · Original thread
There's an O'Reilly book in the works: http://www.amazon.com/Programming-Rust-Jim-Blandy/dp/1491927...

And The Rust Programming Language (https://doc.rust-lang.org/book) is on its way to paper publication.

The newly minted Rustonomicon (https://doc.rust-lang.org/nightly/nomicon/) that covers deeper aspects of Rust is hopefully destined for the same.