Fix Clippy warning in `Routable` macro
@@ -559,6 +559,7 @@ impl RouteEnum {
#(#type_defs)*
#[allow(non_camel_case_types)]
+ #[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Debug, PartialEq)]
pub enum #match_error_name {
#(#error_variants),*
@@ -309,6 +309,7 @@ pub(crate) fn create_error_type(
quote! {
pub enum #error_name {
ExtraSegments(String),