feat: function signatures #2

open
opened by freshlybakedca.ke targeting master from private/coded/push-mltmlnyrnvuk
Changed files
+17
src
+2
src/reftable/fsck.rs
··· 1 pub enum ReftableFsckError { 2 TableName, 3 MaxValue,
··· 1 + use crate::reftable::reftable_table::ReftableTable; 2 + 3 pub enum ReftableFsckError { 4 TableName, 5 MaxValue,
+1
src/reftable/mod.rs
··· 7 pub mod merged; 8 pub mod pq; 9 pub mod record; 10 pub mod stack; 11 pub mod system; 12 pub mod table;
··· 7 pub mod merged; 8 pub mod pq; 9 pub mod record; 10 + pub mod reftable_table; 11 pub mod stack; 12 pub mod system; 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 + }