rasterizeddb_core 0.0.8

A schemaless, high-performance database written in Rust, designed for speed and scalability.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[derive(Debug)]
pub struct Row {
    pub id: u64,
    pub length: u32,
    pub columns_data: Vec<u8>,
}

#[derive(Debug)]
pub struct InsertOrUpdateRow {
    pub columns_data: Vec<u8>,
}