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§
Sourcefn to_line_string_builder(
&self,
typ: LineStringType,
) -> Result<LineStringBuilder>
fn to_line_string_builder( &self, typ: LineStringType, ) -> Result<LineStringBuilder>
Convert to a GeoArrow LineStringBuilder
Provided Methods§
Sourcefn to_line_string_array(&self, typ: LineStringType) -> Result<LineStringArray>
fn to_line_string_array(&self, typ: LineStringType) -> Result<LineStringArray>
Convert to GeoArrow LineStringArray