[][src]Struct postgis::ewkb::GeometryCollectionT

pub struct GeometryCollectionT<P: Point + EwkbRead> {
    pub geometries: Vec<GeometryT<P>>,
    pub srid: Option<i32>,
}

Fields

geometries: Vec<GeometryT<P>>srid: Option<i32>

Methods

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

Trait Implementations

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

type PointType = P

type PointIter = Iter<'a, P>

type MultiPointType = MultiPointT<P>

type LineType = LineStringT<P>

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

type MultiLineType = MultiLineStringT<P>

type PolyType = PolygonT<P>

type PolyIter = Iter<'a, Self::PolyType>

type MultiPolyType = MultiPolygonT<P>

type GeomType = GeometryT<P>

type GeomIter = Iter<'a, Self::GeomType>

type GeomCollection = GeometryCollectionT<P>

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

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

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

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

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

Auto Trait Implementations

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

impl<P> Send for GeometryCollectionT<P>

impl<P> Sync for GeometryCollectionT<P>

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

impl<P> UnwindSafe for GeometryCollectionT<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>,