[][src]Struct rendy_chain::Barrier

pub struct Barrier<R: Resource> {
    pub families: Option<Range<QueueFamilyId>>,
    pub states: Range<(R::Access, R::Layout, PipelineStage)>,
}

Pipeline barrier info.

Fields

families: Option<Range<QueueFamilyId>>

Some queue for ownership transfer. Or None

states: Range<(R::Access, R::Layout, PipelineStage)>

State transition.

Trait Implementations

impl<R: Clone + Resource> Clone for Barrier<R> where
    R::Access: Clone,
    R::Layout: Clone
[src]

impl<R: Debug + Resource> Debug for Barrier<R> where
    R::Access: Debug,
    R::Layout: Debug
[src]

Auto Trait Implementations

impl<R> Send for Barrier<R> where
    <R as Resource>::Access: Send,
    <R as Resource>::Layout: Send

impl<R> Sync for Barrier<R> where
    <R as Resource>::Access: Sync,
    <R as Resource>::Layout: Sync

impl<R> Unpin for Barrier<R> where
    <R as Resource>::Access: Unpin,
    <R as Resource>::Layout: Unpin

impl<R> UnwindSafe for Barrier<R> where
    <R as Resource>::Access: UnwindSafe,
    <R as Resource>::Layout: UnwindSafe

impl<R> RefUnwindSafe for Barrier<R> where
    <R as Resource>::Access: RefUnwindSafe,
    <R as Resource>::Layout: RefUnwindSafe

Blanket Implementations

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

impl<T> From<T> for 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]