Struct vulkanalia::vk::PhysicalDeviceIDProperties[][src]

#[repr(C)]pub struct PhysicalDeviceIDProperties {
    pub s_type: StructureType,
    pub 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,
}

Fields

s_type: StructureTypenext: *mut c_voiddevice_uuid: [u8; 16]driver_uuid: [u8; 16]device_luid: [u8; 8]device_node_mask: u32device_luid_valid: u32

Trait Implementations

impl Cast for PhysicalDeviceIDProperties[src]

type Target = PhysicalDeviceIDProperties

The other type this type type can be used interchangeably with in FFI.

impl Clone for PhysicalDeviceIDProperties[src]

impl Copy for PhysicalDeviceIDProperties[src]

impl Debug for PhysicalDeviceIDProperties[src]

impl Default for PhysicalDeviceIDProperties[src]

impl Eq for PhysicalDeviceIDProperties[src]

impl ExtendsPhysicalDeviceProperties2 for PhysicalDeviceIDProperties[src]

impl HasBuilder<'static> for PhysicalDeviceIDProperties[src]

type Builder = PhysicalDeviceIDPropertiesBuilder

The associated builder for this type.

impl Hash for PhysicalDeviceIDProperties[src]

impl PartialEq<PhysicalDeviceIDProperties> for PhysicalDeviceIDProperties[src]

impl StructuralEq for PhysicalDeviceIDProperties[src]

impl StructuralPartialEq for PhysicalDeviceIDProperties[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.