[−][src]Struct ash::vk::QueryResultFlags
Methods
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.
fn bitand(self, rhs: QueryResultFlags) -> QueryResultFlags
[src]
impl BitAndAssign<QueryResultFlags> for QueryResultFlags
[src]
fn bitand_assign(&mut self, rhs: QueryResultFlags)
[src]
impl BitOr<QueryResultFlags> for QueryResultFlags
[src]
type Output = QueryResultFlags
The resulting type after applying the |
operator.
fn bitor(self, rhs: QueryResultFlags) -> QueryResultFlags
[src]
impl BitOrAssign<QueryResultFlags> for QueryResultFlags
[src]
fn bitor_assign(&mut self, rhs: QueryResultFlags)
[src]
impl BitXor<QueryResultFlags> for QueryResultFlags
[src]
type Output = QueryResultFlags
The resulting type after applying the ^
operator.
fn bitxor(self, rhs: QueryResultFlags) -> QueryResultFlags
[src]
impl BitXorAssign<QueryResultFlags> for QueryResultFlags
[src]
fn bitxor_assign(&mut self, rhs: QueryResultFlags)
[src]
impl Clone for QueryResultFlags
[src]
fn clone(&self) -> QueryResultFlags
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Copy for QueryResultFlags
[src]
impl Debug for QueryResultFlags
[src]
impl Default for QueryResultFlags
[src]
fn default() -> QueryResultFlags
[src]
impl Eq for QueryResultFlags
[src]
impl Hash for QueryResultFlags
[src]
fn hash<__H: Hasher>(&self, state: &mut __H)
[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
impl Not for QueryResultFlags
[src]
type Output = QueryResultFlags
The resulting type after applying the !
operator.
fn not(self) -> QueryResultFlags
[src]
impl Ord for QueryResultFlags
[src]
fn cmp(&self, other: &QueryResultFlags) -> Ordering
[src]
#[must_use]fn max(self, other: Self) -> Self
1.21.0[src]
#[must_use]fn min(self, other: Self) -> Self
1.21.0[src]
#[must_use]fn clamp(self, min: Self, max: Self) -> Self
[src]
impl PartialEq<QueryResultFlags> for QueryResultFlags
[src]
fn eq(&self, other: &QueryResultFlags) -> bool
[src]
fn ne(&self, other: &QueryResultFlags) -> bool
[src]
impl PartialOrd<QueryResultFlags> for QueryResultFlags
[src]
fn partial_cmp(&self, other: &QueryResultFlags) -> Option<Ordering>
[src]
fn lt(&self, other: &QueryResultFlags) -> bool
[src]
fn le(&self, other: &QueryResultFlags) -> bool
[src]
fn gt(&self, other: &QueryResultFlags) -> bool
[src]
fn ge(&self, other: &QueryResultFlags) -> bool
[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.
fn sub(self, rhs: QueryResultFlags) -> QueryResultFlags
[src]
impl SubAssign<QueryResultFlags> for QueryResultFlags
[src]
fn sub_assign(&mut self, rhs: 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]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,