pub struct GeoJSONFormatter;Expand description
Format the results as a geojson file TODO there is probably a better way to do this using geozero to process the dataframe to a file without having to construct the entire thing in memory first
Trait Implementations§
Source§impl Debug for GeoJSONFormatter
impl Debug for GeoJSONFormatter
Source§impl Default for GeoJSONFormatter
impl Default for GeoJSONFormatter
Source§fn default() -> GeoJSONFormatter
fn default() -> GeoJSONFormatter
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GeoJSONFormatter
impl<'de> Deserialize<'de> for GeoJSONFormatter
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<GeoJSONFormatter> for OutputFormatter
impl From<GeoJSONFormatter> for OutputFormatter
Source§fn from(v: GeoJSONFormatter) -> OutputFormatter
fn from(v: GeoJSONFormatter) -> OutputFormatter
Converts to this type from the input type.
Source§impl OutputGenerator for GeoJSONFormatter
impl OutputGenerator for GeoJSONFormatter
Source§impl Serialize for GeoJSONFormatter
impl Serialize for GeoJSONFormatter
Source§impl TryInto<GeoJSONFormatter> for OutputFormatter
impl TryInto<GeoJSONFormatter> for OutputFormatter
Auto Trait Implementations§
impl Freeze for GeoJSONFormatter
impl RefUnwindSafe for GeoJSONFormatter
impl Send for GeoJSONFormatter
impl Sync for GeoJSONFormatter
impl Unpin for GeoJSONFormatter
impl UnwindSafe for GeoJSONFormatter
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more