Struct gfx_hal::image::SubresourceFootprint[][src]

pub struct SubresourceFootprint {
    pub slice: Range<RawOffset>,
    pub row_pitch: RawOffset,
    pub array_pitch: RawOffset,
    pub depth_pitch: RawOffset,
}

Footprint of a subresource in memory.

Fields

slice: Range<RawOffset>

Byte slice occupied by the subresource.

row_pitch: RawOffset

Byte distance between rows.

array_pitch: RawOffset

Byte distance between array layers.

depth_pitch: RawOffset

Byte distance between depth slices.

Trait Implementations

impl Clone for SubresourceFootprint[src]

impl Debug for SubresourceFootprint[src]

impl Eq for SubresourceFootprint[src]

impl Hash for SubresourceFootprint[src]

impl PartialEq<SubresourceFootprint> for SubresourceFootprint[src]

impl StructuralEq for SubresourceFootprint[src]

impl StructuralPartialEq for SubresourceFootprint[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> 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.