pub struct CsvReaderOptions {
pub geometry_column_name: Option<String>,
pub to_type: GeoArrowType,
}Expand description
Options for the CSV reader.
Fields§
§geometry_column_name: Option<String>The name of the geometry column in the CSV
Defaults to "geometry"
to_type: GeoArrowTypeThe target geometry type to convert the WKT strings to.
Trait Implementations§
Source§impl Clone for CsvReaderOptions
impl Clone for CsvReaderOptions
Source§fn clone(&self) -> CsvReaderOptions
fn clone(&self) -> CsvReaderOptions
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for CsvReaderOptions
impl RefUnwindSafe for CsvReaderOptions
impl Send for CsvReaderOptions
impl Sync for CsvReaderOptions
impl Unpin for CsvReaderOptions
impl UnwindSafe for CsvReaderOptions
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