Struct ash::vk::PhysicalDeviceIDPropertiesBuilder
source · pub struct PhysicalDeviceIDPropertiesBuilder<'a> { /* private fields */ }
Implementations§
source§impl<'a> PhysicalDeviceIDPropertiesBuilder<'a>
impl<'a> PhysicalDeviceIDPropertiesBuilder<'a>
pub fn device_uuid(self, device_uuid: [u8; 16]) -> Self
pub fn driver_uuid(self, driver_uuid: [u8; 16]) -> Self
pub fn device_luid(self, device_luid: [u8; 8]) -> Self
pub fn device_node_mask(self, device_node_mask: u32) -> Self
pub fn device_luid_valid(self, device_luid_valid: bool) -> Self
sourcepub fn build(self) -> PhysicalDeviceIDProperties
pub fn build(self) -> PhysicalDeviceIDProperties
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 PhysicalDeviceIDPropertiesBuilder<'a>
impl<'a> Deref for PhysicalDeviceIDPropertiesBuilder<'a>
source§impl<'a> DerefMut for PhysicalDeviceIDPropertiesBuilder<'a>
impl<'a> DerefMut for PhysicalDeviceIDPropertiesBuilder<'a>
impl ExtendsPhysicalDeviceProperties2 for PhysicalDeviceIDPropertiesBuilder<'_>
Auto Trait Implementations§
impl<'a> Freeze for PhysicalDeviceIDPropertiesBuilder<'a>
impl<'a> RefUnwindSafe for PhysicalDeviceIDPropertiesBuilder<'a>
impl<'a> !Send for PhysicalDeviceIDPropertiesBuilder<'a>
impl<'a> !Sync for PhysicalDeviceIDPropertiesBuilder<'a>
impl<'a> Unpin for PhysicalDeviceIDPropertiesBuilder<'a>
impl<'a> UnwindSafe for PhysicalDeviceIDPropertiesBuilder<'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