Skip to content

Commit

Permalink
doc: update internal docs
Browse files Browse the repository at this point in the history
  • Loading branch information
marvin-j97 committed May 13, 2024
1 parent cee7bc6 commit be425ff
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/tree_inner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,14 @@ use crate::{
};
use std::sync::{atomic::AtomicU64, Arc, RwLock};

#[doc(hidden)]
/// Unique tree ID
///
/// Tree IDs are monotonically increasing integers.
pub type TreeId = u64;

/// Unique memtable ID
///
/// Memtable IDs map one-to-one to some segment.
pub type MemtableId = u64;

#[derive(Default)]
Expand Down

0 comments on commit be425ff

Please sign in to comment.