struct Overlap {
start: u16,
end: u16,
advance: Advance,
}Expand description
An overlap between two regions.
Fields§
§start: u16The start x coordinate.
end: u16The end x coordinate.
advance: AdvanceWhether the left or right region iterator should be advanced next.
Implementations§
Auto Trait Implementations§
impl Freeze for Overlap
impl RefUnwindSafe for Overlap
impl Send for Overlap
impl Sync for Overlap
impl Unpin for Overlap
impl UnsafeUnpin for Overlap
impl UnwindSafe for Overlap
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