#[repr(transparent)]pub struct PhysicalDeviceIDPropertiesBuilder<'a> { /* private fields */ }Implementations
sourceimpl<'a> PhysicalDeviceIDPropertiesBuilder<'a>
impl<'a> PhysicalDeviceIDPropertiesBuilder<'a>
pub fn device_uuid(
self,
device_uuid: [u8; 16]
) -> PhysicalDeviceIDPropertiesBuilder<'a>
pub fn driver_uuid(
self,
driver_uuid: [u8; 16]
) -> PhysicalDeviceIDPropertiesBuilder<'a>
pub fn device_luid(
self,
device_luid: [u8; 8]
) -> PhysicalDeviceIDPropertiesBuilder<'a>
pub fn device_node_mask(
self,
device_node_mask: u32
) -> PhysicalDeviceIDPropertiesBuilder<'a>
pub fn device_luid_valid(
self,
device_luid_valid: bool
) -> PhysicalDeviceIDPropertiesBuilder<'a>
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
sourceimpl<'a> Deref for PhysicalDeviceIDPropertiesBuilder<'a>
impl<'a> Deref for PhysicalDeviceIDPropertiesBuilder<'a>
type Target = PhysicalDeviceIDProperties
type Target = PhysicalDeviceIDProperties
The resulting type after dereferencing.
sourcefn deref(&self) -> &<PhysicalDeviceIDPropertiesBuilder<'a> as Deref>::Target
fn deref(&self) -> &<PhysicalDeviceIDPropertiesBuilder<'a> as Deref>::Target
Dereferences the value.
sourceimpl<'a> DerefMut for PhysicalDeviceIDPropertiesBuilder<'a>
impl<'a> DerefMut for PhysicalDeviceIDPropertiesBuilder<'a>
sourcefn deref_mut(
&mut self
) -> &mut <PhysicalDeviceIDPropertiesBuilder<'a> as Deref>::Target
fn deref_mut(
&mut self
) -> &mut <PhysicalDeviceIDPropertiesBuilder<'a> as Deref>::Target
Mutably dereferences the value.
impl<'_> ExtendsPhysicalDeviceProperties2 for PhysicalDeviceIDPropertiesBuilder<'_>
Auto Trait Implementations
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
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