#[repr(transparent)]pub struct PhysicalDeviceSparsePropertiesBuilder<'a> { /* private fields */ }Implementations
sourceimpl<'a> PhysicalDeviceSparsePropertiesBuilder<'a>
impl<'a> PhysicalDeviceSparsePropertiesBuilder<'a>
pub fn residency_standard2_d_block_shape(
self,
residency_standard2_d_block_shape: bool
) -> PhysicalDeviceSparsePropertiesBuilder<'a>
pub fn residency_standard2_d_multisample_block_shape(
self,
residency_standard2_d_multisample_block_shape: bool
) -> PhysicalDeviceSparsePropertiesBuilder<'a>
pub fn residency_standard3_d_block_shape(
self,
residency_standard3_d_block_shape: bool
) -> PhysicalDeviceSparsePropertiesBuilder<'a>
pub fn residency_aligned_mip_size(
self,
residency_aligned_mip_size: bool
) -> PhysicalDeviceSparsePropertiesBuilder<'a>
pub fn residency_non_resident_strict(
self,
residency_non_resident_strict: bool
) -> PhysicalDeviceSparsePropertiesBuilder<'a>
sourcepub fn build(self) -> PhysicalDeviceSparseProperties
pub fn build(self) -> PhysicalDeviceSparseProperties
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 PhysicalDeviceSparsePropertiesBuilder<'a>
impl<'a> Deref for PhysicalDeviceSparsePropertiesBuilder<'a>
type Target = PhysicalDeviceSparseProperties
type Target = PhysicalDeviceSparseProperties
The resulting type after dereferencing.
sourcefn deref(&self) -> &<PhysicalDeviceSparsePropertiesBuilder<'a> as Deref>::Target
fn deref(&self) -> &<PhysicalDeviceSparsePropertiesBuilder<'a> as Deref>::Target
Dereferences the value.
sourceimpl<'a> DerefMut for PhysicalDeviceSparsePropertiesBuilder<'a>
impl<'a> DerefMut for PhysicalDeviceSparsePropertiesBuilder<'a>
sourcefn deref_mut(
&mut self
) -> &mut <PhysicalDeviceSparsePropertiesBuilder<'a> as Deref>::Target
fn deref_mut(
&mut self
) -> &mut <PhysicalDeviceSparsePropertiesBuilder<'a> as Deref>::Target
Mutably dereferences the value.
Auto Trait Implementations
impl<'a> RefUnwindSafe for PhysicalDeviceSparsePropertiesBuilder<'a>
impl<'a> Send for PhysicalDeviceSparsePropertiesBuilder<'a>
impl<'a> Sync for PhysicalDeviceSparsePropertiesBuilder<'a>
impl<'a> Unpin for PhysicalDeviceSparsePropertiesBuilder<'a>
impl<'a> UnwindSafe for PhysicalDeviceSparsePropertiesBuilder<'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