pub struct GeoJsonOptions {
pub include_ids: bool,
pub include_tags: bool,
pub include_sources: bool,
pub timestamp_property: String,
pub text_property: String,
}Expand description
Configuration options for GeoJSON import/export.
Fields§
§include_ids: boolWhether to include event IDs in exported GeoJSON
Whether to include tags in exported GeoJSON
include_sources: boolWhether to include source references in exported GeoJSON
timestamp_property: StringProperty name for timestamp field
text_property: StringProperty name for text/description field
Trait Implementations§
Source§impl Clone for GeoJsonOptions
impl Clone for GeoJsonOptions
Source§fn clone(&self) -> GeoJsonOptions
fn clone(&self) -> GeoJsonOptions
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 moreSource§impl Debug for GeoJsonOptions
impl Debug for GeoJsonOptions
Auto Trait Implementations§
impl Freeze for GeoJsonOptions
impl RefUnwindSafe for GeoJsonOptions
impl Send for GeoJsonOptions
impl Sync for GeoJsonOptions
impl Unpin for GeoJsonOptions
impl UnwindSafe for GeoJsonOptions
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