[][src]Struct cart_tmp_wgpu::TextureViewDescriptorBase

#[repr(C)]pub struct TextureViewDescriptorBase<L> {
    pub label: L,
    pub format: TextureFormat,
    pub dimension: TextureViewDimension,
    pub aspect: TextureAspect,
    pub base_mip_level: u32,
    pub level_count: u32,
    pub base_array_layer: u32,
    pub array_layer_count: u32,
}

Describes a [TextureView].

Fields

label: L

Debug label of the texture view. This will show up in graphics debuggers for easy identification.

format: TextureFormat

Format of the texture view. At this time, it must be the same as the underlying format of the texture.

dimension: TextureViewDimension

The dimension of the texture view. For 1D textures, this must be 1D. For 2D textures it must be one of D2, D2Array, Cube, and CubeArray. For 3D textures it must be 3D

aspect: TextureAspect

Aspect of the texture. Color textures must be TextureAspect::All.

base_mip_level: u32

Base mip level.

level_count: u32

Mip level count. Must be at least one. base_mip_level + level_count must be less or equal to underlying texture mip count.

base_array_layer: u32

Base array layer.

array_layer_count: u32

Layer count. Must be at least one. base_array_layer + array_layer_count must be less or equal to the underlying array count.

Implementations

impl<L> TextureViewDescriptor<L>[src]

pub fn map_label<K>(
    &self,
    fun: impl FnOnce(&L) -> K
) -> TextureViewDescriptor<K>
[src]

Trait Implementations

impl<L> Clone for TextureViewDescriptor<L> where
    L: Clone
[src]

impl<L> Debug for TextureViewDescriptor<L> where
    L: Debug
[src]

impl<'de, L> Deserialize<'de> for TextureViewDescriptor<L> where
    L: Deserialize<'de>, 
[src]

impl<L> PartialEq<TextureViewDescriptor<L>> for TextureViewDescriptor<L> where
    L: PartialEq<L>, 
[src]

impl<L> Serialize for TextureViewDescriptor<L> where
    L: Serialize
[src]

Auto Trait Implementations

impl<L> RefUnwindSafe for TextureViewDescriptor<L> where
    L: RefUnwindSafe

impl<L> Send for TextureViewDescriptor<L> where
    L: Send

impl<L> Sync for TextureViewDescriptor<L> where
    L: Sync

impl<L> Unpin for TextureViewDescriptor<L> where
    L: Unpin

impl<L> UnwindSafe for TextureViewDescriptor<L> where
    L: UnwindSafe

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.