[][src]Struct postgis::ewkb::MultiPolygonT

pub struct MultiPolygonT<P: Point + EwkbRead> {
    pub polygons: Vec<PolygonT<P>>,
    pub srid: Option<i32>,
}

Fields

polygons: Vec<PolygonT<P>>srid: Option<i32>

Methods

impl<P> MultiPolygonT<P> where
    P: Point + EwkbRead
[src]

pub fn new() -> MultiPolygonT<P>[src]

Trait Implementations

impl<'a, P> AsEwkbMultiPolygon<'a> for MultiPolygonT<P> where
    P: 'a + Point + EwkbRead
[src]

type PointType = P

type PointIter = Iter<'a, P>

type LineType = LineStringT<P>

type LineIter = Iter<'a, Self::LineType>

type ItemType = PolygonT<P>

type Iter = Iter<'a, Self::ItemType>

impl<P: Clone + Point + EwkbRead> Clone for MultiPolygonT<P>[src]

impl<P: Debug + Point + EwkbRead> Debug for MultiPolygonT<P>[src]

impl<P> EwkbRead for MultiPolygonT<P> where
    P: Point + EwkbRead
[src]

impl<P> FromIterator<PolygonT<P>> for MultiPolygonT<P> where
    P: Point + EwkbRead
[src]

impl<'a, T> FromSql<'a> for MultiPolygonT<T> where
    T: 'a + Point + EwkbRead
[src]

impl<'a, P> MultiPolygon<'a> for MultiPolygonT<P> where
    P: 'a + Point + EwkbRead
[src]

type ItemType = PolygonT<P>

type Iter = Iter<'a, Self::ItemType>

impl<P: PartialEq + Point + EwkbRead> PartialEq<MultiPolygonT<P>> for MultiPolygonT<P>[src]

impl<P: Point + EwkbRead> StructuralPartialEq for MultiPolygonT<P>[src]

impl<'a, T> ToSql for MultiPolygonT<T> where
    T: 'a + Point + EwkbRead
[src]

Auto Trait Implementations

impl<P> RefUnwindSafe for MultiPolygonT<P> where
    P: RefUnwindSafe

impl<P> Send for MultiPolygonT<P>

impl<P> Sync for MultiPolygonT<P>

impl<P> Unpin for MultiPolygonT<P> where
    P: Unpin

impl<P> UnwindSafe for MultiPolygonT<P> where
    P: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> FromSqlOwned for T where
    T: FromSql<'a>, 
[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,