pub enum ComputeDispatch {
Direct(Dispatch),
Indirect {
buffer: BufferId,
offset: u64,
},
}Variants§
Trait Implementations§
Source§impl Clone for ComputeDispatch
impl Clone for ComputeDispatch
Source§fn clone(&self) -> ComputeDispatch
fn clone(&self) -> ComputeDispatch
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 ComputeDispatch
impl Debug for ComputeDispatch
Source§impl From<Dispatch> for ComputeDispatch
impl From<Dispatch> for ComputeDispatch
Source§impl PartialEq for ComputeDispatch
impl PartialEq for ComputeDispatch
Source§fn eq(&self, other: &ComputeDispatch) -> bool
fn eq(&self, other: &ComputeDispatch) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ComputeDispatch
impl Eq for ComputeDispatch
impl StructuralPartialEq for ComputeDispatch
Auto Trait Implementations§
impl Freeze for ComputeDispatch
impl RefUnwindSafe for ComputeDispatch
impl Send for ComputeDispatch
impl Sync for ComputeDispatch
impl Unpin for ComputeDispatch
impl UnsafeUnpin for ComputeDispatch
impl UnwindSafe for ComputeDispatch
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.