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

pub struct UnsafeCommandBufferBuilderImageCopy {
    pub aspect: UnsafeCommandBufferBuilderImageAspect,
    pub source_mip_level: u32,
    pub destination_mip_level: u32,
    pub source_base_array_layer: u32,
    pub destination_base_array_layer: u32,
    pub layer_count: u32,
    pub source_offset: [i32; 3],
    pub destination_offset: [i32; 3],
    pub extent: [u32; 3],
}

Fields

Trait Implementations

impl Debug for UnsafeCommandBufferBuilderImageCopy
[src]

[src]

Formats the value using the given formatter. Read more

impl Copy for UnsafeCommandBufferBuilderImageCopy
[src]

impl Clone for UnsafeCommandBufferBuilderImageCopy
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for UnsafeCommandBufferBuilderImageCopy
[src]

[src]

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

[src]

This method tests for !=.

impl Eq for UnsafeCommandBufferBuilderImageCopy
[src]

Auto Trait Implementations