chore: fix clippy lints (#1882)

This commit is contained in:
Niklas Adolfsson
2024-12-10 13:08:40 +01:00
committed by GitHub
parent 6f8c5afa44
commit f363f77a60
5 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -788,7 +788,7 @@ pub(crate) mod unsigned_number_as_string {
struct NumberVisitor<N>(std::marker::PhantomData<N>);
impl<'de, N: From<u64>> Visitor<'de> for NumberVisitor<N> {
impl<N: From<u64>> Visitor<'_> for NumberVisitor<N> {
type Value = N;
fn expecting(&self, formatter: &mut fmt::Formatter) -> fmt::Result {