Struct vulkanalia_sys::CommandBufferInheritanceInfo[][src]

#[repr(C)]pub struct CommandBufferInheritanceInfo {
    pub s_type: StructureType,
    pub next: *const c_void,
    pub render_pass: RenderPass,
    pub subpass: u32,
    pub framebuffer: Framebuffer,
    pub occlusion_query_enable: Bool32,
    pub query_flags: QueryControlFlags,
    pub pipeline_statistics: QueryPipelineStatisticFlags,
}

Fields

s_type: StructureTypenext: *const c_voidrender_pass: RenderPasssubpass: u32framebuffer: Framebufferocclusion_query_enable: Bool32query_flags: QueryControlFlagspipeline_statistics: QueryPipelineStatisticFlags

Trait Implementations

impl Clone for CommandBufferInheritanceInfo[src]

impl Copy for CommandBufferInheritanceInfo[src]

impl Debug for CommandBufferInheritanceInfo[src]

impl Default for CommandBufferInheritanceInfo[src]

impl Eq for CommandBufferInheritanceInfo[src]

impl Hash for CommandBufferInheritanceInfo[src]

impl PartialEq<CommandBufferInheritanceInfo> for CommandBufferInheritanceInfo[src]

impl StructuralEq for CommandBufferInheritanceInfo[src]

impl StructuralPartialEq for CommandBufferInheritanceInfo[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.