pub struct Tile {
pub tile_offset: u32,
pub tile_size: u32,
pub tile_row: u32,
pub tile_col: u32,
pub mi_row_start: u32,
pub mi_row_end: u32,
pub mi_col_start: u32,
pub mi_col_end: u32,
}
Fields§
§tile_offset: u32
Same as TileOffset in the specification.
tile_size: u32
Same as TileSize in the specification.
tile_row: u32
Same as TileRow in the specification.
tile_col: u32
Same as TileCol in the specification.
mi_row_start: u32
§mi_row_end: u32
§mi_col_start: u32
§mi_col_end: u32
Trait Implementations§
impl Eq for Tile
impl StructuralPartialEq for Tile
Auto Trait Implementations§
impl Freeze for Tile
impl RefUnwindSafe for Tile
impl Send for Tile
impl Sync for Tile
impl Unpin for Tile
impl UnwindSafe for Tile
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