Document the geo point extractor

This commit is contained in:
Clément Renault 2024-11-21 16:47:00 +01:00
parent 5727e00374
commit 61d0615253
No known key found for this signature in database
GPG Key ID: F250A4C4E3AE5F5F

View File

@ -60,9 +60,11 @@ pub struct GeoExtractorData<'extractor> {
/// point being updated, we first put it in the deleted and then in the inserted.
removed: bumpalo::collections::Vec<'extractor, ExtractedGeoPoint>,
inserted: bumpalo::collections::Vec<'extractor, ExtractedGeoPoint>,
/// TODO Do the doc
/// Contains a packed list of `ExtractedGeoPoint` of the inserted geo points
/// data structures if we have spilled to disk.
spilled_removed: Option<BufWriter<File>>,
/// TODO Do the doc
/// Contains a packed list of `ExtractedGeoPoint` of the inserted geo points
/// data structures if we have spilled to disk.
spilled_inserted: Option<BufWriter<File>>,
}