pub enum PreparedOp {
CompiledProgram(PreparedKernel),
BufferCopy(PreparedCopy),
BufferView(PreparedBufferView),
CustomFunction(PreparedCustomFunction),
}Expand description
Prepared execution item.
Variants§
CompiledProgram(PreparedKernel)
Compiled kernel/program operation.
BufferCopy(PreparedCopy)
Direct buffer copy operation.
BufferView(PreparedBufferView)
Zero-copy view aliasing operation.
CustomFunction(PreparedCustomFunction)
Runtime custom function operation.
Trait Implementations§
Source§impl Clone for PreparedOp
impl Clone for PreparedOp
Source§fn clone(&self) -> PreparedOp
fn clone(&self) -> PreparedOp
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 moreAuto Trait Implementations§
impl Freeze for PreparedOp
impl !RefUnwindSafe for PreparedOp
impl Send for PreparedOp
impl Sync for PreparedOp
impl Unpin for PreparedOp
impl UnsafeUnpin for PreparedOp
impl !UnwindSafe for PreparedOp
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<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more