Struct ash::vk::DeviceQueueInfo2
source · #[repr(C)]pub struct DeviceQueueInfo2<'a> {
pub s_type: StructureType,
pub p_next: *const c_void,
pub flags: DeviceQueueCreateFlags,
pub queue_family_index: u32,
pub queue_index: u32,
pub _marker: PhantomData<&'a ()>,
}
Expand description
Fields§
§s_type: StructureType
§p_next: *const c_void
§flags: DeviceQueueCreateFlags
§queue_family_index: u32
§queue_index: u32
§_marker: PhantomData<&'a ()>
Implementations§
source§impl<'a> DeviceQueueInfo2<'a>
impl<'a> DeviceQueueInfo2<'a>
pub fn flags(self, flags: DeviceQueueCreateFlags) -> Self
pub fn queue_family_index(self, queue_family_index: u32) -> Self
pub fn queue_index(self, queue_index: u32) -> Self
Trait Implementations§
source§impl<'a> Clone for DeviceQueueInfo2<'a>
impl<'a> Clone for DeviceQueueInfo2<'a>
source§fn clone(&self) -> DeviceQueueInfo2<'a>
fn clone(&self) -> DeviceQueueInfo2<'a>
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<'a> Debug for DeviceQueueInfo2<'a>
impl<'a> Debug for DeviceQueueInfo2<'a>
source§impl Default for DeviceQueueInfo2<'_>
impl Default for DeviceQueueInfo2<'_>
source§impl<'a> TaggedStructure for DeviceQueueInfo2<'a>
impl<'a> TaggedStructure for DeviceQueueInfo2<'a>
const STRUCTURE_TYPE: StructureType = StructureType::DEVICE_QUEUE_INFO_2
impl<'a> Copy for DeviceQueueInfo2<'a>
impl Send for DeviceQueueInfo2<'_>
impl Sync for DeviceQueueInfo2<'_>
Auto Trait Implementations§
impl<'a> Freeze for DeviceQueueInfo2<'a>
impl<'a> RefUnwindSafe for DeviceQueueInfo2<'a>
impl<'a> Unpin for DeviceQueueInfo2<'a>
impl<'a> UnwindSafe for DeviceQueueInfo2<'a>
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