Docs.rs
  • geoarrow-0.1.0
    • geoarrow 0.1.0
    • Docs.rs crate page
    • MIT OR Apache-2.0
    • Links
    • Repository
    • crates.io
    • Source
    • Owners
    • kylebarron
    • Dependencies
      • anyhow ^1 normal
      • arrow ^50 normal
      • arrow-array ^50 normal
      • arrow-buffer ^50 normal
      • arrow-cast ^50 normal
      • arrow-data ^50 normal
      • arrow-ipc ^50 normal
      • arrow-schema ^50 normal
      • async-stream ^0.3 normal
      • bumpalo ^3 normal
      • byteorder ^1 normal
      • chrono ^0.4 normal
      • flatgeobuf ^4 normal
      • futures ^0.3 normal
      • gdal ^0.16 normal
      • geo ^0.27 normal
      • geodesy ^0.12 normal
      • geos ^8.3 normal
      • geozero ^0.11 normal
      • indexmap ^2 normal
      • itertools ^0.12 normal
      • num_enum ^0.7 normal
      • parquet ^50 normal
      • phf ^0.11 normal
      • proj ^0.27.2 normal
      • rayon ^1.8.0 normal
      • rstar ^0.11 normal
      • serde ^1 normal
      • serde_json ^1 normal
      • sqlx ^0.7 normal
      • thiserror ^1 normal
      • approx ^0.5.1 dev
      • criterion ^0.5 dev
      • geozero ^0.11 dev
      • parquet ^50 dev
      • sqlx ^0.7 dev
      • tokio ^1.9 dev
    • Versions
    • 64.83% of the crate is documented
  • Go to latest version
  • Platform
    • i686-unknown-linux-gnu
    • x86_64-unknown-linux-gnu
  • Feature flags
  • docs.rs
    • About docs.rs
    • Badges
    • Builds
    • Metadata
    • Shorthand URLs
    • Download
    • Rustdoc JSON
    • Build queue
    • Privacy policy
  • Rust
    • Rust website
    • The Book
    • Standard Library API Reference
    • Rust by Example
    • The Cargo Guide
    • Clippy Documentation

geoarrow0.1.0

Rechunk

Required Associated Types

  • Output

Required Methods

  • rechunk

Implementors

In geoarrow::algorithm::native

?
Change settings

Trait geoarrow::algorithm::native::Rechunk

source ·
pub trait Rechunk {
    type Output;

    // Required method
    fn rechunk(&self, chunks: &[Range<usize>]) -> Self::Output;
}

Required Associated Types§

source

type Output

Required Methods§

source

fn rechunk(&self, chunks: &[Range<usize>]) -> Self::Output

Implementors§

source§

impl Rechunk for PointArray

§

type Output = ChunkedGeometryArray<PointArray>

source§

impl<O: OffsetSizeTrait> Rechunk for GeometryCollectionArray<O>

§

type Output = Result<ChunkedGeometryArray<GeometryCollectionArray<O>>, GeoArrowError>

source§

impl<O: OffsetSizeTrait> Rechunk for LineStringArray<O>

§

type Output = Result<ChunkedGeometryArray<LineStringArray<O>>, GeoArrowError>

source§

impl<O: OffsetSizeTrait> Rechunk for MixedGeometryArray<O>

§

type Output = Result<ChunkedGeometryArray<MixedGeometryArray<O>>, GeoArrowError>

source§

impl<O: OffsetSizeTrait> Rechunk for MultiLineStringArray<O>

§

type Output = Result<ChunkedGeometryArray<MultiLineStringArray<O>>, GeoArrowError>

source§

impl<O: OffsetSizeTrait> Rechunk for MultiPointArray<O>

§

type Output = Result<ChunkedGeometryArray<MultiPointArray<O>>, GeoArrowError>

source§

impl<O: OffsetSizeTrait> Rechunk for MultiPolygonArray<O>

§

type Output = Result<ChunkedGeometryArray<MultiPolygonArray<O>>, GeoArrowError>

source§

impl<O: OffsetSizeTrait> Rechunk for PolygonArray<O>

§

type Output = Result<ChunkedGeometryArray<PolygonArray<O>>, GeoArrowError>