diff --git a/src/function/table.rs b/src/function/table.rs index 10e90661..300cd851 100644 --- a/src/function/table.rs +++ b/src/function/table.rs @@ -48,7 +48,7 @@ struct TableOffset { } #[derive(Default, Clone)] -pub struct Table { +pub(crate) struct Table { max_ts: u32, n_stale: usize, table: RawTable, @@ -262,7 +262,7 @@ impl Table { } /// Iterate over the live entries in the table, in insertion order. - pub fn iter( + pub(crate) fn iter( &self, include_subsumed: bool, ) -> impl Iterator + '_ {