Struct ash::vk::types::DeviceCreateInfo[][src]

#[repr(C)]
pub struct DeviceCreateInfo { pub s_type: StructureType, pub p_next: *const c_void, pub flags: DeviceCreateFlags, pub queue_create_info_count: uint32_t, pub p_queue_create_infos: *const DeviceQueueCreateInfo, pub enabled_layer_count: uint32_t, pub pp_enabled_layer_names: *const *const c_char, pub enabled_extension_count: uint32_t, pub pp_enabled_extension_names: *const *const c_char, pub p_enabled_features: *const PhysicalDeviceFeatures, }

Fields

Trait Implementations

impl Debug for DeviceCreateInfo
[src]

Formats the value using the given formatter. Read more

impl Clone for DeviceCreateInfo
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations