pub struct Polygons { /* private fields */ }Expand description
Collection of polygon geometries.
Trait Implementations§
Source§impl GTrait for Polygons
impl GTrait for Polygons
Source§fn to_wkt_fmt(&self, precision: usize) -> String
fn to_wkt_fmt(&self, precision: usize) -> String
Generate a WKT string similar to the
to_wkt()alternative but w/ a
given precision paramter representing the number of digits to print
after the decimal point. Note though that if precision is 0 only
the integer part of the coordinate will be shown. Read moreSource§fn check_coordinates(&self, crs: &CRS) -> Result<(), MyError>
fn check_coordinates(&self, crs: &CRS) -> Result<(), MyError>
Check if all geometry coordinates fall w/in a given CRS’s Area-of-Use,
aka Extent-of-Validity.
Source§impl PartialOrd for Polygons
impl PartialOrd for Polygons
impl StructuralPartialEq for Polygons
Auto Trait Implementations§
impl Freeze for Polygons
impl RefUnwindSafe for Polygons
impl Send for Polygons
impl Sync for Polygons
impl Unpin for Polygons
impl UnwindSafe for Polygons
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