pub enum Scope {
CrossDevice,
Device,
Workgroup,
Subgroup,
Invocation,
QueueFamily,
}
Expand description
Specification for how large of a scope some instructions should operate on - used when calling functions that take a configurable scope.
Variants§
CrossDevice
Crosses multiple devices.
Device
The current device.
Workgroup
The current workgroup.
Subgroup
The current subgroup.
Invocation
The current invocation.
QueueFamily
The current queue family.
Trait Implementations§
source§impl PartialEq<Scope> for Scope
impl PartialEq<Scope> for Scope
impl Eq for Scope
impl StructuralEq for Scope
impl StructuralPartialEq for Scope
Auto Trait Implementations§
impl RefUnwindSafe for Scope
impl Send for Scope
impl Sync for Scope
impl Unpin for Scope
impl UnwindSafe for Scope
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