Trait ToLineStringArray

Source
pub trait ToLineStringArray {
    // Required method
    fn to_line_string_builder(
        &self,
        typ: LineStringType,
    ) -> Result<LineStringBuilder>;

    // Provided method
    fn to_line_string_array(
        &self,
        typ: LineStringType,
    ) -> Result<LineStringArray> { ... }
}
Available on crate feature geozero only.
Expand description

GeoZero trait to convert to GeoArrow LineStringArray.

Required Methods§

Source

fn to_line_string_builder( &self, typ: LineStringType, ) -> Result<LineStringBuilder>

Convert to a GeoArrow LineStringBuilder

Provided Methods§

Source

fn to_line_string_array(&self, typ: LineStringType) -> Result<LineStringArray>

Convert to GeoArrow LineStringArray

Implementors§