pub trait GetEdge {
    type EdgeWeightType;

    fn get_edge(
        &self,
        edge: &H3DirectedEdge
    ) -> Result<Option<EdgeWeight<'_, Self::EdgeWeightType>>, Error>; }

Required Associated Types

Required Methods

Implementors