Fix CI with rust 1.90 (#2696)

* Empty commit

* Fix dead code lint error
This commit is contained in:
Remi
2025-09-18 23:06:33 +02:00
committed by GitHub
parent 203751f2fe
commit 71a26d5b24

View File

@@ -80,6 +80,7 @@
//! } //! }
//! //!
//! /// Our custom iterator just helps us to avoid some messy generics. //! /// Our custom iterator just helps us to avoid some messy generics.
//! #[allow(dead_code)]
//! pub struct MyCustomIter<'a>(btree_map::Iter<'a, Field, serde_json::Value>); //! pub struct MyCustomIter<'a>(btree_map::Iter<'a, Field, serde_json::Value>);
//! impl<'a> Iterator for MyCustomIter<'a> { //! impl<'a> Iterator for MyCustomIter<'a> {
//! // Here we can see our field-value pairs being produced by the iterator. //! // Here we can see our field-value pairs being produced by the iterator.