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 moresource§impl Debug for DeviceQueueCreateInfo
impl Debug for DeviceQueueCreateInfo
source§impl Default for DeviceQueueCreateInfo
impl Default for DeviceQueueCreateInfo
source§impl TaggedStructure for DeviceQueueCreateInfo
impl TaggedStructure for DeviceQueueCreateInfo
const STRUCTURE_TYPE: StructureType = StructureType::DEVICE_QUEUE_CREATE_INFO
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 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