pub struct CopyImageToImageInfoBuilder<'a> { /* private fields */ }Expand description
Builder for CopyImageToImageInfo with lifetime-tied pNext safety.
Implementations§
Source§impl<'a> CopyImageToImageInfoBuilder<'a>
impl<'a> CopyImageToImageInfoBuilder<'a>
pub fn flags( self, value: HostImageCopyFlagBits, ) -> CopyImageToImageInfoBuilder<'a>
pub fn src_image(self, value: Image) -> CopyImageToImageInfoBuilder<'a>
pub fn src_image_layout( self, value: ImageLayout, ) -> CopyImageToImageInfoBuilder<'a>
pub fn dst_image(self, value: Image) -> CopyImageToImageInfoBuilder<'a>
pub fn dst_image_layout( self, value: ImageLayout, ) -> CopyImageToImageInfoBuilder<'a>
pub fn regions(self, slice: &'a [ImageCopy2]) -> CopyImageToImageInfoBuilder<'a>
Sourcepub fn push_next<T>(self, next: &'a mut T) -> CopyImageToImageInfoBuilder<'a>where
T: ExtendsCopyImageToImageInfo,
pub fn push_next<T>(self, next: &'a mut T) -> CopyImageToImageInfoBuilder<'a>where
T: ExtendsCopyImageToImageInfo,
Prepend a struct to the pNext chain. See CopyImageToImageInfo’s Extended By section for valid types.
Trait Implementations§
Source§impl<'a> Deref for CopyImageToImageInfoBuilder<'a>
impl<'a> Deref for CopyImageToImageInfoBuilder<'a>
Source§type Target = CopyImageToImageInfo
type Target = CopyImageToImageInfo
The resulting type after dereferencing.
Source§impl<'a> DerefMut for CopyImageToImageInfoBuilder<'a>
impl<'a> DerefMut for CopyImageToImageInfoBuilder<'a>
Auto Trait Implementations§
impl<'a> Freeze for CopyImageToImageInfoBuilder<'a>
impl<'a> RefUnwindSafe for CopyImageToImageInfoBuilder<'a>
impl<'a> !Send for CopyImageToImageInfoBuilder<'a>
impl<'a> !Sync for CopyImageToImageInfoBuilder<'a>
impl<'a> Unpin for CopyImageToImageInfoBuilder<'a>
impl<'a> UnsafeUnpin for CopyImageToImageInfoBuilder<'a>
impl<'a> UnwindSafe for CopyImageToImageInfoBuilder<'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