#[repr(C)]pub struct VideoEncodeAV1RateControlLayerInfoKHR {
pub s_type: StructureType,
pub p_next: *const c_void,
pub use_min_q_index: u32,
pub min_q_index: VideoEncodeAV1QIndexKHR,
pub use_max_q_index: u32,
pub max_q_index: VideoEncodeAV1QIndexKHR,
pub use_max_frame_size: u32,
pub max_frame_size: VideoEncodeAV1FrameSizeKHR,
}Expand description
VkVideoEncodeAV1RateControlLayerInfoKHR
Provided by VK_KHR_video_encode_av1.
§Extends
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_VIDEO_ENCODE_AV1_RATE_CONTROL_LAYER_INFO_KHR.
p_next: *const c_voidOptional, may be null.
use_min_q_index: u32§min_q_index: VideoEncodeAV1QIndexKHR§use_max_q_index: u32§max_q_index: VideoEncodeAV1QIndexKHR§use_max_frame_size: u32§max_frame_size: VideoEncodeAV1FrameSizeKHRImplementations§
Source§impl VideoEncodeAV1RateControlLayerInfoKHR
impl VideoEncodeAV1RateControlLayerInfoKHR
Sourcepub fn builder<'a>() -> VideoEncodeAV1RateControlLayerInfoKHRBuilder<'a>
pub fn builder<'a>() -> VideoEncodeAV1RateControlLayerInfoKHRBuilder<'a>
Start building this struct; s_type is already set to the correct variant.
Trait Implementations§
Source§impl Clone for VideoEncodeAV1RateControlLayerInfoKHR
impl Clone for VideoEncodeAV1RateControlLayerInfoKHR
Source§fn clone(&self) -> VideoEncodeAV1RateControlLayerInfoKHR
fn clone(&self) -> VideoEncodeAV1RateControlLayerInfoKHR
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 Default for VideoEncodeAV1RateControlLayerInfoKHR
impl Default for VideoEncodeAV1RateControlLayerInfoKHR
Source§fn default() -> VideoEncodeAV1RateControlLayerInfoKHR
fn default() -> VideoEncodeAV1RateControlLayerInfoKHR
Returns the “default value” for a type. Read more
impl Copy for VideoEncodeAV1RateControlLayerInfoKHR
impl ExtendsVideoEncodeRateControlLayerInfoKHR for VideoEncodeAV1RateControlLayerInfoKHR
Auto Trait Implementations§
impl Freeze for VideoEncodeAV1RateControlLayerInfoKHR
impl RefUnwindSafe for VideoEncodeAV1RateControlLayerInfoKHR
impl !Send for VideoEncodeAV1RateControlLayerInfoKHR
impl !Sync for VideoEncodeAV1RateControlLayerInfoKHR
impl Unpin for VideoEncodeAV1RateControlLayerInfoKHR
impl UnsafeUnpin for VideoEncodeAV1RateControlLayerInfoKHR
impl UnwindSafe for VideoEncodeAV1RateControlLayerInfoKHR
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