Struct ash::vk::DeviceQueueInfo2Builder
source · pub struct DeviceQueueInfo2Builder<'a> { /* private fields */ }
Implementations§
source§impl<'a> DeviceQueueInfo2Builder<'a>
impl<'a> DeviceQueueInfo2Builder<'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
sourcepub fn build(self) -> DeviceQueueInfo2
pub fn build(self) -> DeviceQueueInfo2
Calling build will discard all the lifetime information. Only call this if
necessary! Builders implement Deref
targeting their corresponding Vulkan struct,
so references to builders can be passed directly to Vulkan functions.
Trait Implementations§
source§impl<'a> Deref for DeviceQueueInfo2Builder<'a>
impl<'a> Deref for DeviceQueueInfo2Builder<'a>
Auto Trait Implementations§
impl<'a> Freeze for DeviceQueueInfo2Builder<'a>
impl<'a> RefUnwindSafe for DeviceQueueInfo2Builder<'a>
impl<'a> !Send for DeviceQueueInfo2Builder<'a>
impl<'a> !Sync for DeviceQueueInfo2Builder<'a>
impl<'a> Unpin for DeviceQueueInfo2Builder<'a>
impl<'a> UnwindSafe for DeviceQueueInfo2Builder<'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