Remove redundant lifetime parameter from Statement::step()

This commit is contained in:
Pekka Enberg 2024-01-28 10:19:31 +02:00
parent d5bceaefdb
commit 64213766a2

View file

@ -220,7 +220,7 @@ impl Rows {
Self { stmt }
}
pub fn next<'a>(&'a mut self) -> Result<RowResult<'a>> {
pub fn next(&mut self) -> Result<RowResult<'_>> {
self.stmt.step()
}
}