| 19 | |
| 20 | #[derive(Debug, Clone)] |
| 21 | pub 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 | |
| 28 | impl Display for CommitListItem { |
| 29 | fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { |
nothing calls this directly
no outgoing calls
no test coverage detected