(self)
| 86 | type IntoIter = AttributeSetRefIter<'a, T>; |
| 87 | |
| 88 | fn into_iter(self) -> Self::IntoIter { |
| 89 | AttributeSetRefIter { |
| 90 | _indexer: std::marker::PhantomData, |
| 91 | inner: self.bitslice.iter_ones(), |
| 92 | offset: 0, |
| 93 | } |
| 94 | } |
| 95 | } |
| 96 | |
| 97 | pub struct AttributeSetRefIter<'a, T> { |
no outgoing calls