pub struct TileRange {
pub min_col: i32,
pub max_col: i32,
pub min_row: i32,
pub max_row: i32,
}Expand description
The range of tile indices covering a clip rectangle.
Fields§
§min_col: i32Lowest column index, inclusive.
max_col: i32Highest column index, inclusive.
min_row: i32Lowest row index, inclusive.
max_row: i32Highest row index, inclusive.
Trait Implementations§
impl Copy for TileRange
impl Eq for TileRange
impl StructuralPartialEq for TileRange
Auto Trait Implementations§
impl Freeze for TileRange
impl RefUnwindSafe for TileRange
impl Send for TileRange
impl Sync for TileRange
impl Unpin for TileRange
impl UnsafeUnpin for TileRange
impl UnwindSafe for TileRange
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