Struct screen_13::prelude::vk::QueryControlFlags
source · pub struct QueryControlFlags(_);Expand description
Implementations§
source§impl QueryControlFlags
impl QueryControlFlags
pub const fn empty() -> QueryControlFlags
pub const fn from_raw(x: u32) -> QueryControlFlags
pub const fn as_raw(self) -> u32
pub const fn is_empty(self) -> bool
pub const fn intersects(self, other: QueryControlFlags) -> bool
sourcepub const fn contains(self, other: QueryControlFlags) -> bool
pub const fn contains(self, other: QueryControlFlags) -> bool
Returns whether other is a subset of self
source§impl QueryControlFlags
impl QueryControlFlags
sourcepub const PRECISE: QueryControlFlags = Self(1)
pub const PRECISE: QueryControlFlags = Self(1)
Require precise results to be collected by the query
Trait Implementations§
source§impl BitAnd<QueryControlFlags> for QueryControlFlags
impl BitAnd<QueryControlFlags> for QueryControlFlags
§type Output = QueryControlFlags
type Output = QueryControlFlags
The resulting type after applying the
& operator.source§fn bitand(self, rhs: QueryControlFlags) -> QueryControlFlags
fn bitand(self, rhs: QueryControlFlags) -> QueryControlFlags
Performs the
& operation. Read moresource§impl BitAndAssign<QueryControlFlags> for QueryControlFlags
impl BitAndAssign<QueryControlFlags> for QueryControlFlags
source§fn bitand_assign(&mut self, rhs: QueryControlFlags)
fn bitand_assign(&mut self, rhs: QueryControlFlags)
Performs the
&= operation. Read moresource§impl BitOr<QueryControlFlags> for QueryControlFlags
impl BitOr<QueryControlFlags> for QueryControlFlags
§type Output = QueryControlFlags
type Output = QueryControlFlags
The resulting type after applying the
| operator.source§fn bitor(self, rhs: QueryControlFlags) -> QueryControlFlags
fn bitor(self, rhs: QueryControlFlags) -> QueryControlFlags
Performs the
| operation. Read moresource§impl BitOrAssign<QueryControlFlags> for QueryControlFlags
impl BitOrAssign<QueryControlFlags> for QueryControlFlags
source§fn bitor_assign(&mut self, rhs: QueryControlFlags)
fn bitor_assign(&mut self, rhs: QueryControlFlags)
Performs the
|= operation. Read moresource§impl BitXor<QueryControlFlags> for QueryControlFlags
impl BitXor<QueryControlFlags> for QueryControlFlags
§type Output = QueryControlFlags
type Output = QueryControlFlags
The resulting type after applying the
^ operator.source§fn bitxor(self, rhs: QueryControlFlags) -> QueryControlFlags
fn bitxor(self, rhs: QueryControlFlags) -> QueryControlFlags
Performs the
^ operation. Read moresource§impl BitXorAssign<QueryControlFlags> for QueryControlFlags
impl BitXorAssign<QueryControlFlags> for QueryControlFlags
source§fn bitxor_assign(&mut self, rhs: QueryControlFlags)
fn bitxor_assign(&mut self, rhs: QueryControlFlags)
Performs the
^= operation. Read moresource§impl Clone for QueryControlFlags
impl Clone for QueryControlFlags
source§fn clone(&self) -> QueryControlFlags
fn clone(&self) -> QueryControlFlags
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for QueryControlFlags
impl Debug for QueryControlFlags
source§impl Default for QueryControlFlags
impl Default for QueryControlFlags
source§fn default() -> QueryControlFlags
fn default() -> QueryControlFlags
Returns the “default value” for a type. Read more
source§impl Hash for QueryControlFlags
impl Hash for QueryControlFlags
source§impl Not for QueryControlFlags
impl Not for QueryControlFlags
§type Output = QueryControlFlags
type Output = QueryControlFlags
The resulting type after applying the
! operator.source§fn not(self) -> QueryControlFlags
fn not(self) -> QueryControlFlags
Performs the unary
! operation. Read moresource§impl Ord for QueryControlFlags
impl Ord for QueryControlFlags
source§fn cmp(&self, other: &QueryControlFlags) -> Ordering
fn cmp(&self, other: &QueryControlFlags) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq<QueryControlFlags> for QueryControlFlags
impl PartialEq<QueryControlFlags> for QueryControlFlags
source§fn eq(&self, other: &QueryControlFlags) -> bool
fn eq(&self, other: &QueryControlFlags) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd<QueryControlFlags> for QueryControlFlags
impl PartialOrd<QueryControlFlags> for QueryControlFlags
source§fn partial_cmp(&self, other: &QueryControlFlags) -> Option<Ordering>
fn partial_cmp(&self, other: &QueryControlFlags) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read more