Struct ash::vk::DeviceCreateInfo
source · #[repr(C)]pub struct DeviceCreateInfo {
pub s_type: StructureType,
pub p_next: *const c_void,
pub flags: DeviceCreateFlags,
pub queue_create_info_count: u32,
pub p_queue_create_infos: *const DeviceQueueCreateInfo,
pub enabled_layer_count: u32,
pub pp_enabled_layer_names: *const *const c_char,
pub enabled_extension_count: u32,
pub pp_enabled_extension_names: *const *const c_char,
pub p_enabled_features: *const PhysicalDeviceFeatures,
}
Expand description
Fields§
§s_type: StructureType
§p_next: *const c_void
§flags: DeviceCreateFlags
§queue_create_info_count: u32
§p_queue_create_infos: *const DeviceQueueCreateInfo
§enabled_layer_count: u32
👎Deprecated: functionality described by this member no longer operates
§pp_enabled_layer_names: *const *const c_char
👎Deprecated: functionality described by this member no longer operates
§enabled_extension_count: u32
§pp_enabled_extension_names: *const *const c_char
§p_enabled_features: *const PhysicalDeviceFeatures
Implementations§
source§impl DeviceCreateInfo
impl DeviceCreateInfo
pub fn builder<'a>() -> DeviceCreateInfoBuilder<'a>
Trait Implementations§
source§impl Clone for DeviceCreateInfo
impl Clone for DeviceCreateInfo
source§fn clone(&self) -> DeviceCreateInfo
fn clone(&self) -> DeviceCreateInfo
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for DeviceCreateInfo
impl Debug for DeviceCreateInfo
source§impl Default for DeviceCreateInfo
impl Default for DeviceCreateInfo
source§impl TaggedStructure for DeviceCreateInfo
impl TaggedStructure for DeviceCreateInfo
const STRUCTURE_TYPE: StructureType = StructureType::DEVICE_CREATE_INFO
impl Copy for DeviceCreateInfo
Auto Trait Implementations§
impl Freeze for DeviceCreateInfo
impl RefUnwindSafe for DeviceCreateInfo
impl !Send for DeviceCreateInfo
impl !Sync for DeviceCreateInfo
impl Unpin for DeviceCreateInfo
impl UnwindSafe for DeviceCreateInfo
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more