#[repr(C)]pub struct CommandBufferInheritanceInfo {
pub sType: StructureType,
pub pNext: *const c_void,
pub renderPass: RenderPass,
pub subpass: u32,
pub framebuffer: Framebuffer,
pub occlusionQueryEnable: Bool32,
pub queryFlags: QueryControlFlags,
pub pipelineStatistics: QueryPipelineStatisticFlags,
}Fields§
§sType: StructureType§pNext: *const c_void§renderPass: RenderPass§subpass: u32§framebuffer: Framebuffer§occlusionQueryEnable: Bool32§queryFlags: QueryControlFlags§pipelineStatistics: QueryPipelineStatisticFlagsImplementations§
Source§impl CommandBufferInheritanceInfo
impl CommandBufferInheritanceInfo
pub fn new() -> Self
pub fn sType(self, sType: StructureType) -> Self
pub fn pNext(self, pNext: *const c_void) -> Self
pub fn renderPass(self, renderPass: RenderPass) -> Self
pub fn subpass(self, subpass: u32) -> Self
pub fn framebuffer(self, framebuffer: Framebuffer) -> Self
pub fn occlusionQueryEnable(self, occlusionQueryEnable: Bool32) -> Self
pub fn queryFlags(self, queryFlags: QueryControlFlags) -> Self
pub fn pipelineStatistics( self, pipelineStatistics: QueryPipelineStatisticFlags, ) -> Self
Trait Implementations§
Source§impl Clone for CommandBufferInheritanceInfo
impl Clone for CommandBufferInheritanceInfo
Source§fn clone(&self) -> CommandBufferInheritanceInfo
fn clone(&self) -> CommandBufferInheritanceInfo
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 Debug for CommandBufferInheritanceInfo
impl Debug for CommandBufferInheritanceInfo
Source§impl Default for CommandBufferInheritanceInfo
impl Default for CommandBufferInheritanceInfo
Source§fn default() -> CommandBufferInheritanceInfo
fn default() -> CommandBufferInheritanceInfo
Returns the “default value” for a type. Read more
impl Copy for CommandBufferInheritanceInfo
Auto Trait Implementations§
impl Freeze for CommandBufferInheritanceInfo
impl RefUnwindSafe for CommandBufferInheritanceInfo
impl !Send for CommandBufferInheritanceInfo
impl !Sync for CommandBufferInheritanceInfo
impl Unpin for CommandBufferInheritanceInfo
impl UnwindSafe for CommandBufferInheritanceInfo
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