pub struct DirtySpan {
pub start: u16,
pub end: u16,
}Expand description
A half-open column range [start, end) marking dirty cells in a row.
Fields§
§start: u16Start column (inclusive).
end: u16End column (exclusive).
Implementations§
Trait Implementations§
impl Copy for DirtySpan
impl Eq for DirtySpan
impl StructuralPartialEq for DirtySpan
Auto Trait Implementations§
impl Freeze for DirtySpan
impl RefUnwindSafe for DirtySpan
impl Send for DirtySpan
impl Sync for DirtySpan
impl Unpin for DirtySpan
impl UnwindSafe for DirtySpan
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