Struct ash::vk::ImageFormatPropertiesBuilder
source · pub struct ImageFormatPropertiesBuilder<'a> { /* private fields */ }
Implementations§
source§impl<'a> ImageFormatPropertiesBuilder<'a>
impl<'a> ImageFormatPropertiesBuilder<'a>
pub fn max_extent(self, max_extent: Extent3D) -> Self
pub fn max_mip_levels(self, max_mip_levels: u32) -> Self
pub fn max_array_layers(self, max_array_layers: u32) -> Self
pub fn sample_counts(self, sample_counts: SampleCountFlags) -> Self
pub fn max_resource_size(self, max_resource_size: DeviceSize) -> Self
sourcepub fn build(self) -> ImageFormatProperties
pub fn build(self) -> ImageFormatProperties
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 ImageFormatPropertiesBuilder<'a>
impl<'a> Deref for ImageFormatPropertiesBuilder<'a>
Auto Trait Implementations§
impl<'a> Freeze for ImageFormatPropertiesBuilder<'a>
impl<'a> RefUnwindSafe for ImageFormatPropertiesBuilder<'a>
impl<'a> Send for ImageFormatPropertiesBuilder<'a>
impl<'a> Sync for ImageFormatPropertiesBuilder<'a>
impl<'a> Unpin for ImageFormatPropertiesBuilder<'a>
impl<'a> UnwindSafe for ImageFormatPropertiesBuilder<'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