Lines Matching defs:IntoIter
77 type IntoIter = IntoIter<T>;
80 fn into_iter(self) -> IntoIter<T> {
81 let it = IntoIter {
136 pub struct IntoIter<T: Stackable> {
141 impl<T: Stackable> Drop for IntoIter<T> {
152 impl<T: Stackable> Iterator for IntoIter<T> {
168 impl<T: Stackable> DoubleEndedIterator for IntoIter<T> {
178 impl<T: Stackable> ExactSizeIterator for IntoIter<T> {}
280 type IntoIter = Iter<'a, T>;
289 type IntoIter = IterMut<'a, T>;
298 type IntoIter = Iter<'a, T>;
307 type IntoIter = IterMut<'a, T>;