#[repr(C)]pub struct DeviceQueueCreateInfo {
pub s_type: StructureType,
pub next: *const c_void,
pub flags: DeviceQueueCreateFlags,
pub queue_family_index: u32,
pub queue_count: u32,
pub queue_priorities: *const f32,
}Expand description
Fields§
§s_type: StructureType§next: *const c_void§flags: DeviceQueueCreateFlags§queue_family_index: u32§queue_count: u32§queue_priorities: *const f32Trait 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§impl Hash for DeviceQueueCreateInfo
impl Hash for DeviceQueueCreateInfo
Source§impl PartialEq for DeviceQueueCreateInfo
impl PartialEq for DeviceQueueCreateInfo
impl Copy for DeviceQueueCreateInfo
impl Eq for DeviceQueueCreateInfo
impl Send for DeviceQueueCreateInfo
impl StructuralPartialEq for DeviceQueueCreateInfo
impl Sync for DeviceQueueCreateInfo
Auto Trait Implementations§
impl Freeze for DeviceQueueCreateInfo
impl RefUnwindSafe 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