[][src]Struct bedrock::resources::AspectMask

#[repr(C)]
pub struct AspectMask(pub VkImageAspectFlags);

Bitmask specifying which aspects of an image are included in a view

Methods

impl AspectMask[src]

pub const COLOR: Self[src]

The color aspect

pub const DEPTH: Self[src]

The depth aspect

pub const STENCIL: Self[src]

The stencil aspect

pub const METADATA: Self[src]

The metadata aspect, used for sparse sparse resource operations

pub fn color(self) -> Self[src]

The color aspect

pub fn depth(self) -> Self[src]

The depth aspect

pub fn stencil(self) -> Self[src]

The stencil aspect

pub fn metadata(self) -> Self[src]

The metadata aspect, used for sparse sparse resource oeprations

Trait Implementations

impl Clone for AspectMask[src]

impl Copy for AspectMask[src]

impl Debug for AspectMask[src]

impl Eq for AspectMask[src]

impl PartialEq<AspectMask> for AspectMask[src]

impl StructuralEq for AspectMask[src]

impl StructuralPartialEq for AspectMask[src]

Auto Trait Implementations

impl RefUnwindSafe for AspectMask

impl Send for AspectMask

impl Sync for AspectMask

impl Unpin for AspectMask

impl UnwindSafe for AspectMask

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.