pub enum VectorFormat {
FlatGeobuf,
GeoJson,
GeoPackage,
Gml,
Gpx,
Kml,
MapInfoMif,
Shapefile,
}Expand description
Supported vector formats for crate-level sniffed I/O.
Variants§
FlatGeobuf
FlatGeobuf binary vector format (.fgb).
GeoJson
GeoJSON text format (.geojson).
GeoPackage
GeoPackage SQLite container format (.gpkg).
Gml
Geography Markup Language XML format (.gml).
Gpx
GPS Exchange Format XML format (.gpx).
Kml
Keyhole Markup Language XML format (.kml).
MapInfoMif
MapInfo interchange format (.mif + .mid).
Shapefile
ESRI Shapefile dataset (.shp + sidecars).
Implementations§
Trait Implementations§
Source§impl Clone for VectorFormat
impl Clone for VectorFormat
Source§fn clone(&self) -> VectorFormat
fn clone(&self) -> VectorFormat
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for VectorFormat
impl Debug for VectorFormat
Source§impl PartialEq for VectorFormat
impl PartialEq for VectorFormat
Source§fn eq(&self, other: &VectorFormat) -> bool
fn eq(&self, other: &VectorFormat) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for VectorFormat
impl Eq for VectorFormat
impl StructuralPartialEq for VectorFormat
Auto Trait Implementations§
impl Freeze for VectorFormat
impl RefUnwindSafe for VectorFormat
impl Send for VectorFormat
impl Sync for VectorFormat
impl Unpin for VectorFormat
impl UnsafeUnpin for VectorFormat
impl UnwindSafe for VectorFormat
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more