pub struct QueueFlags(/* private fields */);
Expand description
Set of bit of queue flags
Implementations§
Source§impl QueueFlags
impl QueueFlags
Sourcepub const fn bits(&self) -> VkQueueFlags
pub const fn bits(&self) -> VkQueueFlags
Returns bits in this flags
Sourcepub const fn has_any(self, other: Self) -> bool
pub const fn has_any(self, other: Self) -> bool
Returns true if any of specified bits are contained in this flag.
Source§impl QueueFlags
impl QueueFlags
Sourcepub const SPARSE_BINDING: Self
pub const SPARSE_BINDING: Self
Supports only sparse memory management operations
Trait Implementations§
Source§impl BitAnd for QueueFlags
impl BitAnd for QueueFlags
Source§impl BitAndAssign for QueueFlags
impl BitAndAssign for QueueFlags
Source§fn bitand_assign(&mut self, rhs: Self)
fn bitand_assign(&mut self, rhs: Self)
Performs the
&=
operation. Read moreSource§impl BitOr for QueueFlags
impl BitOr for QueueFlags
Source§impl BitOrAssign for QueueFlags
impl BitOrAssign for QueueFlags
Source§fn bitor_assign(&mut self, rhs: Self)
fn bitor_assign(&mut self, rhs: Self)
Performs the
|=
operation. Read moreSource§impl Clone for QueueFlags
impl Clone for QueueFlags
Source§fn clone(&self) -> QueueFlags
fn clone(&self) -> QueueFlags
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 QueueFlags
impl Debug for QueueFlags
Source§impl From<QueueFlags> for VkQueueFlags
impl From<QueueFlags> for VkQueueFlags
Source§fn from(value: QueueFlags) -> Self
fn from(value: QueueFlags) -> Self
Converts to this type from the input type.
Source§impl Not for QueueFlags
impl Not for QueueFlags
Source§impl PartialEq for QueueFlags
impl PartialEq for QueueFlags
impl Copy for QueueFlags
impl Eq for QueueFlags
impl StructuralPartialEq for QueueFlags
Auto Trait Implementations§
impl Freeze for QueueFlags
impl RefUnwindSafe for QueueFlags
impl Send for QueueFlags
impl Sync for QueueFlags
impl Unpin for QueueFlags
impl UnwindSafe for QueueFlags
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