chore: satisfy ci

This commit is contained in:
Joshua Mo 2025-04-09 22:30:23 +01:00
parent 49221ab848
commit 0ba10f0e3e
1 changed files with 9 additions and 0 deletions

View File

@ -22,6 +22,15 @@ where
}
}
impl<T> Default for ExtractorLayer<T>
where
T: for<'a> Deserialize<'a>,
{
fn default() -> Self {
Self::new()
}
}
impl<S, T> Layer<S> for ExtractorLayer<T>
where
T: for<'a> Deserialize<'a>,