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