#[repr(transparent)]pub struct DisplayPresentInfoKHRBuilder<'a> { /* private fields */ }Implementations
sourceimpl<'a> DisplayPresentInfoKHRBuilder<'a>
impl<'a> DisplayPresentInfoKHRBuilder<'a>
pub fn src_rect(self, src_rect: Rect2D) -> DisplayPresentInfoKHRBuilder<'a>
pub fn dst_rect(self, dst_rect: Rect2D) -> DisplayPresentInfoKHRBuilder<'a>
pub fn persistent(self, persistent: bool) -> DisplayPresentInfoKHRBuilder<'a>
sourcepub fn build(self) -> DisplayPresentInfoKHR
pub fn build(self) -> DisplayPresentInfoKHR
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
sourceimpl<'a> Deref for DisplayPresentInfoKHRBuilder<'a>
impl<'a> Deref for DisplayPresentInfoKHRBuilder<'a>
type Target = DisplayPresentInfoKHR
type Target = DisplayPresentInfoKHR
The resulting type after dereferencing.
sourcefn deref(&self) -> &<DisplayPresentInfoKHRBuilder<'a> as Deref>::Target
fn deref(&self) -> &<DisplayPresentInfoKHRBuilder<'a> as Deref>::Target
Dereferences the value.
sourceimpl<'a> DerefMut for DisplayPresentInfoKHRBuilder<'a>
impl<'a> DerefMut for DisplayPresentInfoKHRBuilder<'a>
sourcefn deref_mut(
&mut self
) -> &mut <DisplayPresentInfoKHRBuilder<'a> as Deref>::Target
fn deref_mut(
&mut self
) -> &mut <DisplayPresentInfoKHRBuilder<'a> as Deref>::Target
Mutably dereferences the value.
impl<'_> ExtendsPresentInfoKHR for DisplayPresentInfoKHRBuilder<'_>
Auto Trait Implementations
impl<'a> RefUnwindSafe for DisplayPresentInfoKHRBuilder<'a>
impl<'a> !Send for DisplayPresentInfoKHRBuilder<'a>
impl<'a> !Sync for DisplayPresentInfoKHRBuilder<'a>
impl<'a> Unpin for DisplayPresentInfoKHRBuilder<'a>
impl<'a> UnwindSafe for DisplayPresentInfoKHRBuilder<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more