pub enum Report {
This(usize, usize),
That(usize, usize),
Both(usize, usize),
}Expand description
A report we would expect to see in a sequence about two layers.
A sequence of these reports reveal an ordered traversal of the keys of two layers, with ranges exclusive to one, ranges exclusive to the other, and individual elements (not ranges) common to both.
Variants§
This(usize, usize)
Range of indices in this input.
That(usize, usize)
Range of indices in that input.
Both(usize, usize)
Matching indices in both inputs.
Trait Implementations§
Source§impl Columnar for Report
impl Columnar for Report
Source§type Container = ReportContainer<<(usize, usize) as Columnar>::Container, <(usize, usize) as Columnar>::Container, <(usize, usize) as Columnar>::Container>
type Container = ReportContainer<<(usize, usize) as Columnar>::Container, <(usize, usize) as Columnar>::Container, <(usize, usize) as Columnar>::Container>
The type that stores the columnar representation. Read more
Source§fn copy_from<'a>(&mut self, other: Ref<'a, Self>)
fn copy_from<'a>(&mut self, other: Ref<'a, Self>)
Repopulates
self from a reference. Read moreSource§fn into_owned<'a>(other: Ref<'a, Self>) -> Self
fn into_owned<'a>(other: Ref<'a, Self>) -> Self
Produce an instance of
Self from Self::Ref<'a>.Source§fn as_columns<'a, I>(selves: I) -> Self::Containerwhere
I: IntoIterator<Item = &'a Self>,
Self: 'a,
fn as_columns<'a, I>(selves: I) -> Self::Containerwhere
I: IntoIterator<Item = &'a Self>,
Self: 'a,
Converts a sequence of the references to the type into columnar form.
Source§fn into_columns<I>(selves: I) -> Self::Containerwhere
I: IntoIterator<Item = Self>,
Self: Sized,
fn into_columns<I>(selves: I) -> Self::Containerwhere
I: IntoIterator<Item = Self>,
Self: Sized,
Converts a sequence of the type into columnar form. Read more
Source§impl<'columnar, C0, C1, C2> Push<&'columnar Report> for ReportContainer<C0, C1, C2>
impl<'columnar, C0, C1, C2> Push<&'columnar Report> for ReportContainer<C0, C1, C2>
Source§impl<C0, C1, C2> Push<Report> for ReportContainer<C0, C1, C2>
impl<C0, C1, C2> Push<Report> for ReportContainer<C0, C1, C2>
impl Copy for Report
Auto Trait Implementations§
impl Freeze for Report
impl RefUnwindSafe for Report
impl Send for Report
impl Sync for Report
impl Unpin for Report
impl UnsafeUnpin for Report
impl UnwindSafe for Report
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<'a, S, T> Semigroup<&'a S> for Twhere
T: Semigroup<S>,
impl<'a, S, T> Semigroup<&'a S> for Twhere
T: Semigroup<S>,
Source§fn plus_equals(&mut self, rhs: &&'a S)
fn plus_equals(&mut self, rhs: &&'a S)
The method of
std::ops::AddAssign, for types that do not implement AddAssign.