Note: This page contains multiple implementations.
Objects that can be iterated over.
impl Iterator for Range<i16> {
type Item = i16;
}impl Iterator for Range<u16> {
type Item = u16;
}impl Iterator for Range<i32> {
type Item = i32;
}impl Iterator for Range<u32> {
type Item = u32;
}impl Iterator for Range<i64> {
type Item = i64;
}impl Iterator for Range<u64> {
type Item = u64;
}impl Iterator for Range<isize> {
type Item = isize;
}impl Iterator for Range<usize> {
type Item = usize;
}impl Iterator for Range<u8> {
type Item = u8;
}impl Iterator for Range<i8> {
type Item = i8;
}