pub trait ToOwnedPolygonInt {
    // Required method
    fn to_polygon_owned(&self, poly_type: PolyType) -> OwnedPolygon;
}

Required Methods§

source

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

Implementations on Foreign Types§

source§

impl ToOwnedPolygonInt for MultiLineString<i64>

source§

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

source§

impl ToOwnedPolygonInt for MultiPolygon<i64>

source§

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

source§

impl ToOwnedPolygonInt for Polygon<i64>

source§

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

Implementors§