Struct ash::vk::DescriptorPoolSizeBuilder
source · pub struct DescriptorPoolSizeBuilder<'a> { /* private fields */ }
Implementations§
source§impl<'a> DescriptorPoolSizeBuilder<'a>
impl<'a> DescriptorPoolSizeBuilder<'a>
pub fn ty(self, ty: DescriptorType) -> Self
pub fn descriptor_count(self, descriptor_count: u32) -> Self
sourcepub fn build(self) -> DescriptorPoolSize
pub fn build(self) -> DescriptorPoolSize
Calling build will discard all the lifetime information. Only call this if
necessary! Builders implement Deref
targeting their corresponding Vulkan struct,
so references to builders can be passed directly to Vulkan functions.
Trait Implementations§
source§impl<'a> Deref for DescriptorPoolSizeBuilder<'a>
impl<'a> Deref for DescriptorPoolSizeBuilder<'a>
Auto Trait Implementations§
impl<'a> Freeze for DescriptorPoolSizeBuilder<'a>
impl<'a> RefUnwindSafe for DescriptorPoolSizeBuilder<'a>
impl<'a> Send for DescriptorPoolSizeBuilder<'a>
impl<'a> Sync for DescriptorPoolSizeBuilder<'a>
impl<'a> Unpin for DescriptorPoolSizeBuilder<'a>
impl<'a> UnwindSafe for DescriptorPoolSizeBuilder<'a>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more