OverlappingElement

Struct OverlappingElement 

Source
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§

Source§

impl<'a, R, S, T> OverlappingElement<'a, R, S, T>
where R: RangeBounds<T>, S: RangeBounds<T>, T: Ord,

Source

pub fn sublist(&self) -> Overlapping<'a, R, S, T>

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§

Source§

impl<'a, R, S, T> Debug for OverlappingElement<'a, R, S, T>
where R: RangeBounds<T> + 'a + Debug, S: RangeBounds<T> + 'a + Debug, T: Ord + 'a + Debug,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'a, R, S, T> IntoIterator for OverlappingElement<'a, R, S, T>
where R: RangeBounds<T>, S: RangeBounds<T>, T: Ord,

Source§

fn into_iter(self) -> Self::IntoIter

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));
Source§

type Item = OverlappingElement<'a, R, S, T>

The type of the elements being iterated over.
Source§

type IntoIter = Chain<Once<<OverlappingElement<'a, R, S, T> as IntoIterator>::Item>, Overlapping<'a, R, S, T>>

Which kind of iterator are we turning this into?

Auto Trait Implementations§

§

impl<'a, R, S, T> Freeze for OverlappingElement<'a, R, S, T>

§

impl<'a, R, S, T> RefUnwindSafe for OverlappingElement<'a, R, S, T>

§

impl<'a, R, S, T> Send for OverlappingElement<'a, R, S, T>
where R: Sync, S: Sync, T: Send + Sync,

§

impl<'a, R, S, T> Sync for OverlappingElement<'a, R, S, T>
where R: Sync, S: Sync, T: Sync,

§

impl<'a, R, S, T> Unpin for OverlappingElement<'a, R, S, T>
where T: Unpin,

§

impl<'a, R, S, T> UnwindSafe for OverlappingElement<'a, R, S, T>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

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

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.