#[repr(transparent)]pub struct PhysicalDeviceSparseImageFormatInfo2Builder<'a> { /* private fields */ }Implementations
sourceimpl<'a> PhysicalDeviceSparseImageFormatInfo2Builder<'a>
impl<'a> PhysicalDeviceSparseImageFormatInfo2Builder<'a>
pub fn format(
self,
format: Format
) -> PhysicalDeviceSparseImageFormatInfo2Builder<'a>
pub fn ty(
self,
ty: ImageType
) -> PhysicalDeviceSparseImageFormatInfo2Builder<'a>
pub fn samples(
self,
samples: SampleCountFlags
) -> PhysicalDeviceSparseImageFormatInfo2Builder<'a>
pub fn usage(
self,
usage: ImageUsageFlags
) -> PhysicalDeviceSparseImageFormatInfo2Builder<'a>
pub fn tiling(
self,
tiling: ImageTiling
) -> PhysicalDeviceSparseImageFormatInfo2Builder<'a>
sourcepub fn build(self) -> PhysicalDeviceSparseImageFormatInfo2
pub fn build(self) -> PhysicalDeviceSparseImageFormatInfo2
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 PhysicalDeviceSparseImageFormatInfo2Builder<'a>
impl<'a> Deref for PhysicalDeviceSparseImageFormatInfo2Builder<'a>
type Target = PhysicalDeviceSparseImageFormatInfo2
type Target = PhysicalDeviceSparseImageFormatInfo2
The resulting type after dereferencing.
sourcefn deref(
&self
) -> &<PhysicalDeviceSparseImageFormatInfo2Builder<'a> as Deref>::Target
fn deref(
&self
) -> &<PhysicalDeviceSparseImageFormatInfo2Builder<'a> as Deref>::Target
Dereferences the value.
sourceimpl<'a> DerefMut for PhysicalDeviceSparseImageFormatInfo2Builder<'a>
impl<'a> DerefMut for PhysicalDeviceSparseImageFormatInfo2Builder<'a>
sourcefn deref_mut(
&mut self
) -> &mut <PhysicalDeviceSparseImageFormatInfo2Builder<'a> as Deref>::Target
fn deref_mut(
&mut self
) -> &mut <PhysicalDeviceSparseImageFormatInfo2Builder<'a> as Deref>::Target
Mutably dereferences the value.
Auto Trait Implementations
impl<'a> RefUnwindSafe for PhysicalDeviceSparseImageFormatInfo2Builder<'a>
impl<'a> !Send for PhysicalDeviceSparseImageFormatInfo2Builder<'a>
impl<'a> !Sync for PhysicalDeviceSparseImageFormatInfo2Builder<'a>
impl<'a> Unpin for PhysicalDeviceSparseImageFormatInfo2Builder<'a>
impl<'a> UnwindSafe for PhysicalDeviceSparseImageFormatInfo2Builder<'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