//! Minimal error type for the routing crate.
//!
//! The parent node has a large `MeshError`; the routing algorithms need only a
//! sliver of it, so this crate carries its own small error to stay decoupled.
use fmt;
/// Errors surfaced by the routing layer.
pub type Result<T> = Result;