[][src]Struct ash::vk::ResolveModeFlags

#[repr(transparent)]pub struct ResolveModeFlags(_);

Implementations

impl ResolveModeFlags[src]

pub const fn empty() -> ResolveModeFlags[src]

pub const fn all() -> ResolveModeFlags[src]

pub const fn from_raw(x: Flags) -> Self[src]

pub const fn as_raw(self) -> Flags[src]

pub fn is_empty(self) -> bool[src]

pub fn is_all(self) -> bool[src]

pub fn intersects(self, other: ResolveModeFlags) -> bool[src]

pub fn contains(self, other: ResolveModeFlags) -> bool[src]

Returns whether other is a subset of self

impl ResolveModeFlags[src]

pub const NONE: Self[src]

pub const SAMPLE_ZERO: Self[src]

pub const AVERAGE: Self[src]

pub const MIN: Self[src]

pub const MAX: Self[src]

impl ResolveModeFlags[src]

Generated from 'VK_KHR_depth_stencil_resolve'

pub const NONE_KHR: Self[src]

impl ResolveModeFlags[src]

Generated from 'VK_KHR_depth_stencil_resolve'

pub const SAMPLE_ZERO_KHR: Self[src]

impl ResolveModeFlags[src]

Generated from 'VK_KHR_depth_stencil_resolve'

pub const AVERAGE_KHR: Self[src]

impl ResolveModeFlags[src]

Generated from 'VK_KHR_depth_stencil_resolve'

pub const MIN_KHR: Self[src]

impl ResolveModeFlags[src]

Generated from 'VK_KHR_depth_stencil_resolve'

pub const MAX_KHR: Self[src]

Trait Implementations

impl BitAnd<ResolveModeFlags> for ResolveModeFlags[src]

type Output = ResolveModeFlags

The resulting type after applying the & operator.

impl BitAndAssign<ResolveModeFlags> for ResolveModeFlags[src]

impl BitOr<ResolveModeFlags> for ResolveModeFlags[src]

type Output = ResolveModeFlags

The resulting type after applying the | operator.

impl BitOrAssign<ResolveModeFlags> for ResolveModeFlags[src]

impl BitXor<ResolveModeFlags> for ResolveModeFlags[src]

type Output = ResolveModeFlags

The resulting type after applying the ^ operator.

impl BitXorAssign<ResolveModeFlags> for ResolveModeFlags[src]

impl Clone for ResolveModeFlags[src]

impl Copy for ResolveModeFlags[src]

impl Debug for ResolveModeFlags[src]

impl Default for ResolveModeFlags[src]

impl Eq for ResolveModeFlags[src]

impl Hash for ResolveModeFlags[src]

impl Not for ResolveModeFlags[src]

type Output = ResolveModeFlags

The resulting type after applying the ! operator.

impl Ord for ResolveModeFlags[src]

impl PartialEq<ResolveModeFlags> for ResolveModeFlags[src]

impl PartialOrd<ResolveModeFlags> for ResolveModeFlags[src]

impl StructuralEq for ResolveModeFlags[src]

impl StructuralPartialEq for ResolveModeFlags[src]

impl Sub<ResolveModeFlags> for ResolveModeFlags[src]

type Output = ResolveModeFlags

The resulting type after applying the - operator.

impl SubAssign<ResolveModeFlags> for ResolveModeFlags[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.