pub struct MutableDescriptorTypeListVALVEBuilder<'a> { /* private fields */ }
Implementations§
Source§impl<'a> MutableDescriptorTypeListVALVEBuilder<'a>
impl<'a> MutableDescriptorTypeListVALVEBuilder<'a>
pub fn descriptor_types(self, descriptor_types: &'a [DescriptorType]) -> Self
Sourcepub fn build(self) -> MutableDescriptorTypeListVALVE
pub fn build(self) -> MutableDescriptorTypeListVALVE
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 MutableDescriptorTypeListVALVEBuilder<'a>
impl<'a> Deref for MutableDescriptorTypeListVALVEBuilder<'a>
Auto Trait Implementations§
impl<'a> Freeze for MutableDescriptorTypeListVALVEBuilder<'a>
impl<'a> RefUnwindSafe for MutableDescriptorTypeListVALVEBuilder<'a>
impl<'a> !Send for MutableDescriptorTypeListVALVEBuilder<'a>
impl<'a> !Sync for MutableDescriptorTypeListVALVEBuilder<'a>
impl<'a> Unpin for MutableDescriptorTypeListVALVEBuilder<'a>
impl<'a> UnwindSafe for MutableDescriptorTypeListVALVEBuilder<'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