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