pub struct ProcessResult {
pub output_arrays: Vec<Arc<NDArray>>,
pub param_updates: Vec<ParamUpdate>,
}Expand description
Result of processing one array: output arrays + param updates to write back.
Fields§
§output_arrays: Vec<Arc<NDArray>>§param_updates: Vec<ParamUpdate>Implementations§
Auto Trait Implementations§
impl Freeze for ProcessResult
impl RefUnwindSafe for ProcessResult
impl Send for ProcessResult
impl Sync for ProcessResult
impl Unpin for ProcessResult
impl UnsafeUnpin for ProcessResult
impl UnwindSafe for ProcessResult
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