Struct wgpu_core::resource::BufferUse [−][src]
pub struct BufferUse { /* fields omitted */ }The internal enum mirrored from BufferUsage. The values don’t have to match!
Implementations
impl BufferUse[src]
impl BufferUse[src]pub const EMPTY: BufferUse[src]
pub const MAP_READ: BufferUse[src]
pub const MAP_WRITE: BufferUse[src]
pub const COPY_SRC: BufferUse[src]
pub const COPY_DST: BufferUse[src]
pub const INDEX: BufferUse[src]
pub const VERTEX: BufferUse[src]
pub const UNIFORM: BufferUse[src]
pub const STORAGE_LOAD: BufferUse[src]
pub const STORAGE_STORE: BufferUse[src]
pub const INDIRECT: BufferUse[src]
pub const ORDERED: BufferUse[src]
pub const ORDERED: BufferUse[src]The combination of all usages that the are guaranteed to be be ordered by the hardware. If a usage is not ordered, then even if it doesn’t change between draw calls, there still need to be pipeline barriers inserted for synchronization.
pub fn from_bits(bits: u32) -> Option<BufferUse>[src]
pub fn from_bits(bits: u32) -> Option<BufferUse>[src]Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.
pub const fn from_bits_truncate(bits: u32) -> BufferUse[src]
pub const fn from_bits_truncate(bits: u32) -> BufferUse[src]Convert from underlying bit representation, dropping any bits that do not correspond to flags.
pub const unsafe fn from_bits_unchecked(bits: u32) -> BufferUse[src]
pub const unsafe fn from_bits_unchecked(bits: u32) -> BufferUse[src]Convert from underlying bit representation, preserving all bits (even those not corresponding to a defined flag).
pub const fn intersects(&self, other: BufferUse) -> bool[src]
pub const fn intersects(&self, other: BufferUse) -> bool[src]Returns true if there are flags common to both self and other.
Trait Implementations
impl BitAndAssign<BufferUse> for BufferUse[src]
impl BitAndAssign<BufferUse> for BufferUse[src]fn bitand_assign(&mut self, other: BufferUse)[src]
fn bitand_assign(&mut self, other: BufferUse)[src]Disables all flags disabled in the set.
impl BitOrAssign<BufferUse> for BufferUse[src]
impl BitOrAssign<BufferUse> for BufferUse[src]fn bitor_assign(&mut self, other: BufferUse)[src]
fn bitor_assign(&mut self, other: BufferUse)[src]Adds the set of flags.
impl BitXorAssign<BufferUse> for BufferUse[src]
impl BitXorAssign<BufferUse> for BufferUse[src]fn bitxor_assign(&mut self, other: BufferUse)[src]
fn bitxor_assign(&mut self, other: BufferUse)[src]Toggles the set of flags.
impl Extend<BufferUse> for BufferUse[src]
impl Extend<BufferUse> for BufferUse[src]fn extend<T: IntoIterator<Item = BufferUse>>(&mut self, iterator: T)[src]
fn extend<T: IntoIterator<Item = BufferUse>>(&mut self, iterator: T)[src]Extends a collection with the contents of an iterator. Read more
fn extend_one(&mut self, item: A)[src]
fn extend_one(&mut self, item: A)[src]extend_one)Extends a collection with exactly one element.
fn extend_reserve(&mut self, additional: usize)[src]
fn extend_reserve(&mut self, additional: usize)[src]extend_one)Reserves capacity in a collection for the given number of additional elements. Read more
impl FromIterator<BufferUse> for BufferUse[src]
impl FromIterator<BufferUse> for BufferUse[src]impl Ord for BufferUse[src]
impl Ord for BufferUse[src]impl PartialOrd<BufferUse> for BufferUse[src]
impl PartialOrd<BufferUse> for BufferUse[src]fn partial_cmp(&self, other: &BufferUse) -> Option<Ordering>[src]
fn partial_cmp(&self, other: &BufferUse) -> Option<Ordering>[src]This method returns an ordering between self and other values if one exists. Read more
#[must_use]fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]fn lt(&self, other: &Rhs) -> bool1.0.0[src]This method tests less than (for self and other) and is used by the < operator. Read more
#[must_use]fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]fn le(&self, other: &Rhs) -> bool1.0.0[src]This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
impl SubAssign<BufferUse> for BufferUse[src]
impl SubAssign<BufferUse> for BufferUse[src]fn sub_assign(&mut self, other: BufferUse)[src]
fn sub_assign(&mut self, other: BufferUse)[src]Disables all flags enabled in the set.
impl Copy for BufferUse[src]
impl Eq for BufferUse[src]
impl StructuralEq for BufferUse[src]
impl StructuralPartialEq for BufferUse[src]
Auto Trait Implementations
impl RefUnwindSafe for BufferUse
impl Send for BufferUse
impl Sync for BufferUse
impl Unpin for BufferUse
impl UnwindSafe for BufferUse
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more
impl<T> CallHasher for T where
T: Hash,
impl<T> CallHasher for T where
T: Hash, impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized, [src]
impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized, [src]pub fn equivalent(&self, key: &K) -> bool[src]
pub fn equivalent(&self, key: &K) -> bool[src]Compare self to key and return true if they are equal.
impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, [src]type Owned = T
type Owned = TThe resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn to_owned(&self) -> T[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)[src]
pub fn clone_into(&self, target: &mut T)[src]🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<N> NodeTrait for N where
N: Copy + Ord + Hash, [src]
N: Copy + Ord + Hash,