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

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

aspect: UnsafeCommandBufferBuilderImageAspectsource_mip_level: u32destination_mip_level: u32source_base_array_layer: u32destination_base_array_layer: u32layer_count: u32source_offset: [i32; 3]destination_offset: [i32; 3]extent: [u32; 3]

Trait Implementations

impl Clone for UnsafeCommandBufferBuilderImageCopy[src]

impl Copy for UnsafeCommandBufferBuilderImageCopy[src]

impl Debug for UnsafeCommandBufferBuilderImageCopy[src]

impl Eq for UnsafeCommandBufferBuilderImageCopy[src]

impl PartialEq<UnsafeCommandBufferBuilderImageCopy> for UnsafeCommandBufferBuilderImageCopy[src]

impl StructuralEq for UnsafeCommandBufferBuilderImageCopy[src]

impl StructuralPartialEq for UnsafeCommandBufferBuilderImageCopy[src]

Auto Trait Implementations

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> Content for T[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.