routers_realtime 0.5.0

A Demonstration for Real-Time Map Matching
1
2
3
4
5
6
7
8
9
10
11
12
//! The shared protocol: identities, versions, and the three control-plane
//! messages (solve job, solve result, committed output).

pub mod ids;
pub mod job;
pub mod output;
pub mod result;

pub use ids::*;
pub use job::{BaseState, JobIdentity, JobProof, SolveJob};
pub use output::{CommittedOutput, OutputKind, ResetReason, TerminalReason};
pub use result::{SolveOutcome, SolveResult};