• cruiser 0.2.0/src/util/short_iter.rs
    55
        #[allow(clippy::iter_not_returning_iterator)]
    56
        /// Gets an iterator of shared references to self
    61
        #[allow(clippy::iter_not_returning_iterator)]
    62
        /// Gets an iterator of mutable references to self
  • dylint 2.1.3/src/package_options/revs.rs
    42
        #[allow(clippy::iter_not_returning_iterator)]
    43
        pub fn iter(&self) -> Result<RevIter> {
  • elipdotter 0.3.1/src/query.rs
    219
        /// and almost all other search engines.
    220
        #[allow(clippy::iter_not_returning_iterator)] // it does, within a result
    221
        pub fn iter(&'a self) -> Result<impl Iterator<Item = index::Id> + 'a, IterError> {
  • modio 0.7.1/src/games.rs
    116
        /// Provides a stream over all tag options.
    117
        #[allow(clippy::iter_not_returning_iterator)]
    118
        pub async fn iter(self) -> Result<impl Stream<Item = Result<TagOption>>> {
  • modio 0.7.1/src/loader.rs
    89
        /// ```
    90
        #[allow(clippy::iter_not_returning_iterator)]
    91
        pub async fn iter(self) -> Result<impl Stream<Item = Result<T>>> {
  • modio 0.7.1/src/mods.rs
    276
        /// Provides a stream over all mod dependencies.
    277
        #[allow(clippy::iter_not_returning_iterator)]
    278
        pub async fn iter(self) -> Result<impl Stream<Item = Result<Dependency>>> {
    340
        /// Provides a stream over all mod tags.
    341
        #[allow(clippy::iter_not_returning_iterator)]
    342
        pub async fn iter(self) -> Result<impl Stream<Item = Result<Tag>>> {
  • structured 0.9.0/src/table.rs
    420
        /// this `Column`.
    421
        #[allow(clippy::iter_not_returning_iterator)]
    422
        // TODO: resolve this clippy warning
  • twilight-cache-inmemory 0.15.0-rc.1/src/lib.rs
    314
        /// ```
    315
        #[allow(clippy::iter_not_returning_iterator)]
    316
        pub const fn iter(&self) -> InMemoryCacheIter<'_> {
  • cargo-tally 1.0.22/src/lib.rs
    9
        clippy::items_after_statements,
    10
        clippy::iter_not_returning_iterator, // https://github.com/rust-lang/rust-clippy/issues/8285
    11
        clippy::mismatching_type_param_order, // https://github.com/rust-lang/rust-clippy/issues/8962
  • serde_json 1.0.91/src/lib.rs
    328
        // buggy
    329
        clippy::iter_not_returning_iterator, // https://github.com/rust-lang/rust-clippy/issues/8285
    330
        // Deserializer::from_str, into_iter
  • serde_path_to_error 0.1.9/src/lib.rs
    58
        clippy::doc_link_with_quotes, // https://github.com/rust-lang/rust-clippy/issues/8961
    59
        clippy::iter_not_returning_iterator, // https://github.com/rust-lang/rust-clippy/issues/8285
    60
        clippy::missing_errors_doc,
  • serde_yaml 0.9.17/src/lib.rs
    122
        // buggy
    123
        clippy::iter_not_returning_iterator, // https://github.com/rust-lang/rust-clippy/issues/8285
    124
        clippy::ptr_arg, // https://github.com/rust-lang/rust-clippy/issues/9218
  • serde_yaml_with_quirks 0.8.24/src/lib.rs
    72
        // buggy
    73
        clippy::iter_not_returning_iterator, // https://github.com/rust-lang/rust-clippy/issues/8285
    74
        clippy::question_mark, // https://github.com/rust-lang/rust-clippy/issues/7859
  • trybuild 1.0.77/src/lib.rs
    216
        clippy::enum_glob_use,
    217
        clippy::iter_not_returning_iterator, // https://github.com/rust-lang/rust-clippy/issues/8285
    218
        clippy::manual_assert,
  • trybuild2 1.0.0/src/lib.rs
    227
        clippy::enum_glob_use,
    228
        clippy::iter_not_returning_iterator, // https://github.com/rust-lang/rust-clippy/issues/8285
    229
        clippy::let_underscore_drop,