[][src]Struct bedrock::SparseBindingOpBatch

pub struct SparseBindingOpBatch<'s> {
    pub wait_semaphores: Cow<'s, [&'s Semaphore]>,
    pub buffer_binds: Cow<'s, [VkSparseBufferMemoryBindInfo]>,
    pub image_opaque_binds: Cow<'s, [VkSparseImageOpaqueMemoryBindInfo]>,
    pub image_binds: Cow<'s, [VkSparseImageMemoryBindInfo]>,
    pub signal_semaphores: Cow<'s, [&'s Semaphore]>,
}

Sparse Binding operation batch

Fields

wait_semaphores: Cow<'s, [&'s Semaphore]>

An array of semaphores upon which to wait on before the sparse binding operations for this batch begin execution

buffer_binds: Cow<'s, [VkSparseBufferMemoryBindInfo]>

An array of VkSparseBufferMemoryBindInfo structures

image_opaque_binds: Cow<'s, [VkSparseImageOpaqueMemoryBindInfo]>

An array of VkSparseImageOpaqueMemoryBindInfo structures

image_binds: Cow<'s, [VkSparseImageMemoryBindInfo]>

An array of VkSparseImageMemoryBindInfo structures

signal_semaphores: Cow<'s, [&'s Semaphore]>

An array of semaphores which will be signaled when the sparse binding operations for this batch have completed execution

Trait Implementations

impl<'s> Default for SparseBindingOpBatch<'s>[src]

Auto Trait Implementations

impl<'s> !RefUnwindSafe for SparseBindingOpBatch<'s>

impl<'s> !Send for SparseBindingOpBatch<'s>

impl<'s> !Sync for SparseBindingOpBatch<'s>

impl<'s> Unpin for SparseBindingOpBatch<'s>

impl<'s> !UnwindSafe for SparseBindingOpBatch<'s>

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.