#[repr(C)]pub struct VkDeviceQueueCreateInfo {
pub sType: VkStructureType,
pub pNext: *const c_void,
pub flags: VkDeviceQueueCreateFlags,
pub queueFamilyIndex: u32,
pub queueCount: u32,
pub pQueuePriorities: *const f32,
}
Fields§
§sType: VkStructureType
§pNext: *const c_void
§flags: VkDeviceQueueCreateFlags
§queueFamilyIndex: u32
§queueCount: u32
§pQueuePriorities: *const f32
Trait Implementations§
Source§impl Clone for VkDeviceQueueCreateInfo
impl Clone for VkDeviceQueueCreateInfo
Source§fn clone(&self) -> VkDeviceQueueCreateInfo
fn clone(&self) -> VkDeviceQueueCreateInfo
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 moreimpl Copy for VkDeviceQueueCreateInfo
Auto Trait Implementations§
impl Freeze for VkDeviceQueueCreateInfo
impl RefUnwindSafe for VkDeviceQueueCreateInfo
impl !Send for VkDeviceQueueCreateInfo
impl !Sync for VkDeviceQueueCreateInfo
impl Unpin for VkDeviceQueueCreateInfo
impl UnwindSafe for VkDeviceQueueCreateInfo
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