pub enum GeoType {
Point,
Line,
Polygon,
Box,
}Expand description
Type of geographic shape
Variants§
Point
Single point (latitude, longitude)
Line
Line connecting multiple points
Polygon
Closed polygon shape
Box
Bounding box (lower-left, upper-right corners)
Trait Implementations§
impl Copy for GeoType
impl Eq for GeoType
impl StructuralPartialEq for GeoType
Auto Trait Implementations§
impl Freeze for GeoType
impl RefUnwindSafe for GeoType
impl Send for GeoType
impl Sync for GeoType
impl Unpin for GeoType
impl UnwindSafe for GeoType
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