[][src]Struct wgpu::BufferCopyView

pub struct BufferCopyView<'a> {
    pub buffer: &'a Buffer,
    pub offset: BufferAddress,
    pub row_pitch: u32,
    pub image_height: 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. This must be aligned to 512 bytes.

row_pitch: u32

The size in bytes of a single row of the texture. This must be a multiple of 256 bytes.

image_height: u32

The height in texels of the imaginary texture view overlaid on the buffer.

Trait Implementations

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

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

Auto Trait Implementations

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

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

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

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

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

Blanket Implementations

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

impl<T> From<T> for 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.

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

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

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