We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b5cc0b commit 19053aaCopy full SHA for 19053aa
src/value/element_stream_reader.rs
@@ -172,6 +172,9 @@ impl IonReader for ElementStreamReader {
172
false
173
}
174
175
+ // Clippy reports a redundant closure, but fixing it causes the code to break.
176
+ // See: https://github.com/amazon-ion/ion-rust/issues/472
177
+ #[allow(clippy::redundant_closure)]
178
fn annotations<'a>(&'a self) -> Box<dyn Iterator<Item = IonResult<Self::Symbol>> + 'a> {
179
let iterator = self
180
.current_value
0 commit comments