Struct postgis::ewkb::EwkbMultiPolygon[][src]

pub struct EwkbMultiPolygon<'a, P, I, L, K, T, J> where
    P: 'a + Point,
    I: 'a + Iterator<Item = &'a P> + ExactSizeIterator<Item = &'a P>,
    L: 'a + LineString<'a, ItemType = P, Iter = I>,
    K: 'a + Iterator<Item = &'a L> + ExactSizeIterator<Item = &'a L>,
    T: 'a + Polygon<'a, ItemType = L, Iter = K>,
    J: 'a + Iterator<Item = &'a T> + ExactSizeIterator<Item = &'a T>, 
{ pub geom: &'a dyn MultiPolygon<'a, ItemType = T, Iter = J>, pub srid: Option<i32>, pub point_type: PointType, }

Fields

geom: &'a dyn MultiPolygon<'a, ItemType = T, Iter = J>srid: Option<i32>point_type: PointType

Trait Implementations

impl<'a, P, I, L, K, T, J> Debug for EwkbMultiPolygon<'a, P, I, L, K, T, J> where
    P: 'a + Point,
    I: 'a + Iterator<Item = &'a P> + ExactSizeIterator<Item = &'a P>,
    L: 'a + LineString<'a, ItemType = P, Iter = I>,
    K: 'a + Iterator<Item = &'a L> + ExactSizeIterator<Item = &'a L>,
    T: 'a + Polygon<'a, ItemType = L, Iter = K>,
    J: 'a + Iterator<Item = &'a T> + ExactSizeIterator<Item = &'a T>, 
[src]

impl<'a, P, I, L, K, T, J> EwkbWrite for EwkbMultiPolygon<'a, P, I, L, K, T, J> where
    P: 'a + Point,
    I: 'a + Iterator<Item = &'a P> + ExactSizeIterator<Item = &'a P>,
    L: 'a + LineString<'a, ItemType = P, Iter = I>,
    K: 'a + Iterator<Item = &'a L> + ExactSizeIterator<Item = &'a L>,
    T: 'a + Polygon<'a, ItemType = L, Iter = K>,
    J: 'a + Iterator<Item = &'a T> + ExactSizeIterator<Item = &'a T>, 
[src]

impl<'a, P, I, L, K, T, J> ToSql for EwkbMultiPolygon<'a, P, I, L, K, T, J> where
    P: 'a + Point,
    I: 'a + Iterator<Item = &'a P> + ExactSizeIterator<Item = &'a P>,
    L: 'a + LineString<'a, ItemType = P, Iter = I>,
    K: 'a + Iterator<Item = &'a L> + ExactSizeIterator<Item = &'a L>,
    T: 'a + Polygon<'a, ItemType = L, Iter = K>,
    J: 'a + Iterator<Item = &'a T> + ExactSizeIterator<Item = &'a T>, 
[src]

Auto Trait Implementations

impl<'a, P, I, L, K, T, J> !RefUnwindSafe for EwkbMultiPolygon<'a, P, I, L, K, T, J>[src]

impl<'a, P, I, L, K, T, J> Send for EwkbMultiPolygon<'a, P, I, L, K, T, J>[src]

impl<'a, P, I, L, K, T, J> Sync for EwkbMultiPolygon<'a, P, I, L, K, T, J>[src]

impl<'a, P, I, L, K, T, J> Unpin for EwkbMultiPolygon<'a, P, I, L, K, T, J>[src]

impl<'a, P, I, L, K, T, J> !UnwindSafe for EwkbMultiPolygon<'a, P, I, L, K, T, J>[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, 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, 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>,