MCPcopy Create free account
hub / github.com/carsonpo/haystackdb / CommitListItem

Class CommitListItem

src/structures/wal.rs:21–26  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

19
20#[derive(Debug, Clone)]
21pub struct CommitListItem {
22 pub hash: u64,
23 pub timestamp: u64,
24 pub vectors: Vec<[u8; QUANTIZED_VECTOR_SIZE]>,
25 pub kvs: Vec<Vec<KVPair>>,
26}
27
28impl Display for CommitListItem {
29 fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected