#[repr(C)]
pub struct DeviceCreateInfo { pub sType: StructureType, pub pNext: *const c_void, pub flags: DeviceCreateFlags, pub queueCreateInfoCount: u32, pub pQueueCreateInfos: *const DeviceQueueCreateInfo, pub enabledLayerCount: u32, pub ppEnabledLayerNames: *const *const c_char, pub enabledExtensionCount: u32, pub ppEnabledExtensionNames: *const *const c_char, pub pEnabledFeatures: *const PhysicalDeviceFeatures, }

Fields

sType: StructureTypepNext: *const c_voidflags: DeviceCreateFlagsqueueCreateInfoCount: u32pQueueCreateInfos: *const DeviceQueueCreateInfoenabledLayerCount: u32ppEnabledLayerNames: *const *const c_charenabledExtensionCount: u32ppEnabledExtensionNames: *const *const c_charpEnabledFeatures: *const PhysicalDeviceFeatures

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.