Git fork

feat: function signatures #2

open opened by freshlybakedca.ke targeting master from private/coded/push-mltmlnyrnvuk
Labels

None yet.

requested-reviewers

None yet.

approved

None yet.

tested-working

None yet.

rejected

None yet.

assignee

None yet.

Participants 1
AT URI
at://did:plc:k2zmz2l3hvfr44tmlhewol2j/sh.tangled.repo.pull/3m6iiv4m4fn22
+17
Diff #1
+2
src/reftable/fsck.rs
··· 1 + use crate::reftable::reftable_table::ReftableTable; 2 + 1 3 pub enum ReftableFsckError { 2 4 TableName, 3 5 MaxValue,
+1
src/reftable/mod.rs
··· 7 7 pub mod merged; 8 8 pub mod pq; 9 9 pub mod record; 10 + pub mod reftable_table; 10 11 pub mod stack; 11 12 pub mod system; 12 13 pub mod table;
+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
sign up or login to add to the discussion
2 commits
expand
feat: function signatures
feat: start converting reftable-table.h
failed to check merge status: xrpc request failed
expand 0 comments
1 commit
expand
feat: function signatures
expand 0 comments