#[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: QueryPipelineStatisticFlags
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§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreimpl 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