Struct ash::vk::DeviceQueueCreateInfo
source · #[repr(C)]pub struct DeviceQueueCreateInfo {
pub s_type: StructureType,
pub p_next: *const c_void,
pub flags: DeviceQueueCreateFlags,
pub queue_family_index: u32,
pub queue_count: u32,
pub p_queue_priorities: *const f32,
}
Expand description
Fields§
§s_type: StructureType
§p_next: *const c_void
§flags: DeviceQueueCreateFlags
§queue_family_index: u32
§queue_count: u32
§p_queue_priorities: *const f32
Implementations§
source§impl DeviceQueueCreateInfo
impl DeviceQueueCreateInfo
pub fn builder<'a>() -> DeviceQueueCreateInfoBuilder<'a>
Trait Implementations§
source§impl Clone for DeviceQueueCreateInfo
impl Clone for DeviceQueueCreateInfo
source§fn clone(&self) -> DeviceQueueCreateInfo
fn clone(&self) -> DeviceQueueCreateInfo
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 more