Struct gfx_hal::command::CommandBufferInheritanceInfo[][src]

pub struct CommandBufferInheritanceInfo<'a, B: Backend> {
    pub subpass: Option<Subpass<'a, B>>,
    pub framebuffer: Option<&'a B::Framebuffer>,
    pub occlusion_query_enable: bool,
    pub occlusion_query_flags: ControlFlags,
    pub pipeline_statistics: PipelineStatistic,
}

Fields

subpass: Option<Subpass<'a, B>>framebuffer: Option<&'a B::Framebuffer>occlusion_query_enable: boolocclusion_query_flags: ControlFlagspipeline_statistics: PipelineStatistic

Trait Implementations

impl<'a, B: Debug + Backend> Debug for CommandBufferInheritanceInfo<'a, B> where
    B::Framebuffer: Debug
[src]

impl<'a, B: Backend> Default for CommandBufferInheritanceInfo<'a, B>[src]

Auto Trait Implementations

impl<'a, B> RefUnwindSafe for CommandBufferInheritanceInfo<'a, B> where
    <B as Backend>::Framebuffer: RefUnwindSafe,
    <B as Backend>::RenderPass: RefUnwindSafe
[src]

impl<'a, B> Send for CommandBufferInheritanceInfo<'a, B>[src]

impl<'a, B> Sync for CommandBufferInheritanceInfo<'a, B>[src]

impl<'a, B> Unpin for CommandBufferInheritanceInfo<'a, B>[src]

impl<'a, B> UnwindSafe for CommandBufferInheritanceInfo<'a, B> where
    <B as Backend>::Framebuffer: RefUnwindSafe,
    <B as Backend>::RenderPass: RefUnwindSafe
[src]

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, 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.