enum OverlapRelationship {
Advance(Advance),
Overlap(Overlap),
}Expand description
The relationship between two regions.
Variants§
Advance(Advance)
There is no overlap between the regions, advance the region iterator on the given side.
Overlap(Overlap)
There is an overlap between the regions.
Auto Trait Implementations§
impl Freeze for OverlapRelationship
impl RefUnwindSafe for OverlapRelationship
impl Send for OverlapRelationship
impl Sync for OverlapRelationship
impl Unpin for OverlapRelationship
impl UnsafeUnpin for OverlapRelationship
impl UnwindSafe for OverlapRelationship
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