Skip to main content

routee_compass_core/model/map/
geometry_input.rs

1use serde::{Deserialize, Serialize};
2
3/// points to a file that contains geometries for one edge list in the graph.
4#[derive(Serialize, Deserialize, Clone, Debug)]
5pub struct GeometryInput {
6    pub input_file: String,
7}