Struct ash::vk::DisplayPropertiesKHRBuilder
source · pub struct DisplayPropertiesKHRBuilder<'a> { /* private fields */ }
Implementations§
source§impl<'a> DisplayPropertiesKHRBuilder<'a>
impl<'a> DisplayPropertiesKHRBuilder<'a>
pub fn display(self, display: DisplayKHR) -> Self
pub fn display_name(self, display_name: &'a CStr) -> Self
pub fn physical_dimensions(self, physical_dimensions: Extent2D) -> Self
pub fn physical_resolution(self, physical_resolution: Extent2D) -> Self
pub fn supported_transforms( self, supported_transforms: SurfaceTransformFlagsKHR ) -> Self
pub fn plane_reorder_possible(self, plane_reorder_possible: bool) -> Self
pub fn persistent_content(self, persistent_content: bool) -> Self
sourcepub fn build(self) -> DisplayPropertiesKHR
pub fn build(self) -> DisplayPropertiesKHR
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 DisplayPropertiesKHRBuilder<'a>
impl<'a> Deref for DisplayPropertiesKHRBuilder<'a>
Auto Trait Implementations§
impl<'a> Freeze for DisplayPropertiesKHRBuilder<'a>
impl<'a> RefUnwindSafe for DisplayPropertiesKHRBuilder<'a>
impl<'a> !Send for DisplayPropertiesKHRBuilder<'a>
impl<'a> !Sync for DisplayPropertiesKHRBuilder<'a>
impl<'a> Unpin for DisplayPropertiesKHRBuilder<'a>
impl<'a> UnwindSafe for DisplayPropertiesKHRBuilder<'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