pub trait GenericWktArrayType: Sized + for<'a> GeoArrowArrayAccessor<'a, Item = Wkt> { }
Expand description
A trait for GeoArrow arrays that can hold WKT data.
Currently three types are supported:
This trait helps to abstract over the different types of WKT arrays so that we don’t need to duplicate the implementation for each type.
This is modeled after the upstream StringArrayType
trait.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.