pub trait Optional {
    fn merge_optional(self, other: Option<Router>) -> Self;
    fn nest_optional(self, path: &str, other: Option<Router>) -> Self;
}

Required Methods

Implementations on Foreign Types

Implementors