Struct vulkano::command_buffer::sys::BufferCopyRegion [] [src]

pub struct BufferCopyRegion {
    pub source_offset: usize,
    pub destination_offset: usize,
    pub size: usize,
}

A copy between two buffers.

Fields

Offset of the first byte to read from the source buffer.

Offset of the first byte to write to the destination buffer.

Size in bytes of the copy.

Trait Implementations

impl Debug for BufferCopyRegion
[src]

Formats the value using the given formatter.

impl Copy for BufferCopyRegion
[src]

impl Clone for BufferCopyRegion
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for BufferCopyRegion
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for BufferCopyRegion
[src]

impl Hash for BufferCopyRegion
[src]

Feeds this value into the state given, updating the hasher as necessary.

Feeds a slice of this type into the state provided.