Struct ash::vk::DeviceCreateInfo
source · #[repr(C)]pub struct DeviceCreateInfo<'a> {
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<'a>,
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,
pub _marker: PhantomData<&'a ()>,
}
Expand description
Fields§
§s_type: StructureType
§p_next: *const c_void
§flags: DeviceCreateFlags
§queue_create_info_count: u32
§p_queue_create_infos: *const DeviceQueueCreateInfo<'a>
§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
§_marker: PhantomData<&'a ()>
Implementations§
source§impl<'a> DeviceCreateInfo<'a>
impl<'a> DeviceCreateInfo<'a>
pub fn flags(self, flags: DeviceCreateFlags) -> Self
pub fn queue_create_infos( self, queue_create_infos: &'a [DeviceQueueCreateInfo<'a>], ) -> Self
pub fn enabled_layer_names( self, enabled_layer_names: &'a [*const c_char], ) -> Self
👎Deprecated: functionality described by this member no longer operates
pub fn enabled_extension_names( self, enabled_extension_names: &'a [*const c_char], ) -> Self
pub fn enabled_features( self, enabled_features: &'a PhysicalDeviceFeatures, ) -> Self
sourcepub fn push_next<T: ExtendsDeviceCreateInfo + ?Sized>(
self,
next: &'a mut T,
) -> Self
pub fn push_next<T: ExtendsDeviceCreateInfo + ?Sized>( self, next: &'a mut T, ) -> Self
Prepends the given extension struct between the root and the first pointer. This
method only exists on structs that can be passed to a function directly. Only
valid extension structs can be pushed into the chain.
If the chain looks like A -> B -> C
, and you call x.push_next(&mut D)
, then the
chain will look like A -> D -> B -> C
.
Trait Implementations§
source§impl<'a> Clone for DeviceCreateInfo<'a>
impl<'a> Clone for DeviceCreateInfo<'a>
source§fn clone(&self) -> DeviceCreateInfo<'a>
fn clone(&self) -> DeviceCreateInfo<'a>
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<'a> Debug for DeviceCreateInfo<'a>
impl<'a> Debug for DeviceCreateInfo<'a>
source§impl Default for DeviceCreateInfo<'_>
impl Default for DeviceCreateInfo<'_>
source§impl<'a> TaggedStructure for DeviceCreateInfo<'a>
impl<'a> TaggedStructure for DeviceCreateInfo<'a>
const STRUCTURE_TYPE: StructureType = StructureType::DEVICE_CREATE_INFO
impl<'a> Copy for DeviceCreateInfo<'a>
impl Send for DeviceCreateInfo<'_>
impl Sync for DeviceCreateInfo<'_>
Auto Trait Implementations§
impl<'a> Freeze for DeviceCreateInfo<'a>
impl<'a> RefUnwindSafe for DeviceCreateInfo<'a>
impl<'a> Unpin for DeviceCreateInfo<'a>
impl<'a> UnwindSafe for DeviceCreateInfo<'a>
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