• cardpack 0.4.14/src/cards/rank.rs
    162
                clippy::cast_possible_wrap,
    163
                clippy::into_iter_on_ref
    164
            )]
  • cardpack 0.4.14/src/cards/suit.rs
    100
            #[allow(clippy::into_iter_on_ref)]
    101
            for (i, &elem) in s.into_iter().enumerate() {
  • ellidri 3.0.0-beta/src/util.rs
    52
    #[allow(clippy::into_iter_on_ref)]
    53
    pub fn regexset_add(set: &mut re::RegexSet, mask: &str) {
  • libproxy 0.1.1/src/proxies.rs
    107
        #[allow(clippy::into_iter_on_ref)]
    108
        fn into_iter(self) -> Self::IntoIter {
    117
        #[allow(clippy::into_iter_on_ref)]
    118
        fn into_iter(self) -> Self::IntoIter {
  • nu-command 0.75.0/src/viewers/table.rs
    948
    #[allow(clippy::too_many_arguments)]
    949
    #[allow(clippy::into_iter_on_ref)]
    950
    fn convert_to_table2<'a>(
  • nu-explore 0.75.0/src/nu_common/table.rs
    279
    #[allow(clippy::too_many_arguments)]
    280
    #[allow(clippy::into_iter_on_ref)]
    281
    fn convert_to_table2<'a>(
  • raii-map 0.1.0/src/map.rs
    78
        fn into_iter(self) -> Self::IntoIter {
    79
            #[allow(clippy::into_iter_on_ref)]
    80
            (&self.0).into_iter()
    89
        fn into_iter(self) -> Self::IntoIter {
    90
            #[allow(clippy::into_iter_on_ref)]
    91
            (&mut self.0).into_iter()
  • raii-map 0.1.0/src/set.rs
    54
        fn into_iter(self) -> Self::IntoIter {
    55
            #[allow(clippy::into_iter_on_ref)]
    56
            (&self.0).into_iter()
  • reql 0.11.1/src/cmd/branch.rs
    22
    #[allow(array_into_iter)]
    23
    #[allow(clippy::into_iter_on_ref)]
    24
    impl<const N: usize> Arg for Args<([(Command, Command); N], Command)> {
  • reql 0.11.1/src/cmd/do_.rs
    36
    #[allow(array_into_iter)]
    37
    #[allow(clippy::into_iter_on_ref)]
    38
    impl<const N: usize> Arg for Args<([Command; N], Command)> {
    49
    #[allow(array_into_iter)]
    50
    #[allow(clippy::into_iter_on_ref)]
    51
    impl<T, const N: usize> Arg for Args<([T; N], Command)>
    73
    #[allow(array_into_iter)]
    74
    #[allow(clippy::into_iter_on_ref)]
    75
    impl<const N: usize> Arg for Args<([Command; N], Func)> {
    86
    #[allow(array_into_iter)]
    87
    #[allow(clippy::into_iter_on_ref)]
    88
    impl<T, const N: usize> Arg for Args<([T; N], Func)>
  • reql 0.11.1/src/cmd/get_all.rs
    40
    #[allow(array_into_iter)]
    41
    #[allow(clippy::into_iter_on_ref)]
    42
    impl<T, const N: usize> Arg for Args<[T; N]>
    58
    #[allow(array_into_iter)]
    59
    #[allow(clippy::into_iter_on_ref)]
    60
    impl<T, const N: usize> Arg for Args<([T; N], Options)>
  • reql 0.11.1/src/cmd/map.rs
    36
    #[allow(array_into_iter)]
    37
    #[allow(clippy::into_iter_on_ref)]
    38
    impl<const N: usize> Arg for Args<([Command; N], Func)> {
    57
    #[allow(array_into_iter)]
    58
    #[allow(clippy::into_iter_on_ref)]
    59
    impl<T, const N: usize> Arg for Args<([T; N], Func)>
  • reql 0.11.1/src/proto.rs
    42
    #[allow(array_into_iter)]
    43
    #[allow(clippy::into_iter_on_ref)]
    44
    impl<const N: usize> From<[Command; N]> for Command {
  • snarkvm-compiler 0.9.0/src/process/execute.rs
    220
            // Finalize each transition, starting from the last one.
    221
            #[allow(clippy::into_iter_on_ref)]
    222
            for transition in execution.into_iter().rev() {
  • thin-vec 0.2.10/src/lib.rs
    2274
    impl<T: Clone> Clone for IntoIter<T> {
    2275
        #[allow(clippy::into_iter_on_ref)]
    2276
        fn clone(&self) -> Self {
  • threescalers 0.8.0/src/extensions/list.rs
    131
        #[allow(clippy::into_iter_on_ref)]
    132
        fn into_iter(self) -> Self::IntoIter {
    141
        #[allow(clippy::into_iter_on_ref)]
    142
        fn into_iter(self) -> Self::IntoIter {
  • tract-core 0.19.2/src/ops/math/complex.rs
    28
    impl TypedOp for InnerDimToComplex {
    29
        #[allow(clippy::into_iter_on_ref)]
    30
        fn output_facts(&self, inputs: &[&TypedFact]) -> TractResult<TVec<TypedFact>> {
  • typed-index-collections 3.1.0/src/slice/mod.rs
    1525
        #[allow(clippy::into_iter_on_ref)]
    1526
        fn into_iter(self) -> Iter<'a, V> {
    1535
        #[allow(clippy::into_iter_on_ref)]
    1536
        fn into_iter(self) -> IterMut<'a, V> {
  • openapi_type_derive 0.4.2/src/lib.rs
    1
    #![allow(clippy::into_iter_on_ref)]
    2
    #![warn(missing_debug_implementations, rust_2018_idioms)]
  • sarek 0.1.0/src/lib.rs
    1
    #![feature(non_exhaustive)]
    2
    #![allow(clippy::into_iter_on_ref)]
    3
    #![allow(clippy::into_iter_on_array)]