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>, }