pub struct BatchResult {
pub steps: Vec<StepOutcome>,
pub error: Option<EngineError>,
}Expand description
Result of dispatching one StepBatch to an engine.
Fields§
§steps: Vec<StepOutcome>One outcome per step the engine reached.
error: Option<EngineError>A batch-level failure, if the batch stopped early.
Trait Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for BatchResult
impl !UnwindSafe for BatchResult
impl Freeze for BatchResult
impl Send for BatchResult
impl Sync for BatchResult
impl Unpin for BatchResult
impl UnsafeUnpin for BatchResult
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