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