Module builder

Source
Expand description

Push-based APIs for constructing arrays.

Structs§

GeometryBuilder
The GeoArrow equivalent to a Vec<Option<Geometry>>: a mutable collection of Geometries.
GeometryCollectionBuilder
The GeoArrow equivalent to Vec<Option<GeometryCollection>>: a mutable collection of GeometryCollections.
InterleavedCoordBufferBuilder
The GeoArrow equivalent to Vec<Coord>: a mutable collection of coordinates.
LineStringBuilder
The GeoArrow equivalent to Vec<Option<LineString>>: a mutable collection of LineStrings.
MultiLineStringBuilder
The GeoArrow equivalent to Vec<Option<MultiLineString>>: a mutable collection of MultiLineStrings.
MultiPointBuilder
The GeoArrow equivalent to Vec<Option<MultiPoint>>: a mutable collection of MultiPoints.
MultiPolygonBuilder
The GeoArrow equivalent to Vec<Option<MultiPolygon>>: a mutable collection of MultiPolygons.
PointBuilder
The GeoArrow equivalent to Vec<Option<Point>>: a mutable collection of Points.
PolygonBuilder
The GeoArrow equivalent to Vec<Option<Polygon>>: a mutable collection of Polygons.
RectBuilder
The GeoArrow equivalent to Vec<Option<Rect>>: a mutable collection of Rects.
SeparatedCoordBufferBuilder
The GeoArrow equivalent to Vec<Option<Coord>>: a mutable collection of coordinates.
WkbBuilder
The GeoArrow equivalent to Vec<Option<Wkb>>: a mutable collection of Wkb buffers.

Enums§

CoordBufferBuilder
The GeoArrow equivalent to Vec<Coord>: a mutable collection of coordinates.