pub trait ToMultiLineString {
    type Error;

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

Required Associated Types§

Required Methods§

Implementations on Foreign Types§

source§

impl ToMultiLineString for &[H3DirectedEdge]

converts &[H3Edge] slices to MultiLineString while attempting to combine consequent H3Edge values into a single LineString<f64>

source§

impl ToMultiLineString for Vec<H3DirectedEdge>

Implementors§