(
&self,
tid: u64,
collection: &str,
segment_id: &str,
data: &[u8],
)
| 185 | } |
| 186 | |
| 187 | fn write_segment( |
| 188 | &self, |
| 189 | tid: u64, |
| 190 | collection: &str, |
| 191 | segment_id: &str, |
| 192 | data: &[u8], |
| 193 | ) -> crate::Result<()> { |
| 194 | super::segments::write(self, tid, collection, segment_id, data) |
| 195 | } |
| 196 | |
| 197 | fn read_segment( |
| 198 | &self, |