[][src]Struct rendy_core::hal::command::CommandBufferInheritanceInfo

pub struct CommandBufferInheritanceInfo<'a, B> where
    B: Backend
{ pub subpass: Option<Subpass<'a, B>>, pub framebuffer: Option<&'a <B as Backend>::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 as Backend>::Framebuffer>occlusion_query_enable: boolocclusion_query_flags: ControlFlagspipeline_statistics: PipelineStatistic

Trait Implementations

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

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

Auto Trait Implementations

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

impl<'a, B> Send for CommandBufferInheritanceInfo<'a, B> where
    <B as Backend>::Framebuffer: Sync,
    <B as Backend>::RenderPass: Sync

impl<'a, B> Sync for CommandBufferInheritanceInfo<'a, B> where
    <B as Backend>::Framebuffer: Sync,
    <B as Backend>::RenderPass: Sync

impl<'a, B> Unpin for CommandBufferInheritanceInfo<'a, B>

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

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.