Fix more Clippy needless_lifetimes warnings

This commit is contained in:
gwenn
2024-10-18 19:29:17 +02:00
parent b7309f2dca
commit e8b88a058f
4 changed files with 5 additions and 5 deletions

View File

@@ -6,7 +6,7 @@ use std::slice::from_raw_parts_mut;
use crate::ffi;
use crate::{Error, Result};
impl<'conn> Blob<'conn> {
impl Blob<'_> {
/// Write `buf` to `self` starting at `write_start`, returning an error if
/// `write_start + buf.len()` is past the end of the blob.
///