Struct ash::vk::DisplayPresentInfoKHRBuilder
source · pub struct DisplayPresentInfoKHRBuilder<'a> { /* private fields */ }
Implementations§
source§impl<'a> DisplayPresentInfoKHRBuilder<'a>
impl<'a> DisplayPresentInfoKHRBuilder<'a>
pub fn src_rect(self, src_rect: Rect2D) -> Self
pub fn dst_rect(self, dst_rect: Rect2D) -> Self
pub fn persistent(self, persistent: bool) -> Self
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§
source§impl<'a> Deref for DisplayPresentInfoKHRBuilder<'a>
impl<'a> Deref for DisplayPresentInfoKHRBuilder<'a>
source§impl<'a> DerefMut for DisplayPresentInfoKHRBuilder<'a>
impl<'a> DerefMut for DisplayPresentInfoKHRBuilder<'a>
impl ExtendsPresentInfoKHR for DisplayPresentInfoKHRBuilder<'_>
Auto Trait Implementations§
impl<'a> Freeze for DisplayPresentInfoKHRBuilder<'a>
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§
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