[][src]Struct gfx_hal::pass::Subpass

pub struct Subpass<'a, B: Backend> {
    pub index: SubpassId,
    pub main_pass: &'a B::RenderPass,
}

A sub-pass borrow of a pass.

Fields

index: SubpassId

Index of the subpass

main_pass: &'a B::RenderPass

Main pass borrow.

Trait Implementations

impl<'a, B: Backend> PartialEq<Subpass<'a, B>> for Subpass<'a, B>[src]

#[must_use] fn ne(&self, other: &Rhs) -> bool1.0.0[src]

This method tests for !=.

impl<'a, B: Backend> Clone for Subpass<'a, B>[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<'a, B: Backend> Eq for Subpass<'a, B>[src]

impl<'a, B: Backend> Copy for Subpass<'a, B>[src]

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

Auto Trait Implementations

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

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

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

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

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

Blanket Implementations

impl<T> Supports<T> for T[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.

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

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

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