pub struct IterElement<R, T> where
    R: RangeBounds<T>,
    T: Ord
{ pub value: R, /* private fields */ }
Expand description

An element obtained from Iter.

This element allows access to its value, as well as providing an Iterator over all values nested within value through the sublist() method.

Example

use nested_containment_list::NestedContainmentList;
use std::iter::FromIterator;

let nclist = NestedContainmentList::from_iter(vec![1..2]);

let mut iter = nclist.into_iter();
assert_eq!(iter.next().unwrap().value, 1..2);

Fields

value: R

Implementations

Returns an Iter Iterator over this element’s sublist.

Note that this method consumes the IterElement.

Example
use nested_containment_list::NestedContainmentList;
use std::iter::FromIterator;

let nclist = NestedContainmentList::from_iter(vec![1..4, 2..3]);

let mut iter = nclist.into_iter();
let mut sublist = iter.next().unwrap().sublist();
assert_eq!(sublist.next().unwrap().value, 2..3);

Trait Implementations

Formats the value using the given formatter. Read more

Returns an Iterator over this element’s value, followed by its sublist().

This is useful if you want to iterate over all values including the enclosing value.

Example
use nested_containment_list::NestedContainmentList;
use std::iter::FromIterator;

let nclist = NestedContainmentList::from_iter(vec![1..4, 2..3]);
let mut iter = nclist.into_iter();
let first_element = iter.next().unwrap();
let mut first_element_iter = first_element.into_iter();

assert_eq!(first_element_iter.next().unwrap().value, 1..4);
assert_eq!(first_element_iter.next().unwrap().value, 2..3);

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.