pub struct TickResult {
pub receipts: Vec<Receipt>,
pub metrics: StepMetrics,
}Expand description
Result of a successful tick execution.
Fields§
§receipts: Vec<Receipt>Receipts for commands submitted before this tick.
metrics: StepMetricsPerformance metrics for this tick.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TickResult
impl RefUnwindSafe for TickResult
impl Send for TickResult
impl Sync for TickResult
impl Unpin for TickResult
impl UnsafeUnpin for TickResult
impl UnwindSafe for TickResult
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