#[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: StructureTypep_next: *const c_voidflags: DeviceQueueCreateFlagsqueue_family_index: u32queue_count: u32p_queue_priorities: *const f32Implementations
sourceimpl DeviceQueueCreateInfo
impl DeviceQueueCreateInfo
pub fn builder<'a>() -> DeviceQueueCreateInfoBuilder<'a>
Trait Implementations
sourceimpl Clone for DeviceQueueCreateInfo
impl Clone for DeviceQueueCreateInfo
sourcefn clone(&self) -> DeviceQueueCreateInfo
fn clone(&self) -> DeviceQueueCreateInfo
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for DeviceQueueCreateInfo
impl Debug for DeviceQueueCreateInfo
sourceimpl Default for DeviceQueueCreateInfo
impl Default for DeviceQueueCreateInfo
sourcefn default() -> DeviceQueueCreateInfo
fn default() -> DeviceQueueCreateInfo
Returns the “default value” for a type. Read more
impl Copy for DeviceQueueCreateInfo
Auto Trait Implementations
impl RefUnwindSafe for DeviceQueueCreateInfo
impl !Send for DeviceQueueCreateInfo
impl !Sync for DeviceQueueCreateInfo
impl Unpin for DeviceQueueCreateInfo
impl UnwindSafe for DeviceQueueCreateInfo
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more