Struct rustc_mir_build::thir::pattern::deconstruct_pat::SplitIntRange
source · Expand description
A range of integers that is partitioned into disjoint subranges. This does constructor splitting for integer ranges as explained at the top of the file.
This is fed multiple ranges, and returns an output that covers the input, but is split so that the only intersections between an output range and a seen range are inclusions. No output range straddles the boundary of one of the inputs.
The following input:
|-------------------------| // `self`
|------| |----------| |----|
|-------| |-------|
would be iterated over as follows:
||---|--||-|---|---|---|--|
Fields
range: IntRange
The range we are splitting
borders: Vec<IntBorder>
The borders of ranges we have seen. They are all contained within range
. This is kept
sorted.
Implementations
Trait Implementations
sourceimpl Clone for SplitIntRange
impl Clone for SplitIntRange
sourcefn clone(&self) -> SplitIntRange
fn clone(&self) -> SplitIntRange
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreAuto Trait Implementations
impl RefUnwindSafe for SplitIntRange
impl Send for SplitIntRange
impl Sync for SplitIntRange
impl Unpin for SplitIntRange
impl UnwindSafe for SplitIntRange
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
impl<'a, T> Captures<'a> for Twhere
T: ?Sized,
Layout
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference’s “Type Layout” chapter for details on type layout guarantees.
Size: 80 bytes