[][src]Struct vulkan_bindings::PhysicalDeviceVulkan11Properties

#[repr(C)]pub struct PhysicalDeviceVulkan11Properties {
    pub sType: StructureType,
    pub pNext: *mut c_void,
    pub deviceUUID: [u8; 16],
    pub driverUUID: [u8; 16],
    pub deviceLUID: [u8; 8],
    pub deviceNodeMask: u32,
    pub deviceLUIDValid: Bool32,
    pub subgroupSize: u32,
    pub subgroupSupportedStages: ShaderStageFlags,
    pub subgroupSupportedOperations: SubgroupFeatureFlags,
    pub subgroupQuadOperationsInAllStages: Bool32,
    pub pointClippingBehavior: PointClippingBehavior,
    pub maxMultiviewViewCount: u32,
    pub maxMultiviewInstanceIndex: u32,
    pub protectedNoFault: Bool32,
    pub maxPerSetDescriptors: u32,
    pub maxMemoryAllocationSize: DeviceSize,
}

Fields

sType: StructureTypepNext: *mut c_voiddeviceUUID: [u8; 16]driverUUID: [u8; 16]deviceLUID: [u8; 8]deviceNodeMask: u32deviceLUIDValid: Bool32subgroupSize: u32subgroupSupportedStages: ShaderStageFlagssubgroupSupportedOperations: SubgroupFeatureFlagssubgroupQuadOperationsInAllStages: Bool32pointClippingBehavior: PointClippingBehaviormaxMultiviewViewCount: u32maxMultiviewInstanceIndex: u32protectedNoFault: Bool32maxPerSetDescriptors: u32maxMemoryAllocationSize: DeviceSize

Trait Implementations

impl Clone for PhysicalDeviceVulkan11Properties[src]

impl Copy for PhysicalDeviceVulkan11Properties[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.