pub struct DescriptorPoolCreateFlagBits(/* private fields */);Expand description
Implementations§
Source§impl DescriptorPoolCreateFlagBits
impl DescriptorPoolCreateFlagBits
Sourcepub const FREE_DESCRIPTOR_SET: Self
pub const FREE_DESCRIPTOR_SET: Self
Bit 0.
Sourcepub const UPDATE_AFTER_BIND: Self
pub const UPDATE_AFTER_BIND: Self
Bit 1.
pub const HOST_ONLY_BIT: Self = Self::HOST_ONLY
Sourcepub const ALLOW_OVERALLOCATION_SETS: Self
pub const ALLOW_OVERALLOCATION_SETS: Self
Bit 3.
Sourcepub const ALLOW_OVERALLOCATION_POOLS: Self
pub const ALLOW_OVERALLOCATION_POOLS: Self
Bit 4.
pub const fn empty() -> Self
pub const fn from_raw(value: u32) -> Self
pub const fn as_raw(self) -> u32
pub const fn is_empty(self) -> bool
pub const fn contains(self, other: Self) -> bool
pub const fn all() -> Self
Trait Implementations§
Source§impl BitAndAssign for DescriptorPoolCreateFlagBits
impl BitAndAssign for DescriptorPoolCreateFlagBits
Source§fn bitand_assign(&mut self, rhs: Self)
fn bitand_assign(&mut self, rhs: Self)
Performs the
&= operation. Read moreSource§impl BitOr for DescriptorPoolCreateFlagBits
impl BitOr for DescriptorPoolCreateFlagBits
Source§impl BitOrAssign for DescriptorPoolCreateFlagBits
impl BitOrAssign for DescriptorPoolCreateFlagBits
Source§fn bitor_assign(&mut self, rhs: Self)
fn bitor_assign(&mut self, rhs: Self)
Performs the
|= operation. Read moreSource§impl BitXorAssign for DescriptorPoolCreateFlagBits
impl BitXorAssign for DescriptorPoolCreateFlagBits
Source§fn bitxor_assign(&mut self, rhs: Self)
fn bitxor_assign(&mut self, rhs: Self)
Performs the
^= operation. Read moreSource§impl Clone for DescriptorPoolCreateFlagBits
impl Clone for DescriptorPoolCreateFlagBits
Source§fn clone(&self) -> DescriptorPoolCreateFlagBits
fn clone(&self) -> DescriptorPoolCreateFlagBits
Returns a duplicate 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 DescriptorPoolCreateFlagBits
impl Debug for DescriptorPoolCreateFlagBits
Source§impl Default for DescriptorPoolCreateFlagBits
impl Default for DescriptorPoolCreateFlagBits
Source§fn default() -> DescriptorPoolCreateFlagBits
fn default() -> DescriptorPoolCreateFlagBits
Returns the “default value” for a type. Read more
Source§impl Hash for DescriptorPoolCreateFlagBits
impl Hash for DescriptorPoolCreateFlagBits
Source§impl Not for DescriptorPoolCreateFlagBits
impl Not for DescriptorPoolCreateFlagBits
Source§impl Ord for DescriptorPoolCreateFlagBits
impl Ord for DescriptorPoolCreateFlagBits
Source§fn cmp(&self, other: &DescriptorPoolCreateFlagBits) -> Ordering
fn cmp(&self, other: &DescriptorPoolCreateFlagBits) -> 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 for DescriptorPoolCreateFlagBits
impl PartialEq for DescriptorPoolCreateFlagBits
Source§fn eq(&self, other: &DescriptorPoolCreateFlagBits) -> bool
fn eq(&self, other: &DescriptorPoolCreateFlagBits) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for DescriptorPoolCreateFlagBits
impl PartialOrd for DescriptorPoolCreateFlagBits
impl Copy for DescriptorPoolCreateFlagBits
impl Eq for DescriptorPoolCreateFlagBits
impl StructuralPartialEq for DescriptorPoolCreateFlagBits
Auto Trait Implementations§
impl Freeze for DescriptorPoolCreateFlagBits
impl RefUnwindSafe for DescriptorPoolCreateFlagBits
impl Send for DescriptorPoolCreateFlagBits
impl Sync for DescriptorPoolCreateFlagBits
impl Unpin for DescriptorPoolCreateFlagBits
impl UnsafeUnpin for DescriptorPoolCreateFlagBits
impl UnwindSafe for DescriptorPoolCreateFlagBits
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more