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