#[repr(transparent)]pub struct DescriptorPoolSizeBuilder<'a> { /* private fields */ }Implementations
sourceimpl<'a> DescriptorPoolSizeBuilder<'a>
impl<'a> DescriptorPoolSizeBuilder<'a>
pub fn ty(self, ty: DescriptorType) -> DescriptorPoolSizeBuilder<'a>
pub fn descriptor_count(
self,
descriptor_count: u32
) -> DescriptorPoolSizeBuilder<'a>
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
sourceimpl<'a> Deref for DescriptorPoolSizeBuilder<'a>
impl<'a> Deref for DescriptorPoolSizeBuilder<'a>
type Target = DescriptorPoolSize
type Target = DescriptorPoolSize
The resulting type after dereferencing.
sourcefn deref(&self) -> &<DescriptorPoolSizeBuilder<'a> as Deref>::Target
fn deref(&self) -> &<DescriptorPoolSizeBuilder<'a> as Deref>::Target
Dereferences the value.
sourceimpl<'a> DerefMut for DescriptorPoolSizeBuilder<'a>
impl<'a> DerefMut for DescriptorPoolSizeBuilder<'a>
sourcefn deref_mut(&mut self) -> &mut <DescriptorPoolSizeBuilder<'a> as Deref>::Target
fn deref_mut(&mut self) -> &mut <DescriptorPoolSizeBuilder<'a> as Deref>::Target
Mutably dereferences the value.
Auto Trait Implementations
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more