[][src]Struct bedrock::QueryResultFlags

pub struct QueryResultFlags(pub VkQueryResultFlags);

Bitmask specifying how and when query results are returned

Methods

impl QueryResultFlags[src]

pub const EMPTY: Self[src]

Empty bits

pub const WAIT: Self[src]

Vulkan will wait for each query's status to become available before retrieving its results

pub const WITH_AVAILABILITY: Self[src]

The availability status accompanies the results

pub const PARTIAL: Self[src]

Returning partial results is acceptable

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

Vulkan will wait for each query's status to become available before retrieving its results

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

The availability status accompanies the results

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

Returning partial results is acceptable

Trait Implementations

impl Clone for QueryResultFlags[src]

impl Copy for QueryResultFlags[src]

impl Debug for QueryResultFlags[src]

impl Eq for QueryResultFlags[src]

impl PartialEq<QueryResultFlags> for QueryResultFlags[src]

impl StructuralEq for QueryResultFlags[src]

impl StructuralPartialEq for QueryResultFlags[src]

Auto Trait Implementations

impl RefUnwindSafe for QueryResultFlags

impl Send for QueryResultFlags

impl Sync for QueryResultFlags

impl Unpin for QueryResultFlags

impl UnwindSafe for QueryResultFlags

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.