Struct vulkanalia_sys::PhysicalDeviceProperties[][src]

#[repr(C)]pub struct PhysicalDeviceProperties {
    pub api_version: u32,
    pub driver_version: u32,
    pub vendor_id: u32,
    pub device_id: u32,
    pub device_type: PhysicalDeviceType,
    pub device_name: [c_char; 256],
    pub pipeline_cache_uuid: [u8; 16],
    pub limits: PhysicalDeviceLimits,
    pub sparse_properties: PhysicalDeviceSparseProperties,
}

Fields

api_version: u32driver_version: u32vendor_id: u32device_id: u32device_type: PhysicalDeviceTypedevice_name: [c_char; 256]pipeline_cache_uuid: [u8; 16]limits: PhysicalDeviceLimitssparse_properties: PhysicalDeviceSparseProperties

Trait Implementations

impl Clone for PhysicalDeviceProperties[src]

impl Copy for PhysicalDeviceProperties[src]

impl Debug for PhysicalDeviceProperties[src]

impl Default for PhysicalDeviceProperties[src]

impl PartialEq<PhysicalDeviceProperties> for PhysicalDeviceProperties[src]

impl StructuralPartialEq for PhysicalDeviceProperties[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.