pub struct FoldedRun {
pub view: CheckpointView,
pub status: RunStatus,
}Expand description
Result of a fold: the materializable view plus the run status the same event sequence implies (kept together so the write path and the rebuild self-check share one transition function).
Fields§
§view: CheckpointViewThe deterministic checkpoint view.
status: RunStatusThe run status after the last event.
Trait Implementations§
impl StructuralPartialEq for FoldedRun
Auto Trait Implementations§
impl Freeze for FoldedRun
impl RefUnwindSafe for FoldedRun
impl Send for FoldedRun
impl Sync for FoldedRun
impl Unpin for FoldedRun
impl UnsafeUnpin for FoldedRun
impl UnwindSafe for FoldedRun
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