Trait geozero::wkb::FromWkb

source ·
pub trait FromWkb {
    // Required method
    fn from_wkb<R: Read>(rdr: &mut R, dialect: WkbDialect) -> Result<Self>
       where Self: Sized;
}
Expand description

Convert from WKB.

Required Methods§

source

fn from_wkb<R: Read>(rdr: &mut R, dialect: WkbDialect) -> Result<Self>
where Self: Sized,

Convert from WKB.

Implementations on Foreign Types§

source§

impl FromWkb for Geometry<f64>

source§

fn from_wkb<R: Read>(rdr: &mut R, dialect: WkbDialect) -> Result<Self>

source§

impl FromWkb for Geometry

source§

fn from_wkb<R: Read>(rdr: &mut R, dialect: WkbDialect) -> Result<Self>

source§

impl FromWkb for Geometry<'_>

source§

fn from_wkb<R: Read>(rdr: &mut R, dialect: WkbDialect) -> Result<Self>

Implementors§