#[repr(transparent)]pub struct DisplayPropertiesKHRBuilder<'a> { /* private fields */ }Implementations
sourceimpl<'a> DisplayPropertiesKHRBuilder<'a>
impl<'a> DisplayPropertiesKHRBuilder<'a>
pub fn display(self, display: DisplayKHR) -> DisplayPropertiesKHRBuilder<'a>
pub fn display_name(
self,
display_name: &'a CStr
) -> DisplayPropertiesKHRBuilder<'a>
pub fn physical_dimensions(
self,
physical_dimensions: Extent2D
) -> DisplayPropertiesKHRBuilder<'a>
pub fn physical_resolution(
self,
physical_resolution: Extent2D
) -> DisplayPropertiesKHRBuilder<'a>
pub fn supported_transforms(
self,
supported_transforms: SurfaceTransformFlagsKHR
) -> DisplayPropertiesKHRBuilder<'a>
pub fn plane_reorder_possible(
self,
plane_reorder_possible: bool
) -> DisplayPropertiesKHRBuilder<'a>
pub fn persistent_content(
self,
persistent_content: bool
) -> DisplayPropertiesKHRBuilder<'a>
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
sourceimpl<'a> Deref for DisplayPropertiesKHRBuilder<'a>
impl<'a> Deref for DisplayPropertiesKHRBuilder<'a>
type Target = DisplayPropertiesKHR
type Target = DisplayPropertiesKHR
The resulting type after dereferencing.
sourcefn deref(&self) -> &<DisplayPropertiesKHRBuilder<'a> as Deref>::Target
fn deref(&self) -> &<DisplayPropertiesKHRBuilder<'a> as Deref>::Target
Dereferences the value.
sourceimpl<'a> DerefMut for DisplayPropertiesKHRBuilder<'a>
impl<'a> DerefMut for DisplayPropertiesKHRBuilder<'a>
sourcefn deref_mut(
&mut self
) -> &mut <DisplayPropertiesKHRBuilder<'a> as Deref>::Target
fn deref_mut(
&mut self
) -> &mut <DisplayPropertiesKHRBuilder<'a> as Deref>::Target
Mutably dereferences the value.
Auto Trait Implementations
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
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