Any plan to learn Rust in 2017? This might be helpful for you

I am a Web Developer and just learning Rust. In here I tried to summarize what I learned. Hope this will be helpful for newcomers like me 🙂 GitBook can be found on https://www.gitbook.com/book/dumindu/learning-rust/details…

Similar

Rust and the JVM

This is the 7th post in the Start Rust focus series. So far, we have learned the basics of Rust syntax, developed a custom Kubernetes controller, and integrated with the front-end with Wasm. I’ve been using the JVM for two decades now, mainly in Java. The... (more…)

Read more »

Abstracting over mutability in Rust

It is common to see the statement that “Rust cannot abstract over mutability”. Indeed, many functions in the standard library have an immutable and a mutable variant, e.g. RefCell::borrow() and RefCell::borrow_mut(). However, in some cases, such as...

Read more »