Rust 1.45.1

Empowering everyone to build reliable and efficient software. Read more

Similar

Rust Context Manager

In Python there is a thing called a context manager. It looks like this: with open('file.txt') as f: # setup code runs here print f.read() # teardown code runs here do_other_thing(f) # error: f is not bound here Inside the indented block t... (more…)

Read more »

The Great Rewriting in Rust

The book “Writing Secure Code, 2nd Edition” written by David LeBlanc and Michael Howard, published by Microsoft Press in 2002, was once required reading at Microsoft, following Bill Gat… (more…)

Read more »