#[repr(C)]pub struct DeviceQueueCreateInfo {
pub s_type: StructureType,
pub p_next: *const c_void,
pub flags: DeviceQueueCreateFlagBits,
pub queue_family_index: u32,
pub queue_count: u32,
pub p_queue_priorities: *const f32,
}Expand description
VkDeviceQueueCreateInfo
Provided by VK_BASE_VERSION_1_0.
§Extended By
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO.
p_next: *const c_voidOptional, may be null.
flags: DeviceQueueCreateFlagBits§queue_family_index: u32§queue_count: u32Length of p_queue_priorities.
p_queue_priorities: *const f32Implementations§
Source§impl DeviceQueueCreateInfo
impl DeviceQueueCreateInfo
Sourcepub fn builder<'a>() -> DeviceQueueCreateInfoBuilder<'a>
pub fn builder<'a>() -> DeviceQueueCreateInfoBuilder<'a>
Start building this struct; s_type is already set to the correct variant.
Trait Implementations§
Source§impl Clone for DeviceQueueCreateInfo
impl Clone for DeviceQueueCreateInfo
Source§fn clone(&self) -> DeviceQueueCreateInfo
fn clone(&self) -> DeviceQueueCreateInfo
Returns a duplicate 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 DeviceQueueCreateInfo
impl Debug for DeviceQueueCreateInfo
Source§impl Default for DeviceQueueCreateInfo
impl Default for DeviceQueueCreateInfo
Source§fn default() -> DeviceQueueCreateInfo
fn default() -> DeviceQueueCreateInfo
Returns the “default value” for a type. Read more
impl Copy for DeviceQueueCreateInfo
Auto Trait Implementations§
impl Freeze for DeviceQueueCreateInfo
impl RefUnwindSafe for DeviceQueueCreateInfo
impl !Send for DeviceQueueCreateInfo
impl !Sync for DeviceQueueCreateInfo
impl Unpin for DeviceQueueCreateInfo
impl UnsafeUnpin for DeviceQueueCreateInfo
impl UnwindSafe for DeviceQueueCreateInfo
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