pub trait ToOwnedPolygon<F: CoordFloat = f64> {
    // Required method
    fn to_polygon_owned(&self, poly_type: PolyType, factor: F) -> OwnedPolygon;
}

Required Methods§

source

fn to_polygon_owned(&self, poly_type: PolyType, factor: F) -> OwnedPolygon

Implementations on Foreign Types§

source§

impl<F: CoordFloat> ToOwnedPolygon<F> for MultiLineString<F>

source§

fn to_polygon_owned(&self, poly_type: PolyType, factor: F) -> OwnedPolygon

source§

impl<F: CoordFloat> ToOwnedPolygon<F> for MultiPolygon<F>

source§

fn to_polygon_owned(&self, poly_type: PolyType, factor: F) -> OwnedPolygon

source§

impl<F: CoordFloat> ToOwnedPolygon<F> for Polygon<F>

source§

fn to_polygon_owned(&self, poly_type: PolyType, factor: F) -> OwnedPolygon

Implementors§