pub struct DeviceQueueCreateInfoBuilder<'a> { /* private fields */ }Expand description
Builder for DeviceQueueCreateInfo with lifetime-tied pNext safety.
Implementations§
Source§impl<'a> DeviceQueueCreateInfoBuilder<'a>
impl<'a> DeviceQueueCreateInfoBuilder<'a>
pub fn flags(self, value: DeviceQueueCreateFlags) -> Self
pub fn queue_family_index(self, value: u32) -> Self
pub fn queue_priorities(self, slice: &'a [f32]) -> Self
Sourcepub fn push_next<T: ExtendsDeviceQueueCreateInfo>(self, next: &'a mut T) -> Self
pub fn push_next<T: ExtendsDeviceQueueCreateInfo>(self, next: &'a mut T) -> Self
Prepend a struct to the pNext chain. See DeviceQueueCreateInfo’s Extended By section for valid types.
Trait Implementations§
Source§impl<'a> Deref for DeviceQueueCreateInfoBuilder<'a>
impl<'a> Deref for DeviceQueueCreateInfoBuilder<'a>
Auto Trait Implementations§
impl<'a> Freeze for DeviceQueueCreateInfoBuilder<'a>
impl<'a> RefUnwindSafe for DeviceQueueCreateInfoBuilder<'a>
impl<'a> !Send for DeviceQueueCreateInfoBuilder<'a>
impl<'a> !Sync for DeviceQueueCreateInfoBuilder<'a>
impl<'a> Unpin for DeviceQueueCreateInfoBuilder<'a>
impl<'a> UnsafeUnpin for DeviceQueueCreateInfoBuilder<'a>
impl<'a> UnwindSafe for DeviceQueueCreateInfoBuilder<'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