Trait Router

Source
pub trait Router {
    // Required method
    fn push(path: &str) -> Result<(), Error>;
}
Expand description

Elvis Router

Required Methods§

Source

fn push(path: &str) -> Result<(), Error>

Push new path

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§