Trait postgis::ewkb::EwkbRead[][src]

pub trait EwkbRead: Debug + Sized {
    fn point_type() -> PointType;

    fn read_ewkb<R: Read>(raw: &mut R) -> Result<Self, Error> { ... }
}

Required methods

Loading content...

Provided methods

fn read_ewkb<R: Read>(raw: &mut R) -> Result<Self, Error>[src]

Loading content...

Implementors

impl EwkbRead for Point[src]

impl EwkbRead for PointM[src]

impl EwkbRead for PointZ[src]

impl EwkbRead for PointZM[src]

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

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

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

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

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

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

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

Loading content...