Struct bitflags::__core::collections::btree_set::Range
[−]
[src]
pub struct Range<'a, T> where T: 'a {
// some fields omitted
}
Unstable (
collections
): library is unlikely to be stabilized with the current layout and name, use std::collections instead
An iterator over a sub-range of BTreeSet's items.
Trait Implementations
impl<'a, T> Clone for Range<'a, T>
fn clone(&self) -> Range<'a, T>
Unstable (
collections
): library is unlikely to be stabilized with the current layout and name, use std::collections instead
1.0.0fn clone_from(&mut self, source: &Self)
impl<'a, T> DoubleEndedIterator for Range<'a, T>
fn next_back(&mut self) -> Option<&'a T>
Unstable (
collections
): library is unlikely to be stabilized with the current layout and name, use std::collections instead
impl<'a, T> Iterator for Range<'a, T>
type Item = &'a T
Unstable (
collections
): library is unlikely to be stabilized with the current layout and name, use std::collections instead
fn next(&mut self) -> Option<&'a T>
Unstable (
collections
): library is unlikely to be stabilized with the current layout and name, use std::collections instead