#[repr(transparent)]pub struct SurfaceFormat2KHRBuilder<'a> { /* private fields */ }Implementations
sourceimpl<'a> SurfaceFormat2KHRBuilder<'a>
impl<'a> SurfaceFormat2KHRBuilder<'a>
pub fn surface_format(
self,
surface_format: SurfaceFormatKHR
) -> SurfaceFormat2KHRBuilder<'a>
sourcepub fn build(self) -> SurfaceFormat2KHR
pub fn build(self) -> SurfaceFormat2KHR
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 SurfaceFormat2KHRBuilder<'a>
impl<'a> Deref for SurfaceFormat2KHRBuilder<'a>
type Target = SurfaceFormat2KHR
type Target = SurfaceFormat2KHR
The resulting type after dereferencing.
sourcefn deref(&self) -> &<SurfaceFormat2KHRBuilder<'a> as Deref>::Target
fn deref(&self) -> &<SurfaceFormat2KHRBuilder<'a> as Deref>::Target
Dereferences the value.
sourceimpl<'a> DerefMut for SurfaceFormat2KHRBuilder<'a>
impl<'a> DerefMut for SurfaceFormat2KHRBuilder<'a>
sourcefn deref_mut(&mut self) -> &mut <SurfaceFormat2KHRBuilder<'a> as Deref>::Target
fn deref_mut(&mut self) -> &mut <SurfaceFormat2KHRBuilder<'a> as Deref>::Target
Mutably dereferences the value.
Auto Trait Implementations
impl<'a> RefUnwindSafe for SurfaceFormat2KHRBuilder<'a>
impl<'a> !Send for SurfaceFormat2KHRBuilder<'a>
impl<'a> !Sync for SurfaceFormat2KHRBuilder<'a>
impl<'a> Unpin for SurfaceFormat2KHRBuilder<'a>
impl<'a> UnwindSafe for SurfaceFormat2KHRBuilder<'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