Struct rust::geometry::BaseGeometry  
source · pub struct BaseGeometry<G = Geometry, M = MValues, B = BBOX> {
    pub coordinates: G,
    pub m_values: Option<M>,
    pub bbox: Option<B>,
}Expand description
BaseGeometry is the a generic geometry type
Fields§
§coordinates: GThe geometry shape
m_values: Option<M>The M-Values shape
bbox: Option<B>The BBox shape
Trait Implementations§
source§impl<G: PartialEq, M: PartialEq, B: PartialEq> PartialEq for BaseGeometry<G, M, B>
 
impl<G: PartialEq, M: PartialEq, B: PartialEq> PartialEq for BaseGeometry<G, M, B>
source§fn eq(&self, other: &BaseGeometry<G, M, B>) -> bool
 
fn eq(&self, other: &BaseGeometry<G, M, B>) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl<G, M, B> StructuralPartialEq for BaseGeometry<G, M, B>
Auto Trait Implementations§
impl<G, M, B> Freeze for BaseGeometry<G, M, B>
impl<G, M, B> RefUnwindSafe for BaseGeometry<G, M, B>
impl<G, M, B> Send for BaseGeometry<G, M, B>
impl<G, M, B> Sync for BaseGeometry<G, M, B>
impl<G, M, B> Unpin for BaseGeometry<G, M, B>
impl<G, M, B> UnwindSafe for BaseGeometry<G, M, B>
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