#[repr(C)]pub struct PhysicalDeviceIDProperties {
pub s_type: StructureType,
pub p_next: *mut c_void,
pub device_uuid: [u8; 16],
pub driver_uuid: [u8; 16],
pub device_luid: [u8; 8],
pub device_node_mask: u32,
pub device_luid_valid: u32,
}Expand description
VkPhysicalDeviceIDProperties
Provided by VK_BASE_VERSION_1_1.
Returned only*, filled by Vulkan, not constructed by the application.
§Extends
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_ID_PROPERTIES.
p_next: *mut c_voidOptional, may be null.
device_uuid: [u8; 16]§driver_uuid: [u8; 16]§device_luid: [u8; 8]§device_node_mask: u32§device_luid_valid: u32Implementations§
Source§impl PhysicalDeviceIDProperties
impl PhysicalDeviceIDProperties
Sourcepub fn builder<'a>() -> PhysicalDeviceIDPropertiesBuilder<'a>
pub fn builder<'a>() -> PhysicalDeviceIDPropertiesBuilder<'a>
Start building this struct; s_type is already set to the correct variant.
Trait Implementations§
Source§impl Clone for PhysicalDeviceIDProperties
impl Clone for PhysicalDeviceIDProperties
Source§fn clone(&self) -> PhysicalDeviceIDProperties
fn clone(&self) -> PhysicalDeviceIDProperties
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PhysicalDeviceIDProperties
impl Debug for PhysicalDeviceIDProperties
Source§impl Default for PhysicalDeviceIDProperties
impl Default for PhysicalDeviceIDProperties
Source§fn default() -> PhysicalDeviceIDProperties
fn default() -> PhysicalDeviceIDProperties
Returns the “default value” for a type. Read more
impl Copy for PhysicalDeviceIDProperties
impl ExtendsPhysicalDeviceProperties2 for PhysicalDeviceIDProperties
Auto Trait Implementations§
impl Freeze for PhysicalDeviceIDProperties
impl RefUnwindSafe for PhysicalDeviceIDProperties
impl !Send for PhysicalDeviceIDProperties
impl !Sync for PhysicalDeviceIDProperties
impl Unpin for PhysicalDeviceIDProperties
impl UnsafeUnpin for PhysicalDeviceIDProperties
impl UnwindSafe for PhysicalDeviceIDProperties
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