pub enum WkbTypeHint {
Geometry,
Geography,
}Expand description
Hints at the likely Parquet geospatial logical type represented by a Metadata.
Based on the algorithm field:
Hint::Geometry: WKB format with linear/planar edge interpolationHint::Geography: WKB format with explicit non-linear/non-planar edge interpolation
See the Parquet Geospatial specification for more details.
Variants§
Geometry
Geospatial features in WKB format with linear/planar edge interpolation
Geography
Geospatial features in WKB format with explicit non-linear/non-planar edge interpolation
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Hint
impl<'de> Deserialize<'de> for Hint
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
impl Copy for Hint
Auto Trait Implementations§
impl Freeze for Hint
impl RefUnwindSafe for Hint
impl Send for Hint
impl Sync for Hint
impl Unpin for Hint
impl UnwindSafe for Hint
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