Struct vulkanalia_sys::SubresourceLayout[][src]

#[repr(C)]pub struct SubresourceLayout {
    pub offset: DeviceSize,
    pub size: DeviceSize,
    pub row_pitch: DeviceSize,
    pub array_pitch: DeviceSize,
    pub depth_pitch: DeviceSize,
}

Fields

offset: DeviceSizesize: DeviceSizerow_pitch: DeviceSizearray_pitch: DeviceSizedepth_pitch: DeviceSize

Trait Implementations

impl Clone for SubresourceLayout[src]

impl Copy for SubresourceLayout[src]

impl Debug for SubresourceLayout[src]

impl Default for SubresourceLayout[src]

impl Eq for SubresourceLayout[src]

impl Hash for SubresourceLayout[src]

impl PartialEq<SubresourceLayout> for SubresourceLayout[src]

impl StructuralEq for SubresourceLayout[src]

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