#[repr(C)]pub struct VideoEncodeH264RateControlLayerInfoKHR {
pub s_type: StructureType,
pub next: *const c_void,
pub use_min_qp: Bool32,
pub min_qp: VideoEncodeH264QpKHR,
pub use_max_qp: Bool32,
pub max_qp: VideoEncodeH264QpKHR,
pub use_max_frame_size: Bool32,
pub max_frame_size: VideoEncodeH264FrameSizeKHR,
}Expand description
Fields§
§s_type: StructureType§next: *const c_void§use_min_qp: Bool32§min_qp: VideoEncodeH264QpKHR§use_max_qp: Bool32§max_qp: VideoEncodeH264QpKHR§use_max_frame_size: Bool32§max_frame_size: VideoEncodeH264FrameSizeKHRTrait Implementations§
Source§impl Clone for VideoEncodeH264RateControlLayerInfoKHR
impl Clone for VideoEncodeH264RateControlLayerInfoKHR
Source§fn clone(&self) -> VideoEncodeH264RateControlLayerInfoKHR
fn clone(&self) -> VideoEncodeH264RateControlLayerInfoKHR
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 PartialEq for VideoEncodeH264RateControlLayerInfoKHR
impl PartialEq for VideoEncodeH264RateControlLayerInfoKHR
Source§fn eq(&self, other: &VideoEncodeH264RateControlLayerInfoKHR) -> bool
fn eq(&self, other: &VideoEncodeH264RateControlLayerInfoKHR) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for VideoEncodeH264RateControlLayerInfoKHR
impl Eq for VideoEncodeH264RateControlLayerInfoKHR
impl Send for VideoEncodeH264RateControlLayerInfoKHR
impl StructuralPartialEq for VideoEncodeH264RateControlLayerInfoKHR
impl Sync for VideoEncodeH264RateControlLayerInfoKHR
Auto Trait Implementations§
impl Freeze for VideoEncodeH264RateControlLayerInfoKHR
impl RefUnwindSafe for VideoEncodeH264RateControlLayerInfoKHR
impl Unpin for VideoEncodeH264RateControlLayerInfoKHR
impl UnwindSafe for VideoEncodeH264RateControlLayerInfoKHR
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