chore: misc clippy lints

This commit is contained in:
Will Lillis 2024-10-06 17:55:00 -04:00 committed by GitHub
parent 50bea73ce3
commit 5c6445edea
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
22 changed files with 74 additions and 72 deletions

View file

@ -85,7 +85,7 @@ impl Tree {
}
}
impl<'tree> Node<'tree> {
impl Node<'_> {
/// Reconstructs a [`Node`] from a raw pointer.
///
/// # Safety
@ -103,7 +103,7 @@ impl<'tree> Node<'tree> {
}
}
impl<'a> TreeCursor<'a> {
impl TreeCursor<'_> {
/// Reconstructs a [`TreeCursor`] from a raw pointer.
///
/// # Safety