pub enum OpType {
Read,
Write,
ReadBlock,
WriteBlock,
GpuSubmit,
TaskletSubmit,
}Expand description
Data-plane operation types.
Covers both memory (FBMU) and block (FBBU) data-plane operations, plus GPU and tasklet submission.
Variants§
Read
Memory read (FBMU READ).
Write
Memory write (FBMU WRITE).
ReadBlock
Block read (FBBU READ_BLOCK).
WriteBlock
Block write (FBBU WRITE_BLOCK).
GpuSubmit
GPU kernel submission.
TaskletSubmit
Tasklet (lightweight compute) submission.
Trait Implementations§
impl Copy for OpType
impl Eq for OpType
impl StructuralPartialEq for OpType
Auto Trait Implementations§
impl Freeze for OpType
impl RefUnwindSafe for OpType
impl Send for OpType
impl Sync for OpType
impl Unpin for OpType
impl UnwindSafe for OpType
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