[]Struct rendy_resource::SubresourceFootprint

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

Footprint of a subresource in memory.

Fields

slice: Range<u64>

Byte slice occupied by the subresource.

row_pitch: u64

Byte distance between rows.

array_pitch: u64

Byte distance between array layers.

depth_pitch: u64

Byte distance between depth slices.

Trait Implementations

impl StructuralEq for SubresourceFootprint

impl PartialEq<SubresourceFootprint> for SubresourceFootprint

impl Eq for SubresourceFootprint

impl Debug for SubresourceFootprint

impl Hash for SubresourceFootprint

impl Clone for SubresourceFootprint

impl StructuralPartialEq for SubresourceFootprint

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for 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.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]