Struct postgis::ewkb::MultiPointT[][src]

pub struct MultiPointT<P: Point + EwkbRead> {
    pub points: Vec<P>,
    pub srid: Option<i32>,
}

$geotypetrait

Fields

points: Vec<P>srid: Option<i32>

Implementations

impl<P: Point + EwkbRead> MultiPointT<P>[src]

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

Trait Implementations

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

type PointType = P

type Iter = Iter<'a, P>

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

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

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

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

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

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

type ItemType = P

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

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

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

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

Auto Trait Implementations

impl<P> RefUnwindSafe for MultiPointT<P> where
    P: RefUnwindSafe
[src]

impl<P> Send for MultiPointT<P>[src]

impl<P> Sync for MultiPointT<P>[src]

impl<P> Unpin for MultiPointT<P> where
    P: Unpin
[src]

impl<P> UnwindSafe for MultiPointT<P> where
    P: UnwindSafe
[src]

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> BorrowToSql for T where
    T: ToSql
[src]

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

impl<T> FromSqlOwned for T where
    T: for<'a> 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>,