chore: fix new clippy lint (#2994)

This commit is contained in:
David Mládek 2024-10-17 12:27:47 +02:00 committed by Jonas Platte
parent 8d7eada034
commit eb6bea38d0
No known key found for this signature in database
GPG key ID: 7D261D771D915378
5 changed files with 6 additions and 6 deletions

View file

@ -291,7 +291,7 @@ struct PrivateCookieJarIter<'a, K> {
iter: cookie::Iter<'a>,
}
impl<'a, K> Iterator for PrivateCookieJarIter<'a, K> {
impl<K> Iterator for PrivateCookieJarIter<'_, K> {
type Item = Cookie<'static>;
fn next(&mut self) -> Option<Self::Item> {

View file

@ -309,7 +309,7 @@ struct SignedCookieJarIter<'a, K> {
iter: cookie::Iter<'a>,
}
impl<'a, K> Iterator for SignedCookieJarIter<'a, K> {
impl<K> Iterator for SignedCookieJarIter<'_, K> {
type Item = Cookie<'static>;
fn next(&mut self) -> Option<Self::Item> {

View file

@ -109,7 +109,7 @@ pub struct Field<'a> {
_multipart: &'a mut Multipart,
}
impl<'a> Stream for Field<'a> {
impl Stream for Field<'_> {
type Item = Result<Bytes, MultipartError>;
fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {

View file

@ -551,7 +551,7 @@ pub struct RouterAsService<'a, B, S = ()> {
_marker: PhantomData<B>,
}
impl<'a, B> Service<Request<B>> for RouterAsService<'a, B, ()>
impl<B> Service<Request<B>> for RouterAsService<'_, B, ()>
where
B: HttpBody<Data = bytes::Bytes> + Send + 'static,
B::Error: Into<axum_core::BoxError>,
@ -571,7 +571,7 @@ where
}
}
impl<'a, B, S> fmt::Debug for RouterAsService<'a, B, S>
impl<B, S> fmt::Debug for RouterAsService<'_, B, S>
where
S: fmt::Debug,
{

View file

@ -73,7 +73,7 @@ impl<'a> MakeWriter<'a> for TestMakeWriter {
struct Writer<'a>(&'a TestMakeWriter);
impl<'a> io::Write for Writer<'a> {
impl io::Write for Writer<'_> {
fn write(&mut self, buf: &[u8]) -> io::Result<usize> {
match &mut *self.0.write.lock().unwrap() {
Some(vec) => {