Struct screen_13::prelude::vk::ToolPurposeFlags
source · pub struct ToolPurposeFlags(_);Expand description
Implementations§
source§impl ToolPurposeFlags
impl ToolPurposeFlags
pub const fn empty() -> ToolPurposeFlags
pub const fn from_raw(x: u32) -> ToolPurposeFlags
pub const fn as_raw(self) -> u32
pub const fn is_empty(self) -> bool
pub const fn intersects(self, other: ToolPurposeFlags) -> bool
sourcepub const fn contains(self, other: ToolPurposeFlags) -> bool
pub const fn contains(self, other: ToolPurposeFlags) -> bool
Returns whether other is a subset of self
source§impl ToolPurposeFlags
impl ToolPurposeFlags
pub const VALIDATION: ToolPurposeFlags = Self(1)
pub const VALIDATION_EXT: ToolPurposeFlags = Self::VALIDATION
pub const PROFILING: ToolPurposeFlags = Self(2)
pub const PROFILING_EXT: ToolPurposeFlags = Self::PROFILING
pub const TRACING: ToolPurposeFlags = Self(4)
pub const TRACING_EXT: ToolPurposeFlags = Self::TRACING
pub const ADDITIONAL_FEATURES: ToolPurposeFlags = Self(8)
pub const ADDITIONAL_FEATURES_EXT: ToolPurposeFlags = Self::ADDITIONAL_FEATURES
pub const MODIFYING_FEATURES: ToolPurposeFlags = Self(16)
pub const MODIFYING_FEATURES_EXT: ToolPurposeFlags = Self::MODIFYING_FEATURES
source§impl ToolPurposeFlags
impl ToolPurposeFlags
Generated from ‘VK_EXT_tooling_info’
pub const DEBUG_REPORTING_EXT: ToolPurposeFlags = Self(32)
pub const DEBUG_MARKERS_EXT: ToolPurposeFlags = Self(64)
Trait Implementations§
source§impl BitAnd<ToolPurposeFlags> for ToolPurposeFlags
impl BitAnd<ToolPurposeFlags> for ToolPurposeFlags
§type Output = ToolPurposeFlags
type Output = ToolPurposeFlags
The resulting type after applying the
& operator.source§fn bitand(self, rhs: ToolPurposeFlags) -> ToolPurposeFlags
fn bitand(self, rhs: ToolPurposeFlags) -> ToolPurposeFlags
Performs the
& operation. Read moresource§impl BitAndAssign<ToolPurposeFlags> for ToolPurposeFlags
impl BitAndAssign<ToolPurposeFlags> for ToolPurposeFlags
source§fn bitand_assign(&mut self, rhs: ToolPurposeFlags)
fn bitand_assign(&mut self, rhs: ToolPurposeFlags)
Performs the
&= operation. Read moresource§impl BitOr<ToolPurposeFlags> for ToolPurposeFlags
impl BitOr<ToolPurposeFlags> for ToolPurposeFlags
§type Output = ToolPurposeFlags
type Output = ToolPurposeFlags
The resulting type after applying the
| operator.source§fn bitor(self, rhs: ToolPurposeFlags) -> ToolPurposeFlags
fn bitor(self, rhs: ToolPurposeFlags) -> ToolPurposeFlags
Performs the
| operation. Read moresource§impl BitOrAssign<ToolPurposeFlags> for ToolPurposeFlags
impl BitOrAssign<ToolPurposeFlags> for ToolPurposeFlags
source§fn bitor_assign(&mut self, rhs: ToolPurposeFlags)
fn bitor_assign(&mut self, rhs: ToolPurposeFlags)
Performs the
|= operation. Read moresource§impl BitXor<ToolPurposeFlags> for ToolPurposeFlags
impl BitXor<ToolPurposeFlags> for ToolPurposeFlags
§type Output = ToolPurposeFlags
type Output = ToolPurposeFlags
The resulting type after applying the
^ operator.source§fn bitxor(self, rhs: ToolPurposeFlags) -> ToolPurposeFlags
fn bitxor(self, rhs: ToolPurposeFlags) -> ToolPurposeFlags
Performs the
^ operation. Read moresource§impl BitXorAssign<ToolPurposeFlags> for ToolPurposeFlags
impl BitXorAssign<ToolPurposeFlags> for ToolPurposeFlags
source§fn bitxor_assign(&mut self, rhs: ToolPurposeFlags)
fn bitxor_assign(&mut self, rhs: ToolPurposeFlags)
Performs the
^= operation. Read moresource§impl Clone for ToolPurposeFlags
impl Clone for ToolPurposeFlags
source§fn clone(&self) -> ToolPurposeFlags
fn clone(&self) -> ToolPurposeFlags
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 ToolPurposeFlags
impl Debug for ToolPurposeFlags
source§impl Default for ToolPurposeFlags
impl Default for ToolPurposeFlags
source§fn default() -> ToolPurposeFlags
fn default() -> ToolPurposeFlags
Returns the “default value” for a type. Read more
source§impl Hash for ToolPurposeFlags
impl Hash for ToolPurposeFlags
source§impl Not for ToolPurposeFlags
impl Not for ToolPurposeFlags
§type Output = ToolPurposeFlags
type Output = ToolPurposeFlags
The resulting type after applying the
! operator.source§fn not(self) -> ToolPurposeFlags
fn not(self) -> ToolPurposeFlags
Performs the unary
! operation. Read moresource§impl Ord for ToolPurposeFlags
impl Ord for ToolPurposeFlags
source§fn cmp(&self, other: &ToolPurposeFlags) -> Ordering
fn cmp(&self, other: &ToolPurposeFlags) -> 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<ToolPurposeFlags> for ToolPurposeFlags
impl PartialEq<ToolPurposeFlags> for ToolPurposeFlags
source§fn eq(&self, other: &ToolPurposeFlags) -> bool
fn eq(&self, other: &ToolPurposeFlags) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd<ToolPurposeFlags> for ToolPurposeFlags
impl PartialOrd<ToolPurposeFlags> for ToolPurposeFlags
source§fn partial_cmp(&self, other: &ToolPurposeFlags) -> Option<Ordering>
fn partial_cmp(&self, other: &ToolPurposeFlags) -> 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