[][src]Struct vk_sync::GlobalBarrier

pub struct GlobalBarrier<'a> {
    pub previous_accesses: &'a [AccessType],
    pub next_accesses: &'a [AccessType],
}

Global barriers define a set of accesses on multiple resources at once. If a buffer or image doesn't require a queue ownership transfer, or an image doesn't require a layout transition (e.g. you're using one of the ImageLayout::General* layouts) then a global barrier should be preferred.

Simply define the previous and next access types of resources affected.

Fields

previous_accesses: &'a [AccessType]next_accesses: &'a [AccessType]

Trait Implementations

impl<'a> Clone for GlobalBarrier<'a>[src]

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

Performs copy-assignment from source. Read more

impl<'a> Default for GlobalBarrier<'a>[src]

impl<'a> Debug for GlobalBarrier<'a>[src]

Auto Trait Implementations

impl<'a> Unpin for GlobalBarrier<'a>

impl<'a> Sync for GlobalBarrier<'a>

impl<'a> Send for GlobalBarrier<'a>

impl<'a> RefUnwindSafe for GlobalBarrier<'a>

impl<'a> UnwindSafe for GlobalBarrier<'a>

Blanket Implementations

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

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]