Struct dacite::core::PhysicalDeviceProperties [] [src]

pub struct PhysicalDeviceProperties {
    pub api_version: Version,
    pub driver_version: u32,
    pub vendor_id: u32,
    pub device_id: u32,
    pub device_type: PhysicalDeviceType,
    pub device_name: String,
    pub pipeline_cache_uuid: [u8; 16],
    pub limits: PhysicalDeviceLimits,
    pub sparse_properties: PhysicalDeviceSparseProperties,
}

Fields

Trait Implementations

impl Debug for PhysicalDeviceProperties
[src]

Formats the value using the given formatter.

impl Clone for PhysicalDeviceProperties
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for PhysicalDeviceProperties
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl<'a> From<&'a VkPhysicalDeviceProperties> for PhysicalDeviceProperties
[src]

Performs the conversion.