routers_codec 0.1.3

Encoding and Decoding Primitives for Routers
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod access_tag;
pub mod primitives;
pub mod speed_limit;

pub use access_tag::Access;
pub use speed_limit::SpeedLimit;

pub trait Parser: Sized {
    fn parse(tags: &crate::osm::Tags) -> Option<Self>;
}