[][src]Struct vulkano::descriptor::descriptor_set::PersistentDescriptorSetBuilder

pub struct PersistentDescriptorSetBuilder<R> { /* fields omitted */ }

Prototype of a PersistentDescriptorSet.

The template parameter R is an unspecified type that represents the list of resources.

See the docs of PersistentDescriptorSet for an example.

Implementations

impl<R> PersistentDescriptorSetBuilder<R>[src]

pub fn build(
    self
) -> Result<PersistentDescriptorSet<R, StdDescriptorPoolAlloc>, PersistentDescriptorSetBuildError>
[src]

Builds a PersistentDescriptorSet from the builder.

pub fn build_with_pool<P: ?Sized>(
    self,
    pool: &mut P
) -> Result<PersistentDescriptorSet<R, P::Alloc>, PersistentDescriptorSetBuildError> where
    P: DescriptorPool
[src]

Builds a PersistentDescriptorSet from the builder.

Panic

Panics if the pool doesn't have the same device as the descriptor set layout.

pub fn enter_array(
    self
) -> Result<PersistentDescriptorSetBuilderArray<R>, PersistentDescriptorSetError>
[src]

Call this function if the next element of the set is an array in order to set the value of each element.

Returns an error if the descriptor is empty.

This function can be called even if the descriptor isn't an array, and it is valid to enter the "array", add one element, then leave.

pub fn add_empty(
    self
) -> Result<PersistentDescriptorSetBuilder<R>, PersistentDescriptorSetError>
[src]

Skips the current descriptor if it is empty.

pub fn add_buffer<T>(
    self,
    buffer: T
) -> Result<PersistentDescriptorSetBuilder<(R, PersistentDescriptorSetBuf<T>)>, PersistentDescriptorSetError> where
    T: BufferAccess
[src]

Binds a buffer as the next descriptor.

An error is returned if the buffer isn't compatible with the descriptor.

Panic

Panics if the buffer doesn't have the same device as the descriptor set layout.

pub fn add_buffer_view<T>(
    self,
    view: T
) -> Result<PersistentDescriptorSetBuilder<(R, PersistentDescriptorSetBufView<T>)>, PersistentDescriptorSetError> where
    T: BufferViewRef
[src]

Binds a buffer view as the next descriptor.

An error is returned if the buffer isn't compatible with the descriptor.

Panic

Panics if the buffer view doesn't have the same device as the descriptor set layout.

pub fn add_image<T>(
    self,
    image_view: T
) -> Result<PersistentDescriptorSetBuilder<(R, PersistentDescriptorSetImg<T>)>, PersistentDescriptorSetError> where
    T: ImageViewAccess
[src]

Binds an image view as the next descriptor.

An error is returned if the image view isn't compatible with the descriptor.

Panic

Panics if the image view doesn't have the same device as the descriptor set layout.

pub fn add_sampled_image<T>(
    self,
    image_view: T,
    sampler: Arc<Sampler>
) -> Result<PersistentDescriptorSetBuilder<((R, PersistentDescriptorSetImg<T>), PersistentDescriptorSetSampler)>, PersistentDescriptorSetError> where
    T: ImageViewAccess
[src]

Binds an image view with a sampler as the next descriptor.

An error is returned if the image view isn't compatible with the descriptor.

Panic

Panics if the image view or the sampler doesn't have the same device as the descriptor set layout.

pub fn add_sampler(
    self,
    sampler: Arc<Sampler>
) -> Result<PersistentDescriptorSetBuilder<(R, PersistentDescriptorSetSampler)>, PersistentDescriptorSetError>
[src]

Binds a sampler as the next descriptor.

An error is returned if the sampler isn't compatible with the descriptor.

Panic

Panics if the sampler doesn't have the same device as the descriptor set layout.

Auto Trait Implementations

impl<R> RefUnwindSafe for PersistentDescriptorSetBuilder<R> where
    R: RefUnwindSafe
[src]

impl<R> Send for PersistentDescriptorSetBuilder<R> where
    R: Send
[src]

impl<R> Sync for PersistentDescriptorSetBuilder<R> where
    R: Sync
[src]

impl<R> Unpin for PersistentDescriptorSetBuilder<R> where
    R: Unpin
[src]

impl<R> UnwindSafe for PersistentDescriptorSetBuilder<R> where
    R: UnwindSafe
[src]

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