Rust has a number of interesting aspects that I had some difficulty understanding as I was learning the language. Whether you find these things peculiar or not probably depends on which programming languages you’ve spent a good amount of time using. My background skews heavily towards garbage-collected imperative languages. Trait Objects Many statically-typed languages have the concept of a named group of methods or functions that any type can implement, interfaces in Java and Go, protocols in Objective-C and Swift, etc.
Continue reading

Rusty Buffers

Rust’s ownership system makes it easy and safe to create a zero-copy parser that takes a slice of bytes as input and outputs some structure containing references to the original input. Rust ensures that such references exist only while the underlying slice cannot be mutated. As a concrete example say we have a &[u8] containing “3foo3bar3baz4quux” and want to parse it into vec![“foo”, “bar”, “baz”, “quux”]. This is easily accomplished by defining a couple of nom parser combinators:
Continue reading

Rust and Go

A new era of statically typed, natively compiled, programming languages has arrived sweeping aside the old choice between performance and productivity while also eliminating runtime dependencies on an interpreter or VM. Two of the top contenders are Rust and Go, how does a programmer choose between them? For some applications the choice is simple. Go’s lightweight concurrency and excellent networking libraries make implementing high-performance network clients and servers a joy.
Continue reading