#[repr(C)]pub struct x264_image_properties_t {
pub quant_offsets: *mut f32,
pub quant_offsets_free: Option<unsafe extern "C" fn(arg1: *mut c_void)>,
pub mb_info: *mut u8,
pub mb_info_free: Option<unsafe extern "C" fn(arg1: *mut c_void)>,
pub f_ssim: f64,
pub f_psnr_avg: f64,
pub f_psnr: [f64; 3],
pub f_crf_avg: f64,
}Fields§
§quant_offsets: *mut f32§quant_offsets_free: Option<unsafe extern "C" fn(arg1: *mut c_void)>§mb_info: *mut u8§mb_info_free: Option<unsafe extern "C" fn(arg1: *mut c_void)>§f_ssim: f64§f_psnr_avg: f64§f_psnr: [f64; 3]§f_crf_avg: f64Trait Implementations§
Source§impl Clone for x264_image_properties_t
impl Clone for x264_image_properties_t
Source§fn clone(&self) -> x264_image_properties_t
fn clone(&self) -> x264_image_properties_t
Returns a copy 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 x264_image_properties_t
impl Debug for x264_image_properties_t
impl Copy for x264_image_properties_t
Auto Trait Implementations§
impl Freeze for x264_image_properties_t
impl RefUnwindSafe for x264_image_properties_t
impl !Send for x264_image_properties_t
impl !Sync for x264_image_properties_t
impl Unpin for x264_image_properties_t
impl UnwindSafe for x264_image_properties_t
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