#[repr(C)]pub struct heif_depth_representation_info {Show 13 fields
pub version: u8,
pub has_z_near: u8,
pub has_z_far: u8,
pub has_d_min: u8,
pub has_d_max: u8,
pub z_near: f64,
pub z_far: f64,
pub d_min: f64,
pub d_max: f64,
pub depth_representation_type: heif_depth_representation_type,
pub disparity_reference_view: u32,
pub depth_nonlinear_representation_model_size: u32,
pub depth_nonlinear_representation_model: *mut u8,
}Fields§
§version: u8§has_z_near: u8version 1 fields
has_z_far: u8§has_d_min: u8§has_d_max: u8§z_near: f64§z_far: f64§d_min: f64§d_max: f64§depth_representation_type: heif_depth_representation_type§disparity_reference_view: u32§depth_nonlinear_representation_model_size: u32§depth_nonlinear_representation_model: *mut u8Trait Implementations§
Auto Trait Implementations§
impl Freeze for heif_depth_representation_info
impl RefUnwindSafe for heif_depth_representation_info
impl !Send for heif_depth_representation_info
impl !Sync for heif_depth_representation_info
impl Unpin for heif_depth_representation_info
impl UnwindSafe for heif_depth_representation_info
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