pub struct ImageUsageFlagBits(/* private fields */);Expand description
Implementations§
Source§impl ImageUsageFlagBits
impl ImageUsageFlagBits
Sourcepub const TRANSFER_SRC: Self
pub const TRANSFER_SRC: Self
Bit 0.
Sourcepub const TRANSFER_DST: Self
pub const TRANSFER_DST: Self
Bit 1.
Sourcepub const COLOR_ATTACHMENT: Self
pub const COLOR_ATTACHMENT: Self
Bit 4.
Sourcepub const DEPTH_STENCIL_ATTACHMENT: Self
pub const DEPTH_STENCIL_ATTACHMENT: Self
Bit 5.
Sourcepub const TRANSIENT_ATTACHMENT: Self
pub const TRANSIENT_ATTACHMENT: Self
Bit 6.
Sourcepub const INPUT_ATTACHMENT: Self
pub const INPUT_ATTACHMENT: Self
Bit 7.
Sourcepub const HOST_TRANSFER: Self
pub const HOST_TRANSFER: Self
Bit 22.
Sourcepub const VIDEO_DECODE_DST: Self
pub const VIDEO_DECODE_DST: Self
Bit 10.
Sourcepub const VIDEO_DECODE_SRC: Self
pub const VIDEO_DECODE_SRC: Self
Bit 11.
Sourcepub const VIDEO_DECODE_DPB: Self
pub const VIDEO_DECODE_DPB: Self
Bit 12.
pub const SHADING_RATE_IMAGE: Self = Self::FRAGMENT_SHADING_RATE_ATTACHMENT
Sourcepub const FRAGMENT_DENSITY_MAP: Self
pub const FRAGMENT_DENSITY_MAP: Self
Bit 9.
Sourcepub const FRAGMENT_SHADING_RATE_ATTACHMENT: Self
pub const FRAGMENT_SHADING_RATE_ATTACHMENT: Self
Bit 8.
Sourcepub const VIDEO_ENCODE_DST: Self
pub const VIDEO_ENCODE_DST: Self
Bit 13.
Sourcepub const VIDEO_ENCODE_SRC: Self
pub const VIDEO_ENCODE_SRC: Self
Bit 14.
Sourcepub const VIDEO_ENCODE_DPB: Self
pub const VIDEO_ENCODE_DPB: Self
Bit 15.
Sourcepub const ATTACHMENT_FEEDBACK_LOOP: Self
pub const ATTACHMENT_FEEDBACK_LOOP: Self
Bit 19.
Sourcepub const INVOCATION_MASK_BIT: Self
pub const INVOCATION_MASK_BIT: Self
Bit 18.
Sourcepub const SAMPLE_WEIGHT_BIT: Self
pub const SAMPLE_WEIGHT_BIT: Self
Bit 20.
Sourcepub const SAMPLE_BLOCK_MATCH_BIT: Self
pub const SAMPLE_BLOCK_MATCH_BIT: Self
Bit 21.
Sourcepub const TENSOR_ALIASING_BIT: Self
pub const TENSOR_ALIASING_BIT: Self
Bit 23.
Sourcepub const TILE_MEMORY_BIT: Self
pub const TILE_MEMORY_BIT: Self
Bit 27.
Sourcepub const VIDEO_ENCODE_QUANTIZATION_DELTA_MAP: Self
pub const VIDEO_ENCODE_QUANTIZATION_DELTA_MAP: Self
Bit 25.
Sourcepub const VIDEO_ENCODE_EMPHASIS_MAP: Self
pub const VIDEO_ENCODE_EMPHASIS_MAP: Self
Bit 26.
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 BitAnd for ImageUsageFlagBits
impl BitAnd for ImageUsageFlagBits
Source§impl BitAndAssign for ImageUsageFlagBits
impl BitAndAssign for ImageUsageFlagBits
Source§fn bitand_assign(&mut self, rhs: Self)
fn bitand_assign(&mut self, rhs: Self)
Performs the
&= operation. Read moreSource§impl BitOr for ImageUsageFlagBits
impl BitOr for ImageUsageFlagBits
Source§impl BitOrAssign for ImageUsageFlagBits
impl BitOrAssign for ImageUsageFlagBits
Source§fn bitor_assign(&mut self, rhs: Self)
fn bitor_assign(&mut self, rhs: Self)
Performs the
|= operation. Read moreSource§impl BitXor for ImageUsageFlagBits
impl BitXor for ImageUsageFlagBits
Source§impl BitXorAssign for ImageUsageFlagBits
impl BitXorAssign for ImageUsageFlagBits
Source§fn bitxor_assign(&mut self, rhs: Self)
fn bitxor_assign(&mut self, rhs: Self)
Performs the
^= operation. Read moreSource§impl Clone for ImageUsageFlagBits
impl Clone for ImageUsageFlagBits
Source§fn clone(&self) -> ImageUsageFlagBits
fn clone(&self) -> ImageUsageFlagBits
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 ImageUsageFlagBits
impl Debug for ImageUsageFlagBits
Source§impl Default for ImageUsageFlagBits
impl Default for ImageUsageFlagBits
Source§fn default() -> ImageUsageFlagBits
fn default() -> ImageUsageFlagBits
Returns the “default value” for a type. Read more
Source§impl Hash for ImageUsageFlagBits
impl Hash for ImageUsageFlagBits
Source§impl Not for ImageUsageFlagBits
impl Not for ImageUsageFlagBits
Source§impl Ord for ImageUsageFlagBits
impl Ord for ImageUsageFlagBits
Source§fn cmp(&self, other: &ImageUsageFlagBits) -> Ordering
fn cmp(&self, other: &ImageUsageFlagBits) -> 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 ImageUsageFlagBits
impl PartialEq for ImageUsageFlagBits
Source§impl PartialOrd for ImageUsageFlagBits
impl PartialOrd for ImageUsageFlagBits
impl Copy for ImageUsageFlagBits
impl Eq for ImageUsageFlagBits
impl StructuralPartialEq for ImageUsageFlagBits
Auto Trait Implementations§
impl Freeze for ImageUsageFlagBits
impl RefUnwindSafe for ImageUsageFlagBits
impl Send for ImageUsageFlagBits
impl Sync for ImageUsageFlagBits
impl Unpin for ImageUsageFlagBits
impl UnsafeUnpin for ImageUsageFlagBits
impl UnwindSafe for ImageUsageFlagBits
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