pub trait GraphOpRecord {
// Required method
fn record(&self, ctx: &GraphRecordCtx<'_>) -> Result<(), GpuError>;
}Expand description
Phase 3 record-mode trait. Lighter than RecordMode (no
associated Op type) — implementors are typically one op carrying
the typed request inline.