ToyDB: Distributed SQL Database in Rust

Distributed SQL database in Rust, written as a learning project – erikgrinaker/toydb… Read more

Similar

Boxes and Trees – Smart Pointers in Rust

Recently, I tried to implement a binary tree data structure in Rust.Each binary tree has a root value, a left, and a right subtree.I started from this Python implementation, which is quite straightforward.class Tree: def __init__(self, val, left=None, ri... (more…)

Read more »