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