Struct vulkano::descriptor::pipeline_layout::PipelineLayoutDescTweaks[][src]

pub struct PipelineLayoutDescTweaks<T> { /* fields omitted */ }

Transforms a PipelineLayoutDesc.

Used to adjust automatically inferred PipelineLayoutDescs with information that cannot be inferred.

Implementations

impl<T> PipelineLayoutDescTweaks<T> where
    T: PipelineLayoutDesc
[src]

pub fn new<I>(inner: T, dynamic_buffers: I) -> Self where
    I: IntoIterator<Item = (usize, usize)>, 
[src]

Describe a layout, ensuring that each (set, binding) in dynamic_buffers is a dynamic buffers.

Trait Implementations

impl<T> PipelineLayoutDesc for PipelineLayoutDescTweaks<T> where
    T: PipelineLayoutDesc
[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for PipelineLayoutDescTweaks<T> where
    T: RefUnwindSafe

impl<T> Send for PipelineLayoutDescTweaks<T> where
    T: Send

impl<T> Sync for PipelineLayoutDescTweaks<T> where
    T: Sync

impl<T> Unpin for PipelineLayoutDescTweaks<T> where
    T: Unpin

impl<T> UnwindSafe for PipelineLayoutDescTweaks<T> where
    T: UnwindSafe

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> Pointable for T

type Init = T

The type for initializers.

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.