[][src]Struct vulkanalia::vk::SubresourceLayout

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

Fields

offset: u64size: u64row_pitch: u64array_pitch: u64depth_pitch: u64

Trait Implementations

impl Cast for SubresourceLayout[src]

type Target = SubresourceLayout

The other type this type type can be used interchangeably with in FFI.

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 HasBuilder<'static> for SubresourceLayout[src]

type Builder = SubresourceLayoutBuilder

The associated builder for this type.

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.