pub struct PresentInfoKHRBuilder<'a> { /* private fields */ }Expand description
Builder for PresentInfoKHR with lifetime-tied pNext safety.
Implementations§
Source§impl<'a> PresentInfoKHRBuilder<'a>
impl<'a> PresentInfoKHRBuilder<'a>
pub fn wait_semaphores( self, slice: &'a [Semaphore], ) -> PresentInfoKHRBuilder<'a>
pub fn swapchains(self, slice: &'a [SwapchainKHR]) -> PresentInfoKHRBuilder<'a>
pub fn image_indices(self, slice: &'a [u32]) -> PresentInfoKHRBuilder<'a>
pub fn results(self, slice: &'a mut [Result]) -> PresentInfoKHRBuilder<'a>
Sourcepub fn push_next<T>(self, next: &'a mut T) -> PresentInfoKHRBuilder<'a>where
T: ExtendsPresentInfoKHR,
pub fn push_next<T>(self, next: &'a mut T) -> PresentInfoKHRBuilder<'a>where
T: ExtendsPresentInfoKHR,
Prepend a struct to the pNext chain. See PresentInfoKHR’s Extended By section for valid types.
Trait Implementations§
Source§impl<'a> Deref for PresentInfoKHRBuilder<'a>
impl<'a> Deref for PresentInfoKHRBuilder<'a>
Source§type Target = PresentInfoKHR
type Target = PresentInfoKHR
The resulting type after dereferencing.
Source§impl<'a> DerefMut for PresentInfoKHRBuilder<'a>
impl<'a> DerefMut for PresentInfoKHRBuilder<'a>
Auto Trait Implementations§
impl<'a> Freeze for PresentInfoKHRBuilder<'a>
impl<'a> RefUnwindSafe for PresentInfoKHRBuilder<'a>
impl<'a> !Send for PresentInfoKHRBuilder<'a>
impl<'a> !Sync for PresentInfoKHRBuilder<'a>
impl<'a> Unpin for PresentInfoKHRBuilder<'a>
impl<'a> UnsafeUnpin for PresentInfoKHRBuilder<'a>
impl<'a> UnwindSafe for PresentInfoKHRBuilder<'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