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