Struct ash::vk::DescriptorImageInfoBuilder
source · pub struct DescriptorImageInfoBuilder<'a> { /* private fields */ }
Implementations§
source§impl<'a> DescriptorImageInfoBuilder<'a>
impl<'a> DescriptorImageInfoBuilder<'a>
pub fn sampler(self, sampler: Sampler) -> Self
pub fn image_view(self, image_view: ImageView) -> Self
pub fn image_layout(self, image_layout: ImageLayout) -> Self
sourcepub fn build(self) -> DescriptorImageInfo
pub fn build(self) -> DescriptorImageInfo
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 DescriptorImageInfoBuilder<'a>
impl<'a> Deref for DescriptorImageInfoBuilder<'a>
Auto Trait Implementations§
impl<'a> Freeze for DescriptorImageInfoBuilder<'a>
impl<'a> RefUnwindSafe for DescriptorImageInfoBuilder<'a>
impl<'a> Send for DescriptorImageInfoBuilder<'a>
impl<'a> Sync for DescriptorImageInfoBuilder<'a>
impl<'a> Unpin for DescriptorImageInfoBuilder<'a>
impl<'a> UnwindSafe for DescriptorImageInfoBuilder<'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