Struct vulkano::image::traits::ImageInner[][src]

pub struct ImageInner<'a> {
    pub image: &'a UnsafeImage,
    pub first_layer: usize,
    pub num_layers: usize,
    pub first_mipmap_level: usize,
    pub num_mipmap_levels: usize,
}

Inner information about an image.

Fields

The underlying image object.

The first layer of image to consider.

The number of layers of image to consider.

The first mipmap level of image to consider.

The number of mipmap levels of image to consider.

Trait Implementations

impl<'a> Copy for ImageInner<'a>
[src]

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<'a> Send for ImageInner<'a>

impl<'a> Sync for ImageInner<'a>