#[repr(transparent)]pub struct DescriptorBindingFlags(_);Expand description
Implementations
sourceimpl 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
sourceimpl 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)
sourceimpl 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
sourceimpl DescriptorBindingFlags
impl DescriptorBindingFlags
Generated from ‘VK_QCOM_extension_369’
pub const RESERVED_4_QCOM: DescriptorBindingFlags = Self(16)
Trait Implementations
sourceimpl BitAnd<DescriptorBindingFlags> for DescriptorBindingFlags
impl BitAnd<DescriptorBindingFlags> for DescriptorBindingFlags
type Output = DescriptorBindingFlags
type Output = DescriptorBindingFlags
The resulting type after applying the & operator.
sourcefn bitand(self, rhs: DescriptorBindingFlags) -> DescriptorBindingFlags
fn bitand(self, rhs: DescriptorBindingFlags) -> DescriptorBindingFlags
Performs the & operation. Read more
sourceimpl BitAndAssign<DescriptorBindingFlags> for DescriptorBindingFlags
impl BitAndAssign<DescriptorBindingFlags> for DescriptorBindingFlags
sourcefn bitand_assign(&mut self, rhs: DescriptorBindingFlags)
fn bitand_assign(&mut self, rhs: DescriptorBindingFlags)
Performs the &= operation. Read more
sourceimpl BitOr<DescriptorBindingFlags> for DescriptorBindingFlags
impl BitOr<DescriptorBindingFlags> for DescriptorBindingFlags
type Output = DescriptorBindingFlags
type Output = DescriptorBindingFlags
The resulting type after applying the | operator.
sourcefn bitor(self, rhs: DescriptorBindingFlags) -> DescriptorBindingFlags
fn bitor(self, rhs: DescriptorBindingFlags) -> DescriptorBindingFlags
Performs the | operation. Read more
sourceimpl BitOrAssign<DescriptorBindingFlags> for DescriptorBindingFlags
impl BitOrAssign<DescriptorBindingFlags> for DescriptorBindingFlags
sourcefn bitor_assign(&mut self, rhs: DescriptorBindingFlags)
fn bitor_assign(&mut self, rhs: DescriptorBindingFlags)
Performs the |= operation. Read more
sourceimpl BitXor<DescriptorBindingFlags> for DescriptorBindingFlags
impl BitXor<DescriptorBindingFlags> for DescriptorBindingFlags
type Output = DescriptorBindingFlags
type Output = DescriptorBindingFlags
The resulting type after applying the ^ operator.
sourcefn bitxor(self, rhs: DescriptorBindingFlags) -> DescriptorBindingFlags
fn bitxor(self, rhs: DescriptorBindingFlags) -> DescriptorBindingFlags
Performs the ^ operation. Read more
sourceimpl BitXorAssign<DescriptorBindingFlags> for DescriptorBindingFlags
impl BitXorAssign<DescriptorBindingFlags> for DescriptorBindingFlags
sourcefn bitxor_assign(&mut self, rhs: DescriptorBindingFlags)
fn bitxor_assign(&mut self, rhs: DescriptorBindingFlags)
Performs the ^= operation. Read more
sourceimpl Clone for DescriptorBindingFlags
impl Clone for DescriptorBindingFlags
sourcefn clone(&self) -> DescriptorBindingFlags
fn clone(&self) -> DescriptorBindingFlags
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for DescriptorBindingFlags
impl Debug for DescriptorBindingFlags
sourceimpl Default for DescriptorBindingFlags
impl Default for DescriptorBindingFlags
sourcefn default() -> DescriptorBindingFlags
fn default() -> DescriptorBindingFlags
Returns the “default value” for a type. Read more
sourceimpl Hash for DescriptorBindingFlags
impl Hash for DescriptorBindingFlags
sourceimpl Not for DescriptorBindingFlags
impl Not for DescriptorBindingFlags
type Output = DescriptorBindingFlags
type Output = DescriptorBindingFlags
The resulting type after applying the ! operator.
sourcefn not(self) -> DescriptorBindingFlags
fn not(self) -> DescriptorBindingFlags
Performs the unary ! operation. Read more
sourceimpl Ord for DescriptorBindingFlags
impl Ord for DescriptorBindingFlags
sourceimpl PartialEq<DescriptorBindingFlags> for DescriptorBindingFlags
impl PartialEq<DescriptorBindingFlags> for DescriptorBindingFlags
sourcefn 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 ==. Read more
sourcefn ne(&self, other: &DescriptorBindingFlags) -> bool
fn ne(&self, other: &DescriptorBindingFlags) -> bool
This method tests for !=.
sourceimpl PartialOrd<DescriptorBindingFlags> for DescriptorBindingFlags
impl PartialOrd<DescriptorBindingFlags> for DescriptorBindingFlags
sourcefn partial_cmp(&self, other: &DescriptorBindingFlags) -> Option<Ordering>
fn partial_cmp(&self, other: &DescriptorBindingFlags) -> Option<Ordering>
This method returns an ordering between self and other values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · sourcefn 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
impl Copy for DescriptorBindingFlags
impl Eq for DescriptorBindingFlags
impl StructuralEq for DescriptorBindingFlags
impl StructuralPartialEq for DescriptorBindingFlags
Auto Trait Implementations
impl RefUnwindSafe for DescriptorBindingFlags
impl Send for DescriptorBindingFlags
impl Sync for DescriptorBindingFlags
impl Unpin for DescriptorBindingFlags
impl UnwindSafe for DescriptorBindingFlags
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more