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
|
42 |
#[allow(clippy::iter_not_returning_iterator)]
|
43 |
pub fn iter(&self) -> Result<RevIter> {
|
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> {
|
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>>> {
|
89 |
/// ```
|
90 |
#[allow(clippy::iter_not_returning_iterator)]
|
91 |
pub async fn iter(self) -> Result<impl Stream<Item = Result<T>>> {
|
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>>> {
|
420 |
/// this `Column`.
|
421 |
#[allow(clippy::iter_not_returning_iterator)]
|
422 |
// TODO: resolve this clippy warning
|
314 |
/// ```
|
315 |
#[allow(clippy::iter_not_returning_iterator)]
|
316 |
pub const fn iter(&self) -> InMemoryCacheIter<'_> {
|
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
|
328 |
// buggy
|
329 |
clippy::iter_not_returning_iterator, // https://github.com/rust-lang/rust-clippy/issues/8285
|
330 |
// Deserializer::from_str, into_iter
|
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,
|
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
|
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
|
216 |
clippy::enum_glob_use,
|
217 |
clippy::iter_not_returning_iterator, // https://github.com/rust-lang/rust-clippy/issues/8285
|
218 |
clippy::manual_assert,
|
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,
|