#[repr(C)]pub struct heif_image_tiling {
pub version: c_int,
pub num_columns: u32,
pub num_rows: u32,
pub tile_width: u32,
pub tile_height: u32,
pub image_width: u32,
pub image_height: u32,
pub top_offset: u32,
pub left_offset: u32,
pub number_of_extra_dimensions: u8,
pub extra_dimension_size: [u32; 8],
}Fields§
§version: c_int§num_columns: u32— version 1
num_rows: u32§tile_width: u32§tile_height: u32§image_width: u32§image_height: u32§top_offset: u32Position of the top left tile. Usually, this is (0;0), but if a tiled image is rotated or cropped, it may be that the top left tile should be placed at a negative position. The offsets define this negative shift.
left_offset: u32§number_of_extra_dimensions: u80 for normal images, 1 for volumetric (3D), …
extra_dimension_size: [u32; 8]size of extra dimensions (first 8 dimensions)
Trait Implementations§
Source§impl Clone for heif_image_tiling
impl Clone for heif_image_tiling
Source§fn clone(&self) -> heif_image_tiling
fn clone(&self) -> heif_image_tiling
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for heif_image_tiling
impl Debug for heif_image_tiling
impl Copy for heif_image_tiling
Auto Trait Implementations§
impl Freeze for heif_image_tiling
impl RefUnwindSafe for heif_image_tiling
impl Send for heif_image_tiling
impl Sync for heif_image_tiling
impl Unpin for heif_image_tiling
impl UnwindSafe for heif_image_tiling
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