Enum wgpu_types::TextureAspect
source · #[repr(C)]pub enum TextureAspect {
All = 0,
StencilOnly = 1,
DepthOnly = 2,
Plane0 = 3,
Plane1 = 4,
Plane2 = 5,
}
Expand description
Kind of data the texture holds.
Corresponds to WebGPU GPUTextureAspect
.
Variants§
All = 0
Depth, Stencil, and Color.
StencilOnly = 1
Stencil.
DepthOnly = 2
Depth.
Plane0 = 3
Plane 0.
Plane1 = 4
Plane 1.
Plane2 = 5
Plane 2.
Implementations§
source§impl TextureAspect
impl TextureAspect
sourcepub fn from_plane(plane: u32) -> Option<Self>
pub fn from_plane(plane: u32) -> Option<Self>
Returns the texture aspect for a given plane.
Trait Implementations§
source§impl Clone for TextureAspect
impl Clone for TextureAspect
source§fn clone(&self) -> TextureAspect
fn clone(&self) -> TextureAspect
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for TextureAspect
impl Debug for TextureAspect
source§impl Default for TextureAspect
impl Default for TextureAspect
source§fn default() -> TextureAspect
fn default() -> TextureAspect
Returns the “default value” for a type. Read more
source§impl Hash for TextureAspect
impl Hash for TextureAspect
source§impl PartialEq for TextureAspect
impl PartialEq for TextureAspect
source§fn eq(&self, other: &TextureAspect) -> bool
fn eq(&self, other: &TextureAspect) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for TextureAspect
impl Eq for TextureAspect
impl StructuralPartialEq for TextureAspect
Auto Trait Implementations§
impl Freeze for TextureAspect
impl RefUnwindSafe for TextureAspect
impl Send for TextureAspect
impl Sync for TextureAspect
impl Unpin for TextureAspect
impl UnwindSafe for TextureAspect
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more