pub enum BufferAccess {
Uniform,
Storage,
Vertex,
Index,
}Variants§
Trait Implementations§
Source§impl Clone for BufferAccess
impl Clone for BufferAccess
Source§fn clone(&self) -> BufferAccess
fn clone(&self) -> BufferAccess
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BufferAccess
impl Debug for BufferAccess
Source§impl PartialEq for BufferAccess
impl PartialEq for BufferAccess
Source§fn eq(&self, other: &BufferAccess) -> bool
fn eq(&self, other: &BufferAccess) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for BufferAccess
impl Eq for BufferAccess
impl StructuralPartialEq for BufferAccess
Auto Trait Implementations§
impl Freeze for BufferAccess
impl RefUnwindSafe for BufferAccess
impl Send for BufferAccess
impl Sync for BufferAccess
impl Unpin for BufferAccess
impl UnsafeUnpin for BufferAccess
impl UnwindSafe for BufferAccess
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.