#[repr(transparent)]pub struct PhysicalDeviceVulkan11PropertiesBuilder<'a> { /* private fields */ }Implementations
sourceimpl<'a> PhysicalDeviceVulkan11PropertiesBuilder<'a>
impl<'a> PhysicalDeviceVulkan11PropertiesBuilder<'a>
pub fn device_uuid(
self,
device_uuid: [u8; 16]
) -> PhysicalDeviceVulkan11PropertiesBuilder<'a>
pub fn driver_uuid(
self,
driver_uuid: [u8; 16]
) -> PhysicalDeviceVulkan11PropertiesBuilder<'a>
pub fn device_luid(
self,
device_luid: [u8; 8]
) -> PhysicalDeviceVulkan11PropertiesBuilder<'a>
pub fn device_node_mask(
self,
device_node_mask: u32
) -> PhysicalDeviceVulkan11PropertiesBuilder<'a>
pub fn device_luid_valid(
self,
device_luid_valid: bool
) -> PhysicalDeviceVulkan11PropertiesBuilder<'a>
pub fn subgroup_size(
self,
subgroup_size: u32
) -> PhysicalDeviceVulkan11PropertiesBuilder<'a>
pub fn subgroup_supported_stages(
self,
subgroup_supported_stages: ShaderStageFlags
) -> PhysicalDeviceVulkan11PropertiesBuilder<'a>
pub fn subgroup_supported_operations(
self,
subgroup_supported_operations: SubgroupFeatureFlags
) -> PhysicalDeviceVulkan11PropertiesBuilder<'a>
pub fn subgroup_quad_operations_in_all_stages(
self,
subgroup_quad_operations_in_all_stages: bool
) -> PhysicalDeviceVulkan11PropertiesBuilder<'a>
pub fn point_clipping_behavior(
self,
point_clipping_behavior: PointClippingBehavior
) -> PhysicalDeviceVulkan11PropertiesBuilder<'a>
pub fn max_multiview_view_count(
self,
max_multiview_view_count: u32
) -> PhysicalDeviceVulkan11PropertiesBuilder<'a>
pub fn max_multiview_instance_index(
self,
max_multiview_instance_index: u32
) -> PhysicalDeviceVulkan11PropertiesBuilder<'a>
pub fn protected_no_fault(
self,
protected_no_fault: bool
) -> PhysicalDeviceVulkan11PropertiesBuilder<'a>
pub fn max_per_set_descriptors(
self,
max_per_set_descriptors: u32
) -> PhysicalDeviceVulkan11PropertiesBuilder<'a>
pub fn max_memory_allocation_size(
self,
max_memory_allocation_size: u64
) -> PhysicalDeviceVulkan11PropertiesBuilder<'a>
sourcepub fn build(self) -> PhysicalDeviceVulkan11Properties
pub fn build(self) -> PhysicalDeviceVulkan11Properties
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 PhysicalDeviceVulkan11PropertiesBuilder<'a>
impl<'a> Deref for PhysicalDeviceVulkan11PropertiesBuilder<'a>
type Target = PhysicalDeviceVulkan11Properties
type Target = PhysicalDeviceVulkan11Properties
The resulting type after dereferencing.
sourcefn deref(
&self
) -> &<PhysicalDeviceVulkan11PropertiesBuilder<'a> as Deref>::Target
fn deref(
&self
) -> &<PhysicalDeviceVulkan11PropertiesBuilder<'a> as Deref>::Target
Dereferences the value.
sourceimpl<'a> DerefMut for PhysicalDeviceVulkan11PropertiesBuilder<'a>
impl<'a> DerefMut for PhysicalDeviceVulkan11PropertiesBuilder<'a>
sourcefn deref_mut(
&mut self
) -> &mut <PhysicalDeviceVulkan11PropertiesBuilder<'a> as Deref>::Target
fn deref_mut(
&mut self
) -> &mut <PhysicalDeviceVulkan11PropertiesBuilder<'a> as Deref>::Target
Mutably dereferences the value.
impl<'_> ExtendsPhysicalDeviceProperties2 for PhysicalDeviceVulkan11PropertiesBuilder<'_>
Auto Trait Implementations
impl<'a> RefUnwindSafe for PhysicalDeviceVulkan11PropertiesBuilder<'a>
impl<'a> !Send for PhysicalDeviceVulkan11PropertiesBuilder<'a>
impl<'a> !Sync for PhysicalDeviceVulkan11PropertiesBuilder<'a>
impl<'a> Unpin for PhysicalDeviceVulkan11PropertiesBuilder<'a>
impl<'a> UnwindSafe for PhysicalDeviceVulkan11PropertiesBuilder<'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