+2
src/reftable/fsck.rs
+2
src/reftable/fsck.rs
+1
src/reftable/mod.rs
+1
src/reftable/mod.rs
+14
src/reftable/reftable_table.rs
+14
src/reftable/reftable_table.rs
···
1
+
pub struct ReftableTable {
2
+
pub name: String,
3
+
pub source: ReftableBlockSource,
4
+
pub size: u64,
5
+
pub hash_id: ReftableHash,
6
+
pub block_size: u32,
7
+
pub min_update_index: u64,
8
+
pub max_update_index: u64,
9
+
pub object_id_len: i32, // TODO: is this the right integer size? (originally was int)
10
+
pub version: i32, // TODO: is this the right integer size? (originally was int)
11
+
pub ref_offsets: ReftableTableOffsets,
12
+
pub obj_offsets: ReftableTableOffsets,
13
+
pub log_offsets: ReftableTableOffsets,
14
+
}
History
2 rounds
0 comments
freshlybakedca.ke
submitted
#1
2 commits
expand
collapse
feat: function signatures
feat: start converting reftable-table.h
There's not much here, but this prompted some nice conversation with
Coded on approach so I'm still pushing up...
failed to check merge status: xrpc request failed
expand 0 comments
freshlybakedca.ke
submitted
#0
1 commit
expand
collapse
feat: function signatures