Trait wkb::WKBWriteExt[][src]

pub trait WKBWriteExt {
    fn write_wkb<T>(&mut self, g: &Geometry<T>) -> Result<(), WKBWriteError>
    where
        T: Into<f64> + Float + Debug
; }

Extension trait for Write

Required methods

fn write_wkb<T>(&mut self, g: &Geometry<T>) -> Result<(), WKBWriteError> where
    T: Into<f64> + Float + Debug
[src]

Attempt to write a Geometry<Into> to this writer.

Loading content...

Implementors

impl<W: Write> WKBWriteExt for W[src]

Loading content...