[][src]Struct lava::VkPhysicalDeviceProperties

pub struct VkPhysicalDeviceProperties {
    pub api_version: VkVersion,
    pub driver_version: u32,
    pub vendor_id: usize,
    pub device_id: usize,
    pub device_type: VkPhysicalDeviceType,
    pub device_name: String,
    pub pipeline_cache_uuid: [u8; 16],
    pub limits: VkPhysicalDeviceLimits,
    pub sparse_properties: VkPhysicalDeviceSparseProperties,
}

Fields

api_version: VkVersiondriver_version: u32vendor_id: usizedevice_id: usizedevice_type: VkPhysicalDeviceTypedevice_name: Stringpipeline_cache_uuid: [u8; 16]limits: VkPhysicalDeviceLimitssparse_properties: VkPhysicalDeviceSparseProperties

Trait Implementations

impl Clone for VkPhysicalDeviceProperties[src]

impl Debug for VkPhysicalDeviceProperties[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.