[][src]Struct ash::vk::QueryResultFlags

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

Implementations

impl QueryResultFlags[src]

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

pub const fn all() -> QueryResultFlags[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: QueryResultFlags) -> bool[src]

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

Returns whether other is a subset of self

impl QueryResultFlags[src]

pub const TYPE_64: Self[src]

Results of the queries are written to the destination buffer as 64-bit values

pub const WAIT: Self[src]

Results of the queries are waited on before proceeding with the result copy

pub const WITH_AVAILABILITY: Self[src]

Besides the results of the query, the availability of the results is also written

pub const PARTIAL: Self[src]

Copy the partial results of the query even if the final results are not available

Trait Implementations

impl BitAnd<QueryResultFlags> for QueryResultFlags[src]

type Output = QueryResultFlags

The resulting type after applying the & operator.

impl BitAndAssign<QueryResultFlags> for QueryResultFlags[src]

impl BitOr<QueryResultFlags> for QueryResultFlags[src]

type Output = QueryResultFlags

The resulting type after applying the | operator.

impl BitOrAssign<QueryResultFlags> for QueryResultFlags[src]

impl BitXor<QueryResultFlags> for QueryResultFlags[src]

type Output = QueryResultFlags

The resulting type after applying the ^ operator.

impl BitXorAssign<QueryResultFlags> for QueryResultFlags[src]

impl Clone for QueryResultFlags[src]

impl Copy for QueryResultFlags[src]

impl Debug for QueryResultFlags[src]

impl Default for QueryResultFlags[src]

impl Eq for QueryResultFlags[src]

impl Hash for QueryResultFlags[src]

impl Not for QueryResultFlags[src]

type Output = QueryResultFlags

The resulting type after applying the ! operator.

impl Ord for QueryResultFlags[src]

impl PartialEq<QueryResultFlags> for QueryResultFlags[src]

impl PartialOrd<QueryResultFlags> for QueryResultFlags[src]

impl StructuralEq for QueryResultFlags[src]

impl StructuralPartialEq for QueryResultFlags[src]

impl Sub<QueryResultFlags> for QueryResultFlags[src]

type Output = QueryResultFlags

The resulting type after applying the - operator.

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