[][src]Struct postgis::ewkb::EwkbGeometryCollection

pub struct EwkbGeometryCollection<'a, P, PI, MP, L, LI, ML, Y, YI, MY, G, GI, GC> where
    P: 'a + Point,
    PI: 'a + Iterator<Item = &'a P> + ExactSizeIterator<Item = &'a P>,
    MP: 'a + MultiPoint<'a, ItemType = P, Iter = PI>,
    L: 'a + LineString<'a, ItemType = P, Iter = PI>,
    LI: 'a + Iterator<Item = &'a L> + ExactSizeIterator<Item = &'a L>,
    ML: 'a + MultiLineString<'a, ItemType = L, Iter = LI>,
    Y: 'a + Polygon<'a, ItemType = L, Iter = LI>,
    YI: 'a + Iterator<Item = &'a Y> + ExactSizeIterator<Item = &'a Y>,
    MY: 'a + MultiPolygon<'a, ItemType = Y, Iter = YI>,
    G: 'a + Geometry<'a, Point = P, LineString = L, Polygon = Y, MultiPoint = MP, MultiLineString = ML, MultiPolygon = MY, GeometryCollection = GC>,
    GI: 'a + Iterator<Item = &'a G> + ExactSizeIterator<Item = &'a G>,
    GC: 'a + GeometryCollection<'a, ItemType = G, Iter = GI>, 
{ pub geom: &'a dyn GeometryCollection<'a, ItemType = G, Iter = GI>, pub srid: Option<i32>, pub point_type: PointType, }

Fields

Trait Implementations

impl<'a, P, PI, MP, L, LI, ML, Y, YI, MY, G, GI, GC> EwkbWrite for EwkbGeometryCollection<'a, P, PI, MP, L, LI, ML, Y, YI, MY, G, GI, GC> where
    P: 'a + Point,
    PI: 'a + Iterator<Item = &'a P> + ExactSizeIterator<Item = &'a P>,
    MP: 'a + MultiPoint<'a, ItemType = P, Iter = PI>,
    L: 'a + LineString<'a, ItemType = P, Iter = PI>,
    LI: 'a + Iterator<Item = &'a L> + ExactSizeIterator<Item = &'a L>,
    ML: 'a + MultiLineString<'a, ItemType = L, Iter = LI>,
    Y: 'a + Polygon<'a, ItemType = L, Iter = LI>,
    YI: 'a + Iterator<Item = &'a Y> + ExactSizeIterator<Item = &'a Y>,
    MY: 'a + MultiPolygon<'a, ItemType = Y, Iter = YI>,
    G: 'a + Geometry<'a, Point = P, LineString = L, Polygon = Y, MultiPoint = MP, MultiLineString = ML, MultiPolygon = MY, GeometryCollection = GC>,
    GI: 'a + Iterator<Item = &'a G> + ExactSizeIterator<Item = &'a G>,
    GC: 'a + GeometryCollection<'a, ItemType = G, Iter = GI>, 
[src]

impl<'a, P, PI, MP, L, LI, ML, Y, YI, MY, G, GI, GC> Debug for EwkbGeometryCollection<'a, P, PI, MP, L, LI, ML, Y, YI, MY, G, GI, GC> where
    P: 'a + Point,
    PI: 'a + Iterator<Item = &'a P> + ExactSizeIterator<Item = &'a P>,
    MP: 'a + MultiPoint<'a, ItemType = P, Iter = PI>,
    L: 'a + LineString<'a, ItemType = P, Iter = PI>,
    LI: 'a + Iterator<Item = &'a L> + ExactSizeIterator<Item = &'a L>,
    ML: 'a + MultiLineString<'a, ItemType = L, Iter = LI>,
    Y: 'a + Polygon<'a, ItemType = L, Iter = LI>,
    YI: 'a + Iterator<Item = &'a Y> + ExactSizeIterator<Item = &'a Y>,
    MY: 'a + MultiPolygon<'a, ItemType = Y, Iter = YI>,
    G: 'a + Geometry<'a, Point = P, LineString = L, Polygon = Y, MultiPoint = MP, MultiLineString = ML, MultiPolygon = MY, GeometryCollection = GC>,
    GI: 'a + Iterator<Item = &'a G> + ExactSizeIterator<Item = &'a G>,
    GC: 'a + GeometryCollection<'a, ItemType = G, Iter = GI>, 
[src]

Auto Trait Implementations

impl<'a, P, PI, MP, L, LI, ML, Y, YI, MY, G, GI, GC> !Send for EwkbGeometryCollection<'a, P, PI, MP, L, LI, ML, Y, YI, MY, G, GI, GC>

impl<'a, P, PI, MP, L, LI, ML, Y, YI, MY, G, GI, GC> !Sync for EwkbGeometryCollection<'a, P, PI, MP, L, LI, ML, Y, YI, MY, G, GI, GC>

Blanket Implementations

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

impl<T> From for T
[src]

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Same for T

Should always be Self