Struct ReplayResult
pub struct ReplayResult {
pub state: PortfolioState,
pub state_hash: String,
pub events_processed: u64,
pub reducer_errors: u64,
pub run_id: Uuid,
}Expand description
Result of a successful replay.
Fields§
§state: PortfolioStateFinal portfolio state after replaying all events.
state_hash: StringDeterministic hash of the final state.
events_processed: u64Total number of events processed (including skipped checkpoint events).
reducer_errors: u64Number of reducer errors encountered (only in non-strict mode).
run_id: UuidThe run_id from the RunMeta event.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ReplayResult
impl RefUnwindSafe for ReplayResult
impl Send for ReplayResult
impl Sync for ReplayResult
impl Unpin for ReplayResult
impl UnsafeUnpin for ReplayResult
impl UnwindSafe for ReplayResult
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more