Note: This page contains multiple implementations.
Objects that can be turned into iterators.
impl IntoIterator for RangeTo<u16> {
type Item = u16;
type IntoIter = Range<u16>;
}impl IntoIterator for RangeTo<i32> {
type Item = i32;
type IntoIter = Range<i32>;
}impl IntoIterator for RangeTo<u32> {
type Item = u32;
type IntoIter = Range<u32>;
}impl IntoIterator for RangeTo<i64> {
type Item = i64;
type IntoIter = Range<i64>;
}impl IntoIterator for RangeTo<u64> {
type Item = u64;
type IntoIter = Range<u64>;
}impl IntoIterator for RangeTo<isize> {
type Item = isize;
type IntoIter = Range<isize>;
}impl IntoIterator for RangeTo<usize> {
type Item = usize;
type IntoIter = Range<usize>;
}impl IntoIterator for RangeTo<u8> {
type Item = u8;
type IntoIter = Range<u8>;
}impl IntoIterator for RangeTo<i16> {
type Item = i16;
type IntoIter = Range<i16>;
}impl IntoIterator for RangeTo<i8> {
type Item = i8;
type IntoIter = Range<i8>;
}