[−][src]Struct wgpu::BufferCopyView
A view of a buffer which can be used to copy to or from a texture.
Fields
buffer: &'a BufferThe buffer to be copied to or from.
offset: BufferAddressThe 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: u32The 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: u32The 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]
fn clone(&self) -> BufferCopyView<'a>[src]
fn clone_from(&mut self, source: &Self)1.0.0[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]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,