Struct x264_param_t__bindgen_ty_3

Source
#[repr(C)]
pub struct x264_param_t__bindgen_ty_3 {
Show 29 fields pub i_rc_method: c_int, pub i_qp_constant: c_int, pub i_qp_min: c_int, pub i_qp_max: c_int, pub i_qp_step: c_int, pub i_bitrate: c_int, pub f_rf_constant: f32, pub f_rf_constant_max: f32, pub f_rate_tolerance: f32, pub i_vbv_max_bitrate: c_int, pub i_vbv_buffer_size: c_int, pub f_vbv_buffer_init: f32, pub f_ip_factor: f32, pub f_pb_factor: f32, pub b_filler: c_int, pub i_aq_mode: c_int, pub f_aq_strength: f32, pub b_mb_tree: c_int, pub i_lookahead: c_int, pub b_stat_write: c_int, pub psz_stat_out: *mut c_char, pub b_stat_read: c_int, pub psz_stat_in: *mut c_char, pub f_qcompress: f32, pub f_qblur: f32, pub f_complexity_blur: f32, pub zones: *mut x264_zone_t, pub i_zones: c_int, pub psz_zones: *mut c_char,
}

Fields§

§i_rc_method: c_int§i_qp_constant: c_int§i_qp_min: c_int§i_qp_max: c_int§i_qp_step: c_int§i_bitrate: c_int§f_rf_constant: f32§f_rf_constant_max: f32§f_rate_tolerance: f32§i_vbv_max_bitrate: c_int§i_vbv_buffer_size: c_int§f_vbv_buffer_init: f32§f_ip_factor: f32§f_pb_factor: f32§b_filler: c_int§i_aq_mode: c_int§f_aq_strength: f32§b_mb_tree: c_int§i_lookahead: c_int§b_stat_write: c_int§psz_stat_out: *mut c_char§b_stat_read: c_int§psz_stat_in: *mut c_char§f_qcompress: f32§f_qblur: f32§f_complexity_blur: f32§zones: *mut x264_zone_t§i_zones: c_int§psz_zones: *mut c_char

Trait Implementations§

Source§

impl Clone for x264_param_t__bindgen_ty_3

Source§

fn clone(&self) -> x264_param_t__bindgen_ty_3

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for x264_param_t__bindgen_ty_3

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Copy for x264_param_t__bindgen_ty_3

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.