Struct vulkanalia::vk::BufferImageCopyBuilder[][src]

#[repr(transparent)]pub struct BufferImageCopyBuilder { /* fields omitted */ }

A builder for a BufferImageCopy.

Implementations

impl BufferImageCopyBuilder[src]

pub fn buffer_offset(self, buffer_offset: DeviceSize) -> Self[src]

pub fn buffer_row_length(self, buffer_row_length: u32) -> Self[src]

pub fn buffer_image_height(self, buffer_image_height: u32) -> Self[src]

pub fn image_subresource(
    self,
    image_subresource: impl Cast<Target = ImageSubresourceLayers>
) -> Self
[src]

pub fn image_offset(self, image_offset: impl Cast<Target = Offset3D>) -> Self[src]

pub fn image_extent(self, image_extent: impl Cast<Target = Extent3D>) -> Self[src]

pub fn build(self) -> BufferImageCopy[src]

Trait Implementations

impl Cast for BufferImageCopyBuilder[src]

type Target = BufferImageCopy

The other type this type type can be used interchangeably with in FFI.

impl Clone for BufferImageCopyBuilder[src]

impl Copy for BufferImageCopyBuilder[src]

impl Debug for BufferImageCopyBuilder[src]

impl Default for BufferImageCopyBuilder[src]

impl Deref for BufferImageCopyBuilder[src]

type Target = BufferImageCopy

The resulting type after dereferencing.

impl DerefMut for BufferImageCopyBuilder[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.