pub trait GraphOperator<T>: Send {
// Required method
fn process(&mut self, value: T) -> RuntimeResult<T>;
}Expand description
Stateful transformation executed at one graph node.
Required Methods§
Sourcefn process(&mut self, value: T) -> RuntimeResult<T>
fn process(&mut self, value: T) -> RuntimeResult<T>
Processes one owned value without an implicit device transfer.