small-db 0.4.0

A small database writing in rust, inspired from mit 6.830
Documentation
1
2
3
4
5
6
7
8
9
10
11
# Rust Guidelines

## Naming Conventions

For a given struct like `page` with type `Page`, the following rules apply:

- `page` is the struct or a reference to the struct.

- `page_rc` is a reference to the struct, with the `Rc` wrapper. With type `<Arc<RwLock<Page>>>`.

## Borrow & BorrowMut Safety