[][src]Struct wgpu::BufferCopyView

pub struct BufferCopyView<'a> {
    pub buffer: &'a Buffer,
    pub offset: BufferAddress,
    pub bytes_per_row: u32,
    pub rows_per_image: u32,
}

A view of a buffer which can be used to copy to or from a texture.

Fields

buffer: &'a Buffer

The buffer to be copied to or from.

offset: BufferAddress

The offset in bytes from the start of the buffer. In the future this must be aligned to 512 bytes, however the requirement is currently unimplemented.

bytes_per_row: u32

The size in bytes of a single row of the texture. In the future this must be a multiple of 256 bytes, however the requirement is currently unimplemented.

rows_per_image: u32

The height in texels of the imaginary texture view overlaid on the buffer. Must be zero for copies where copy_size.depth == 1.

Trait Implementations

impl<'a> Clone for BufferCopyView<'a>[src]

impl<'a> Debug for BufferCopyView<'a>[src]

Auto Trait Implementations

impl<'a> !RefUnwindSafe for BufferCopyView<'a>

impl<'a> Send for BufferCopyView<'a>

impl<'a> Sync for BufferCopyView<'a>

impl<'a> Unpin for BufferCopyView<'a>

impl<'a> !UnwindSafe for BufferCopyView<'a>

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.