1 2 3 4 5 6 7 8
use crate::model::network::{EdgeId, VertexId}; /// simple 'Either' return type that covers both vertex-oriented and edge-oriented /// search implementations. pub enum NearestSearchResult { NearestVertex(VertexId), NearestEdge(EdgeId), }