pub struct OverlappingElement<'a, R, S, T> where
    R: RangeBounds<T> + 'a,
    S: RangeBounds<T> + 'a,
    T: Ord + 'a, 
{ pub value: &'a R, /* private fields */ }
Expand description

An element contained within an Overlapping.

This element allows access to its contained value I and its sub-elements which also overlap with the query S.

An OverlappingElement is usually obtained from iterating over an Overlapping.

Example

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

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

let overlapping_element = overlapping.next().unwrap();
assert_eq!(overlapping_element.value, &(1..4));

let inner_overlapping_element = overlapping_element.sublist().next().unwrap();
assert_eq!(inner_overlapping_element.value, &(2..3));

Fields

value: &'a R

Implementations

Return an Overlapping Iterator over this element’s contained sublist.

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

let nclist = NestedContainmentList::from_iter(vec![1..5, 2..3, 3..4]);
let query = 2..4;
let mut overlapping = nclist.overlapping(&query);

let overlapping_element = overlapping.next().unwrap();
assert_eq!(overlapping_element.value, &(1..5));

let mut inner_overlapping = overlapping_element.sublist();
assert_eq!(inner_overlapping.next().unwrap().value, &(2..3));
assert_eq!(inner_overlapping.next().unwrap().value, &(3..4));

Trait Implementations

Formats the value using the given formatter. Read more

Returns an Iterator over this element’s value, followed by its sublist() elements that overlap with the query S.

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 overlapping = nclist.overlapping(&(2..5));
let first_element = overlapping.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.