pub trait ToLineString {
    type Error;

    // Required method
    fn to_linestring(&self) -> Result<LineString<f64>, Self::Error>;
}

Required Associated Types§

Required Methods§

Implementors§