pub struct SimStats {
pub total_messages_sent: u64,
pub messages_dropped: u64,
pub messages_delivered: u64,
pub state_changes: u64,
pub convergence_rounds: Vec<u64>,
}Expand description
Simulation statistics.
Fields§
§total_messages_sent: u64§messages_dropped: u64§messages_delivered: u64§state_changes: u64§convergence_rounds: Vec<u64>Trait Implementations§
Auto Trait Implementations§
impl Freeze for SimStats
impl RefUnwindSafe for SimStats
impl Send for SimStats
impl Sync for SimStats
impl Unpin for SimStats
impl UnsafeUnpin for SimStats
impl UnwindSafe for SimStats
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