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 MultiPolygon<'a, ItemType = T, Iter = J>, pub srid: Option<i32>, pub point_type: PointType, }

Fields

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]

Formats the value using the given formatter.

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]

An adaptor method used internally by Rust-Postgres. Read more

Determines if a value of this type can be converted to the specified Postgres Type. Read more

Converts the value of self into the binary format of the specified Postgres Type, appending it to out. Read more